diff --git a/src/grt/src/fastroute/include/DataType.h b/src/grt/src/fastroute/include/DataType.h index 30ec37b685c..929301bca8e 100644 --- a/src/grt/src/fastroute/include/DataType.h +++ b/src/grt/src/fastroute/include/DataType.h @@ -143,10 +143,10 @@ struct Edge // An Edge is the routing track holder between two adjacent uint16_t usage; // the usage of the edge uint16_t red; int16_t last_usage; - float est_usage; // the estimated usage of the edge + double est_usage; // the estimated usage of the edge uint16_t usage_red() const { return usage + red; } - float est_usage_red() const { return est_usage + red; } + double est_usage_red() const { return est_usage + red; } }; struct Edge3D diff --git a/src/grt/src/fastroute/include/FastRoute.h b/src/grt/src/fastroute/include/FastRoute.h index ad48d6816a8..e82e58b329c 100644 --- a/src/grt/src/fastroute/include/FastRoute.h +++ b/src/grt/src/fastroute/include/FastRoute.h @@ -295,10 +295,10 @@ class FastRouteCore void convertToMazerouteNet(const int netID); void setupHeap(const int netID, const int edgeID, - std::vector& src_heap, - std::vector& dest_heap, - multi_array& d1, - multi_array& d2, + std::vector& src_heap, + std::vector& dest_heap, + multi_array& d1, + multi_array& d2, const int regionX1, const int regionX2, const int regionY1, @@ -436,8 +436,8 @@ class FastRouteCore void spiralRoute(int netID, int edgeID); void routeMonotonic(int netID, int edgeID, - multi_array& d1, - multi_array& d2, + multi_array& d1, + multi_array& d2, int threshold, int enlarge); @@ -577,17 +577,17 @@ class FastRouteCore std::vector h_capacity_3D_; std::vector last_col_v_capacity_3D_; std::vector last_row_h_capacity_3D_; - std::vector cost_hvh_; // Horizontal first Z - std::vector cost_vhv_; // Vertical first Z - std::vector cost_h_; // Horizontal segment cost - std::vector cost_v_; // Vertical segment cost - std::vector cost_lr_; // Left and right boundary cost - std::vector cost_tb_; // Top and bottom boundary cost - std::vector cost_hvh_test_; // Vertical first Z - std::vector cost_v_test_; // Vertical segment cost - std::vector cost_tb_test_; // Top and bottom boundary cost - std::vector h_cost_table_; - std::vector v_cost_table_; + std::vector cost_hvh_; // Horizontal first Z + std::vector cost_vhv_; // Vertical first Z + std::vector cost_h_; // Horizontal segment cost + std::vector cost_v_; // Vertical segment cost + std::vector cost_lr_; // Left and right boundary cost + std::vector cost_tb_; // Top and bottom boundary cost + std::vector cost_hvh_test_; // Vertical first Z + std::vector cost_v_test_; // Vertical segment cost + std::vector cost_tb_test_; // Top and bottom boundary cost + std::vector h_cost_table_; + std::vector v_cost_table_; std::vector xcor_; std::vector ycor_; std::vector dcor_; diff --git a/src/grt/src/fastroute/src/maze.cpp b/src/grt/src/fastroute/src/maze.cpp index 3c6271f3a1f..46f3463418c 100644 --- a/src/grt/src/fastroute/src/maze.cpp +++ b/src/grt/src/fastroute/src/maze.cpp @@ -520,13 +520,13 @@ void FastRouteCore::convertToMazeroute() } // non recursive version of heapify -static void heapify(std::vector& array) +static void heapify(std::vector& array) { bool stop = false; const int heapSize = array.size(); int i = 0; - float* tmp = array[i]; + double* tmp = array[i]; do { const int l = left_index(i); const int r = right_index(i); @@ -551,9 +551,9 @@ static void heapify(std::vector& array) } while (!stop); } -static void updateHeap(std::vector& array, int i) +static void updateHeap(std::vector& array, int i) { - float* tmpi = array[i]; + double* tmpi = array[i]; while (i > 0 && *(array[parent_index(i)]) > *tmpi) { const int parent = parent_index(i); array[i] = array[parent]; @@ -563,7 +563,7 @@ static void updateHeap(std::vector& array, int i) } // remove the entry with minimum distance from Priority queue -static void removeMin(std::vector& array) +static void removeMin(std::vector& array) { array[0] = array.back(); heapify(array); @@ -730,10 +730,10 @@ void FastRouteCore::updateCongestionHistory(const int upType, // dest_heap - the heap storing the addresses for d2 void FastRouteCore::setupHeap(const int netID, const int edgeID, - std::vector& src_heap, - std::vector& dest_heap, - multi_array& d1, - multi_array& d2, + std::vector& src_heap, + std::vector& dest_heap, + multi_array& d1, + multi_array& d2, const int regionX1, const int regionX2, const int regionY1, @@ -1346,13 +1346,13 @@ void FastRouteCore::mazeRouteMSMD(const int iter, StNetOrder(); } - std::vector src_heap; - std::vector dest_heap; + std::vector src_heap; + std::vector dest_heap; src_heap.reserve(y_grid_ * x_grid_); dest_heap.reserve(y_grid_ * x_grid_); - multi_array d1(boost::extents[y_range_][x_range_]); - multi_array d2(boost::extents[y_range_][x_range_]); + multi_array d1(boost::extents[y_range_][x_range_]); + multi_array d2(boost::extents[y_range_][x_range_]); std::vector pop_heap2(y_grid_ * x_range_, false); @@ -1527,7 +1527,7 @@ void FastRouteCore::mazeRouteMSMD(const int iter, parent_x3_[curY][tmpX] = curX; parent_y3_[curY][tmpX] = curY; hv_[curY][tmpX] = false; - float* dtmp = &d1[curY][tmpX]; + double* dtmp = &d1[curY][tmpX]; int ind = 0; while (src_heap[ind] != dtmp) ind++; @@ -1536,7 +1536,7 @@ void FastRouteCore::mazeRouteMSMD(const int iter, } // right if (curX < regionX2) { - float tmp, cost1, cost2; + double tmp, cost1, cost2; const int pos1 = h_edges_[curY][curX].usage_red() + L * h_edges_[curY][curX].last_usage; @@ -1588,7 +1588,7 @@ void FastRouteCore::mazeRouteMSMD(const int iter, parent_x3_[curY][tmpX] = curX; parent_y3_[curY][tmpX] = curY; hv_[curY][tmpX] = false; - float* dtmp = &d1[curY][tmpX]; + double* dtmp = &d1[curY][tmpX]; int ind = 0; while (src_heap[ind] != dtmp) ind++; @@ -1597,7 +1597,7 @@ void FastRouteCore::mazeRouteMSMD(const int iter, } // bottom if (curY > regionY1) { - float tmp, cost1, cost2; + double tmp, cost1, cost2; const int pos1 = v_edges_[curY - 1][curX].usage_red() + L * v_edges_[curY - 1][curX].last_usage; @@ -1648,7 +1648,7 @@ void FastRouteCore::mazeRouteMSMD(const int iter, parent_x1_[tmpY][curX] = curX; parent_y1_[tmpY][curX] = curY; hv_[tmpY][curX] = true; - float* dtmp = &d1[tmpY][curX]; + double* dtmp = &d1[tmpY][curX]; int ind = 0; while (src_heap[ind] != dtmp) ind++; @@ -1657,7 +1657,7 @@ void FastRouteCore::mazeRouteMSMD(const int iter, } // top if (curY < regionY2) { - float tmp, cost1, cost2; + double tmp, cost1, cost2; const int pos1 = v_edges_[curY][curX].usage_red() + L * v_edges_[curY][curX].last_usage; @@ -1709,7 +1709,7 @@ void FastRouteCore::mazeRouteMSMD(const int iter, parent_x1_[tmpY][curX] = curX; parent_y1_[tmpY][curX] = curY; hv_[tmpY][curX] = true; - float* dtmp = &d1[tmpY][curX]; + double* dtmp = &d1[tmpY][curX]; int ind = 0; while (src_heap[ind] != dtmp) ind++; diff --git a/src/grt/src/fastroute/src/route.cpp b/src/grt/src/fastroute/src/route.cpp index b1992c2ca14..ccc8d004d0d 100644 --- a/src/grt/src/fastroute/src/route.cpp +++ b/src/grt/src/fastroute/src/route.cpp @@ -114,22 +114,22 @@ void FastRouteCore::routeSegL(Segment* seg) else if (seg->y1 == seg->y2) // H route routeSegH(seg); else { // L route - float costL1 = 0; - float costL2 = 0; + double costL1 = 0; + double costL2 = 0; for (int i = ymin; i < ymax; i++) { - const float tmp1 = v_edges_[i][seg->x1].est_usage_red() - v_capacity_lb_; + const double tmp1 = v_edges_[i][seg->x1].est_usage_red() - v_capacity_lb_; if (tmp1 > 0) costL1 += tmp1; - const float tmp2 = v_edges_[i][seg->x2].est_usage_red() - v_capacity_lb_; + const double tmp2 = v_edges_[i][seg->x2].est_usage_red() - v_capacity_lb_; if (tmp2 > 0) costL2 += tmp2; } for (int i = seg->x1; i < seg->x2; i++) { - const float tmp1 = h_edges_[seg->y2][i].est_usage_red() - h_capacity_lb_; + const double tmp1 = h_edges_[seg->y2][i].est_usage_red() - h_capacity_lb_; if (tmp1 > 0) costL1 += tmp1; - const float tmp2 = h_edges_[seg->y1][i].est_usage_red() - h_capacity_lb_; + const double tmp2 = h_edges_[seg->y1][i].est_usage_red() - h_capacity_lb_; if (tmp2 > 0) costL2 += tmp2; } @@ -167,27 +167,27 @@ void FastRouteCore::routeSegLFirstTime(Segment* seg) const int ymin = std::min(seg->y1, seg->y2); const int ymax = std::max(seg->y1, seg->y2); - float costL1 = 0; - float costL2 = 0; + double costL1 = 0; + double costL2 = 0; for (int i = ymin; i < ymax; i++) { - const float tmp = v_edges_[i][seg->x1].est_usage_red() - v_capacity_lb_; + const double tmp = v_edges_[i][seg->x1].est_usage_red() - v_capacity_lb_; if (tmp > 0) costL1 += tmp; } for (int i = ymin; i < ymax; i++) { - const float tmp = v_edges_[i][seg->x2].est_usage_red() - v_capacity_lb_; + const double tmp = v_edges_[i][seg->x2].est_usage_red() - v_capacity_lb_; if (tmp > 0) costL2 += tmp; } for (int i = seg->x1; i < seg->x2; i++) { - const float tmp = h_edges_[seg->y2][i].est_usage_red() - h_capacity_lb_; + const double tmp = h_edges_[seg->y2][i].est_usage_red() - h_capacity_lb_; if (tmp > 0) costL1 += tmp; } for (int i = seg->x1; i < seg->x2; i++) { - const float tmp = h_edges_[seg->y1][i].est_usage_red() - h_capacity_lb_; + const double tmp = h_edges_[seg->y1][i].est_usage_red() - h_capacity_lb_; if (tmp > 0) costL2 += tmp; } @@ -313,8 +313,8 @@ void FastRouteCore::newrouteL(int netID, RouteType ripuptype, bool viaGuided) } } else // L-routing { - float costL1 = 0; - float costL2 = 0; + double costL1 = 0; + double costL2 = 0; if (viaGuided) { if (treenodes[n1].status == 0 || treenodes[n1].status == 3) { @@ -339,18 +339,18 @@ void FastRouteCore::newrouteL(int netID, RouteType ripuptype, bool viaGuided) } for (int j = ymin; j < ymax; j++) { - const float tmp1 = v_edges_[j][x1].est_usage_red() - v_capacity_lb_; + const double tmp1 = v_edges_[j][x1].est_usage_red() - v_capacity_lb_; if (tmp1 > 0) costL1 += tmp1; - const float tmp2 = v_edges_[j][x2].est_usage_red() - v_capacity_lb_; + const double tmp2 = v_edges_[j][x2].est_usage_red() - v_capacity_lb_; if (tmp2 > 0) costL2 += tmp2; } for (int j = x1; j < x2; j++) { - const float tmp1 = h_edges_[y2][j].est_usage_red() - h_capacity_lb_; + const double tmp1 = h_edges_[y2][j].est_usage_red() - h_capacity_lb_; if (tmp1 > 0) costL1 += tmp1; - const float tmp2 = h_edges_[y1][j].est_usage_red() - h_capacity_lb_; + const double tmp2 = h_edges_[y1][j].est_usage_red() - h_capacity_lb_; if (tmp2 > 0) costL2 += tmp2; } @@ -470,7 +470,7 @@ void FastRouteCore::newrouteZ_edge(int netID, int edgeID) // cost for V-segs for (int i = x1; i <= x2; i++) { for (int j = ymin; j < ymax; j++) { - const float tmp = v_edges_[j][i].est_usage_red() - v_capacity_lb_; + const double tmp = v_edges_[j][i].est_usage_red() - v_capacity_lb_; if (tmp > 0) { cost_v_[i - x1] += tmp; cost_v_test_[i - x1] += HCOST; @@ -481,7 +481,7 @@ void FastRouteCore::newrouteZ_edge(int netID, int edgeID) } // cost for Top&Bot boundary segs (form Z with V-seg) for (int j = x1; j < x2; j++) { - const float tmp = h_edges_[y2][j].est_usage_red() - h_capacity_lb_; + const double tmp = h_edges_[y2][j].est_usage_red() - h_capacity_lb_; if (tmp > 0) { cost_tb_[0] += tmp; cost_tb_test_[0] += HCOST; @@ -491,7 +491,7 @@ void FastRouteCore::newrouteZ_edge(int netID, int edgeID) } for (int i = 1; i <= segWidth; i++) { cost_tb_[i] = cost_tb_[i - 1]; - const float tmp1 + const double tmp1 = h_edges_[y1][x1 + i - 1].est_usage_red() - h_capacity_lb_; if (tmp1 > 0) { cost_tb_[i] += tmp1; @@ -499,7 +499,7 @@ void FastRouteCore::newrouteZ_edge(int netID, int edgeID) } else { cost_tb_test_[i] += tmp1; } - const float tmp2 + const double tmp2 = h_edges_[y2][x1 + i - 1].est_usage_red() - h_capacity_lb_; if (tmp2 > 0) { cost_tb_[i] -= tmp2; @@ -509,8 +509,8 @@ void FastRouteCore::newrouteZ_edge(int netID, int edgeID) } } // compute cost for all Z routing - float bestcost = BIG_INT; - float btTEST = BIG_INT; + double bestcost = BIG_INT; + double btTEST = BIG_INT; int bestZ = 0; for (int i = 0; i <= segWidth; i++) { cost_hvh_[i] = cost_v_[i] + cost_tb_[i]; @@ -650,7 +650,7 @@ void FastRouteCore::newrouteZ(int netID, int threshold) // cost for V-segs for (int i = x1; i < x2; i++) { for (int j = ymin; j < ymax; j++) { - const float tmp = v_edges_[j][i].est_usage_red() - v_capacity_lb_; + const double tmp = v_edges_[j][i].est_usage_red() - v_capacity_lb_; if (tmp > 0) { cost_v_[i - x1] += tmp; cost_v_test_[i - x1] += HCOST; @@ -661,7 +661,7 @@ void FastRouteCore::newrouteZ(int netID, int threshold) } // cost for Top&Bot boundary segs (form Z with V-seg) for (int j = x1; j < x2; j++) { - const float tmp = h_edges_[y2][j].est_usage_red() - h_capacity_lb_; + const double tmp = h_edges_[y2][j].est_usage_red() - h_capacity_lb_; if (tmp > 0) { cost_tb_[0] += tmp; cost_tb_test_[0] += HCOST; @@ -671,7 +671,7 @@ void FastRouteCore::newrouteZ(int netID, int threshold) } for (int i = 1; i < segWidth; i++) { cost_tb_[i] = cost_tb_[i - 1]; - const float tmp1 + const double tmp1 = h_edges_[y1][x1 + i - 1].est_usage_red() - h_capacity_lb_; if (tmp1 > 0) { cost_tb_[i] += tmp1; @@ -679,7 +679,7 @@ void FastRouteCore::newrouteZ(int netID, int threshold) } else { cost_tb_test_[0] += tmp1; } - const float tmp2 + const double tmp2 = h_edges_[y2][x1 + i - 1].est_usage_red() - h_capacity_lb_; if (tmp2 > 0) { cost_tb_[i] -= tmp2; @@ -691,7 +691,7 @@ void FastRouteCore::newrouteZ(int netID, int threshold) // cost for H-segs for (int i = ymin; i < ymax; i++) { for (int j = x1; j < x2; j++) { - const float tmp = h_edges_[i][j].est_usage_red() - h_capacity_lb_; + const double tmp = h_edges_[i][j].est_usage_red() - h_capacity_lb_; if (tmp > 0) cost_h_[i - ymin] += tmp; } @@ -699,34 +699,34 @@ void FastRouteCore::newrouteZ(int netID, int threshold) // cost for Left&Right boundary segs (form Z with H-seg) if (y1Smaller) { for (int j = y1; j < y2; j++) { - const float tmp = v_edges_[j][x2].est_usage_red() - v_capacity_lb_; + const double tmp = v_edges_[j][x2].est_usage_red() - v_capacity_lb_; if (tmp > 0) cost_lr_[0] += tmp; } for (int i = 1; i < segHeight; i++) { cost_lr_[i] = cost_lr_[i - 1]; - const float tmp1 + const double tmp1 = v_edges_[y1 + i - 1][x1].est_usage_red() - v_capacity_lb_; if (tmp1 > 0) cost_lr_[i] += tmp1; - const float tmp2 + const double tmp2 = v_edges_[y1 + i - 1][x2].est_usage_red() - v_capacity_lb_; if (tmp2 > 0) cost_lr_[i] -= tmp2; } } else { for (int j = y2; j < y1; j++) { - const float tmp = v_edges_[j][x1].est_usage - v_capacity_lb_; + const double tmp = v_edges_[j][x1].est_usage - v_capacity_lb_; if (tmp > 0) cost_lr_[0] += tmp; } for (int i = 1; i < segHeight; i++) { cost_lr_[i] = cost_lr_[i - 1]; - const float tmp1 + const double tmp1 = v_edges_[y2 + i - 1][x2].est_usage_red() - v_capacity_lb_; if (tmp1 > 0) cost_lr_[i] += tmp1; - const float tmp2 + const double tmp2 = v_edges_[y2 + i - 1][x1].est_usage_red() - v_capacity_lb_; if (tmp2 > 0) cost_lr_[i] -= tmp2; @@ -735,8 +735,8 @@ void FastRouteCore::newrouteZ(int netID, int threshold) // compute cost for all Z routing bool HVH = true; // the shape of Z routing (true - HVH, false - VHV) - float bestcost = BIG_INT; - float btTEST = BIG_INT; + double bestcost = BIG_INT; + double btTEST = BIG_INT; int bestZ = 0; for (int i = 0; i < segWidth; i++) { cost_hvh_[i] += cost_v_[i] + cost_tb_[i]; @@ -922,8 +922,8 @@ void FastRouteCore::spiralRoute(int netID, int edgeID) treenodes[n1a].status += 2; } } else { // L-routing - float costL1 = 0; - float costL2 = 0; + double costL1 = 0; + double costL2 = 0; if (treenodes[n1].status == 0 || treenodes[n1].status == 3) { costL1 = costL2 = 0; } else if (treenodes[n1].status == 2) { @@ -942,18 +942,18 @@ void FastRouteCore::spiralRoute(int netID, int edgeID) } for (int j = ymin; j < ymax; j++) { - const float tmp1 = v_edges_[j][x1].est_usage_red() - v_capacity_lb_; + const double tmp1 = v_edges_[j][x1].est_usage_red() - v_capacity_lb_; if (tmp1 > 0) costL1 += tmp1; - const float tmp2 = v_edges_[j][x2].est_usage_red() - v_capacity_lb_; + const double tmp2 = v_edges_[j][x2].est_usage_red() - v_capacity_lb_; if (tmp2 > 0) costL2 += tmp2; } for (int j = x1; j < x2; j++) { - const float tmp1 = h_edges_[y2][j].est_usage_red() - h_capacity_lb_; + const double tmp1 = h_edges_[y2][j].est_usage_red() - h_capacity_lb_; if (tmp1 > 0) costL1 += tmp1; - const float tmp2 = h_edges_[y1][j].est_usage_red() - h_capacity_lb_; + const double tmp2 = h_edges_[y1][j].est_usage_red() - h_capacity_lb_; if (tmp2 > 0) costL2 += tmp2; } @@ -1157,8 +1157,8 @@ void FastRouteCore::spiralRouteAll() void FastRouteCore::routeMonotonic(int netID, int edgeID, - multi_array& d1, - multi_array& d2, + multi_array& d1, + multi_array& d2, int threshold, int enlarge) { @@ -1228,7 +1228,7 @@ void FastRouteCore::routeMonotonic(int netID, for (int i = xmin; i < xmax; i++) { size_t index = h_edges_[j][i].usage_red(); index = std::min(index, h_cost_table_.size() - 1); - const float tmp = h_cost_table_[index]; + const double tmp = h_cost_table_[index]; d1[j][i + 1] = d1[j][i] + tmp; } // update the cost of a column of grids by v-edges @@ -1239,13 +1239,13 @@ void FastRouteCore::routeMonotonic(int netID, for (int i = xmin; i <= xmax; i++) { size_t index = v_edges_[j][i].usage_red(); index = std::min(index, h_cost_table_.size() - 1); - const float tmp = h_cost_table_[index]; + const double tmp = h_cost_table_[index]; d2[j + 1][i] = d2[j][i] + tmp; } // update the cost of a column of grids by v-edges } - float best = BIG_INT; + double best = BIG_INT; int bestp1x = 0; int bestp1y = 0; bool BL1 = false; @@ -1253,18 +1253,18 @@ void FastRouteCore::routeMonotonic(int netID, for (int j = ymin; j <= ymax; j++) { for (int i = xmin; i <= xmax; i++) { - const float tmp1 + const double tmp1 = std::abs(d2[j][x1] - d2[y1][x1]) + std::abs(d1[j][i] - d1[j][x1]); // yfirst for point 1 - const float tmp2 + const double tmp2 = std::abs(d2[j][i] - d2[y1][i]) + std::abs(d1[y1][i] - d1[y1][x1]); - const float tmp3 + const double tmp3 = std::abs(d2[y2][i] - d2[j][i]) + std::abs(d1[y2][i] - d1[y2][x2]); - const float tmp4 + const double tmp4 = std::abs(d2[y2][x2] - d2[j][x2]) + std::abs(d1[j][x2] - d1[j][i]); // xifrst for mid point - float tmp = tmp1 + tmp4; + double tmp = tmp1 + tmp4; bool LH1 = false; bool LH2 = true; @@ -1474,11 +1474,11 @@ void FastRouteCore::routeMonotonicAll(int threshold, const int forange = 10 * h_capacity_; for (int i = 0; i < forange; i++) { h_cost_table_[i] - = costheight_ / (exp((float) (h_capacity_ - i) * logis_cof) + 1) + 1; + = costheight_ / (exp((double) (h_capacity_ - i) * logis_cof) + 1) + 1; } - multi_array d1(boost::extents[y_range_][x_range_]); - multi_array d2(boost::extents[y_range_][x_range_]); + multi_array d1(boost::extents[y_range_][x_range_]); + multi_array d2(boost::extents[y_range_][x_range_]); for (const int& netID : net_ids_) { const int numEdges = sttrees_[netID].num_edges(); diff --git a/src/grt/test/congestion1.guideok b/src/grt/test/congestion1.guideok index bf4c0d0757c..097d3e355c9 100644 --- a/src/grt/test/congestion1.guideok +++ b/src/grt/test/congestion1.guideok @@ -1,10 +1,10 @@ _000_ ( 54600 105000 58800 109200 metal1 -54600 105000 58800 113400 metal2 -54600 109200 58800 113400 metal2 -54600 109200 63000 113400 metal3 -58800 109200 63000 113400 metal2 +54600 105000 58800 109200 metal2 +54600 105000 63000 109200 metal3 +58800 105000 63000 109200 metal2 +58800 105000 63000 113400 metal2 58800 109200 63000 113400 metal1 ) _001_ @@ -47,19 +47,19 @@ _006_ _007_ ( 88200 121800 92400 126000 metal1 -88200 121800 92400 126000 metal2 -88200 121800 96600 126000 metal3 -92400 121800 96600 126000 metal2 -92400 121800 96600 130200 metal2 +88200 121800 92400 130200 metal2 +88200 126000 92400 130200 metal2 +88200 126000 96600 130200 metal3 +92400 126000 96600 130200 metal2 92400 126000 96600 130200 metal1 ) _008_ ( 105000 138600 109200 142800 metal1 -105000 138600 109200 147000 metal2 -105000 142800 109200 147000 metal2 -105000 142800 113400 147000 metal3 -109200 142800 113400 147000 metal2 +105000 138600 109200 142800 metal2 +105000 138600 113400 142800 metal3 +109200 138600 113400 142800 metal2 +109200 138600 113400 147000 metal2 109200 142800 113400 147000 metal1 ) _009_ @@ -73,14 +73,10 @@ _009_ _010_ ( 147000 79800 151200 84000 metal1 -147000 79800 151200 84000 metal2 -147000 79800 155400 84000 metal3 -151200 79800 155400 84000 metal2 -151200 79800 155400 92400 metal2 -151200 88200 155400 92400 metal2 -151200 88200 159600 92400 metal3 -155400 88200 159600 92400 metal2 -155400 84000 159600 92400 metal2 +147000 79800 151200 88200 metal2 +147000 84000 151200 88200 metal2 +147000 84000 159600 88200 metal3 +155400 84000 159600 88200 metal2 155400 84000 159600 88200 metal1 ) _011_ @@ -101,10 +97,10 @@ _012_ _013_ ( 130200 117600 134400 121800 metal1 -130200 117600 134400 121800 metal2 -130200 117600 142800 121800 metal3 -138600 117600 142800 121800 metal2 -138600 113400 142800 121800 metal2 +130200 113400 134400 121800 metal2 +130200 113400 134400 117600 metal2 +130200 113400 142800 117600 metal3 +138600 113400 142800 117600 metal2 138600 113400 142800 117600 metal1 ) _014_ @@ -155,11 +151,9 @@ _019_ ) _020_ ( -67200 46200 71400 50400 metal1 -67200 46200 71400 54600 metal2 -67200 50400 71400 54600 metal2 -67200 50400 75600 54600 metal3 -71400 50400 75600 54600 metal2 +67200 46200 75600 50400 metal1 +71400 46200 75600 50400 metal1 +71400 46200 75600 54600 metal2 71400 50400 75600 54600 metal1 ) _021_ @@ -190,7 +184,13 @@ _024_ _025_ ( 113400 42000 117600 46200 metal1 -113400 42000 117600 50400 metal2 +113400 42000 117600 46200 metal2 +113400 42000 121800 46200 metal3 +117600 42000 121800 46200 metal2 +117600 42000 121800 50400 metal2 +117600 46200 121800 50400 metal2 +113400 46200 121800 50400 metal3 +113400 46200 117600 50400 metal2 113400 46200 117600 50400 metal1 ) _026_ @@ -217,10 +217,10 @@ _028_ _029_ ( 84000 130200 88200 134400 metal1 -84000 130200 88200 134400 metal2 -84000 130200 92400 134400 metal3 -88200 130200 92400 134400 metal2 -88200 130200 92400 138600 metal2 +84000 130200 88200 138600 metal2 +84000 134400 88200 138600 metal2 +84000 134400 92400 138600 metal3 +88200 134400 92400 138600 metal2 88200 134400 92400 138600 metal1 ) _030_ @@ -267,19 +267,19 @@ _035_ _036_ ( 50400 92400 54600 96600 metal1 -50400 92400 54600 96600 metal2 -50400 92400 58800 96600 metal3 -54600 92400 58800 96600 metal2 -54600 92400 58800 100800 metal2 +50400 92400 54600 100800 metal2 +50400 96600 54600 100800 metal2 +50400 96600 58800 100800 metal3 +54600 96600 58800 100800 metal2 54600 96600 58800 100800 metal1 ) _037_ ( 54600 71400 58800 75600 metal1 -54600 71400 58800 75600 metal2 -54600 71400 63000 75600 metal3 -58800 71400 63000 75600 metal2 -58800 67200 63000 75600 metal2 +54600 67200 58800 75600 metal2 +54600 67200 58800 71400 metal2 +54600 67200 63000 71400 metal3 +58800 67200 63000 71400 metal2 58800 67200 63000 71400 metal1 ) _038_ @@ -291,10 +291,10 @@ _038_ _039_ ( 71400 58800 75600 63000 metal1 -71400 58800 75600 63000 metal2 -71400 58800 79800 63000 metal3 -75600 58800 79800 63000 metal2 -75600 58800 79800 67200 metal2 +71400 58800 75600 67200 metal2 +71400 63000 75600 67200 metal2 +71400 63000 79800 67200 metal3 +75600 63000 79800 67200 metal2 75600 63000 79800 67200 metal1 ) _040_ @@ -311,11 +311,10 @@ _041_ _042_ ( 100800 29400 105000 33600 metal1 -100800 25200 105000 33600 metal2 -100800 25200 105000 29400 metal2 -100800 25200 113400 29400 metal3 -109200 25200 113400 29400 metal2 -109200 25200 113400 37800 metal2 +100800 29400 105000 33600 metal2 +100800 29400 113400 33600 metal3 +109200 29400 113400 33600 metal2 +109200 29400 113400 37800 metal2 109200 33600 113400 37800 metal1 ) _043_ @@ -344,19 +343,18 @@ _045_ ) _046_ ( -105000 142800 113400 147000 metal1 -109200 142800 113400 147000 metal1 +105000 142800 109200 147000 metal1 +105000 142800 109200 147000 metal2 +105000 142800 113400 147000 metal3 +109200 142800 113400 147000 metal2 109200 142800 113400 151200 metal2 109200 147000 113400 151200 metal1 ) _047_ ( -117600 134400 121800 138600 metal1 -117600 134400 121800 142800 metal2 -117600 138600 121800 142800 metal1 -117600 138600 126000 142800 metal1 -121800 138600 126000 142800 metal1 -121800 138600 126000 147000 metal2 +117600 134400 126000 138600 metal1 +121800 134400 126000 138600 metal1 +121800 134400 126000 147000 metal2 121800 142800 126000 147000 metal1 ) _048_ @@ -396,10 +394,10 @@ _052_ _053_ ( 50400 84000 54600 88200 metal1 -50400 79800 54600 88200 metal2 -50400 79800 54600 84000 metal2 -50400 79800 58800 84000 metal3 -54600 79800 58800 84000 metal2 +50400 84000 54600 88200 metal2 +50400 84000 58800 88200 metal3 +54600 84000 58800 88200 metal2 +54600 79800 58800 88200 metal2 54600 79800 58800 84000 metal1 ) _054_ @@ -442,23 +440,27 @@ _058_ ) _059_ ( -67200 100800 71400 113400 metal2 +67200 100800 71400 109200 metal2 +67200 100800 71400 105000 metal1 +67200 105000 71400 113400 metal2 67200 109200 71400 117600 metal2 67200 113400 71400 117600 metal1 67200 109200 71400 113400 metal1 67200 109200 71400 113400 metal2 -67200 109200 88200 113400 metal3 -84000 109200 88200 113400 metal2 -84000 100800 88200 113400 metal2 +67200 109200 79800 113400 metal3 +75600 109200 79800 113400 metal2 +75600 105000 79800 113400 metal2 +75600 105000 79800 109200 metal2 +75600 105000 88200 109200 metal3 +84000 105000 88200 109200 metal2 +84000 100800 88200 109200 metal2 84000 100800 88200 105000 metal1 84000 96600 88200 105000 metal2 84000 96600 88200 100800 metal1 63000 105000 67200 109200 metal1 -63000 100800 67200 109200 metal2 -63000 100800 67200 105000 metal2 -63000 100800 71400 105000 metal3 -67200 100800 71400 105000 metal2 -67200 100800 71400 105000 metal1 +63000 105000 67200 109200 metal2 +63000 105000 71400 109200 metal3 +67200 105000 71400 109200 metal2 ) _060_ ( @@ -477,10 +479,10 @@ _061_ _062_ ( 100800 134400 105000 138600 metal1 -100800 134400 105000 142800 metal2 -100800 138600 105000 142800 metal2 -100800 138600 109200 142800 metal3 -105000 138600 109200 142800 metal2 +100800 134400 105000 138600 metal2 +100800 134400 109200 138600 metal3 +105000 134400 109200 138600 metal2 +105000 134400 109200 142800 metal2 105000 138600 109200 142800 metal1 ) _063_ @@ -502,10 +504,10 @@ _064_ _065_ ( 147000 113400 151200 117600 metal1 -147000 109200 151200 117600 metal2 -147000 109200 151200 113400 metal2 -147000 109200 159600 113400 metal3 -155400 109200 159600 113400 metal2 +147000 113400 151200 117600 metal2 +147000 113400 159600 117600 metal3 +155400 113400 159600 117600 metal2 +155400 109200 159600 117600 metal2 155400 109200 159600 113400 metal1 ) _066_ @@ -545,10 +547,10 @@ _069_ _070_ ( 63000 58800 67200 63000 metal1 -63000 58800 67200 67200 metal2 -63000 63000 67200 67200 metal2 -63000 63000 71400 67200 metal3 -67200 63000 71400 67200 metal2 +63000 58800 67200 63000 metal2 +63000 58800 71400 63000 metal3 +67200 58800 71400 63000 metal2 +67200 58800 71400 67200 metal2 67200 63000 71400 67200 metal1 ) _071_ @@ -560,27 +562,22 @@ _071_ _072_ ( 105000 42000 109200 46200 metal1 -105000 42000 109200 50400 metal2 -105000 46200 109200 50400 metal2 -105000 46200 113400 50400 metal3 -109200 46200 113400 50400 metal2 -109200 46200 113400 54600 metal2 -109200 50400 113400 54600 metal2 -109200 50400 117600 54600 metal3 -113400 50400 117600 54600 metal2 +105000 42000 109200 46200 metal2 +105000 42000 117600 46200 metal3 +113400 42000 117600 46200 metal2 +113400 42000 117600 54600 metal2 113400 50400 117600 54600 metal1 ) _073_ ( -88200 37800 92400 42000 metal1 -88200 37800 92400 46200 metal2 -88200 42000 92400 46200 metal2 -88200 42000 96600 46200 metal3 -92400 42000 96600 46200 metal2 +88200 37800 96600 42000 metal1 +92400 37800 96600 46200 metal2 92400 42000 96600 46200 metal1 -92400 42000 100800 46200 metal1 -96600 42000 100800 46200 metal1 -96600 33600 100800 46200 metal2 +92400 37800 96600 42000 metal1 +92400 37800 96600 42000 metal2 +92400 37800 100800 42000 metal3 +96600 37800 100800 42000 metal2 +96600 33600 100800 42000 metal2 96600 33600 100800 37800 metal2 96600 33600 105000 37800 metal3 100800 33600 105000 37800 metal2 @@ -609,10 +606,10 @@ _076_ _077_ ( 58800 63000 63000 67200 metal1 -58800 63000 63000 67200 metal2 -58800 63000 67200 67200 metal3 -63000 63000 67200 67200 metal2 -63000 58800 67200 67200 metal2 +58800 58800 63000 67200 metal2 +58800 58800 63000 63000 metal2 +58800 58800 67200 63000 metal3 +63000 58800 67200 63000 metal2 63000 58800 67200 63000 metal1 ) _078_ @@ -638,27 +635,30 @@ _080_ _081_ ( 67200 37800 71400 42000 metal1 -67200 37800 71400 46200 metal2 -67200 42000 71400 46200 metal1 -67200 42000 75600 46200 metal1 +67200 37800 71400 42000 metal2 +67200 37800 75600 42000 metal3 +71400 37800 75600 42000 metal2 +71400 37800 75600 46200 metal2 +71400 42000 75600 46200 metal1 ) _082_ ( 100800 84000 105000 88200 metal1 -100800 84000 105000 92400 metal2 -100800 88200 105000 92400 metal2 -100800 88200 109200 92400 metal3 -105000 88200 109200 92400 metal2 -105000 84000 109200 92400 metal2 +100800 84000 105000 88200 metal2 +100800 84000 109200 88200 metal3 +105000 84000 109200 88200 metal2 105000 84000 109200 88200 metal1 ) _083_ ( 88200 134400 92400 138600 metal1 88200 134400 92400 138600 metal2 -88200 134400 100800 138600 metal3 -96600 134400 100800 138600 metal2 -96600 130200 100800 138600 metal2 +88200 134400 96600 138600 metal3 +92400 134400 96600 138600 metal2 +92400 130200 96600 138600 metal2 +92400 130200 96600 134400 metal2 +92400 130200 100800 134400 metal3 +96600 130200 100800 134400 metal2 96600 130200 100800 134400 metal1 ) _084_ @@ -700,10 +700,10 @@ _089_ _090_ ( 54600 96600 58800 100800 metal1 -54600 92400 58800 100800 metal2 -54600 92400 58800 96600 metal2 -54600 92400 67200 96600 metal3 -63000 92400 67200 96600 metal2 +54600 96600 58800 100800 metal2 +54600 96600 67200 100800 metal3 +63000 96600 67200 100800 metal2 +63000 92400 67200 100800 metal2 63000 92400 67200 96600 metal1 ) _091_ @@ -760,10 +760,10 @@ _097_ _098_ ( 100800 75600 105000 79800 metal1 -100800 75600 105000 79800 metal2 -100800 75600 109200 79800 metal3 -105000 75600 109200 79800 metal2 -105000 75600 109200 84000 metal2 +100800 75600 105000 84000 metal2 +100800 79800 105000 84000 metal2 +100800 79800 109200 84000 metal3 +105000 79800 109200 84000 metal2 105000 79800 109200 84000 metal1 ) _099_ @@ -792,9 +792,12 @@ _101_ _102_ ( 151200 84000 155400 88200 metal1 -151200 84000 155400 96600 metal2 -151200 92400 155400 96600 metal1 -151200 92400 159600 96600 metal1 +151200 84000 155400 92400 metal2 +151200 88200 155400 92400 metal2 +151200 88200 159600 92400 metal3 +155400 88200 159600 92400 metal2 +155400 88200 159600 96600 metal2 +155400 92400 159600 96600 metal1 ) _103_ ( @@ -823,10 +826,8 @@ _107_ ( 50400 79800 54600 84000 metal1 50400 79800 54600 88200 metal2 -50400 84000 54600 88200 metal2 -50400 84000 63000 88200 metal3 -58800 84000 63000 88200 metal2 -58800 84000 63000 88200 metal1 +50400 84000 54600 88200 metal1 +50400 84000 63000 88200 metal1 ) _108_ ( @@ -836,153 +837,153 @@ _108_ ) _109_ ( +79800 105000 84000 109200 metal1 79800 105000 84000 113400 metal2 79800 109200 84000 113400 metal1 -84000 100800 88200 109200 metal2 -84000 105000 88200 109200 metal2 -79800 105000 88200 109200 metal3 -79800 105000 84000 109200 metal2 -79800 105000 84000 109200 metal1 79800 100800 84000 105000 metal1 79800 100800 84000 105000 metal2 79800 100800 88200 105000 metal3 84000 100800 88200 105000 metal2 84000 100800 88200 105000 metal1 +79800 100800 84000 109200 metal2 ) _110_ ( -105000 134400 109200 138600 metal1 -105000 134400 109200 155400 metal2 -105000 151200 109200 155400 metal2 -105000 151200 155400 155400 metal3 -151200 151200 155400 155400 metal2 -151200 138600 155400 155400 metal2 -105000 126000 109200 138600 metal2 105000 126000 109200 130200 metal1 -151200 134400 155400 142800 metal2 +105000 126000 109200 134400 metal2 +105000 130200 109200 134400 metal2 +105000 130200 113400 134400 metal3 +109200 130200 113400 134400 metal2 +109200 130200 113400 138600 metal2 +147000 134400 155400 138600 metal1 +109200 134400 113400 180600 metal2 +109200 176400 113400 180600 metal2 +109200 176400 155400 180600 metal3 +151200 176400 155400 180600 metal2 +151200 134400 155400 180600 metal2 151200 134400 155400 138600 metal1 -147000 134400 151200 138600 metal1 -147000 134400 151200 142800 metal2 -147000 138600 151200 142800 metal2 -147000 138600 155400 142800 metal3 -151200 138600 155400 142800 metal2 -142800 130200 151200 134400 metal1 -147000 130200 151200 134400 metal1 +142800 130200 147000 134400 metal1 +142800 130200 147000 134400 metal2 +142800 130200 151200 134400 metal3 +147000 130200 151200 134400 metal2 147000 130200 151200 138600 metal2 +147000 134400 151200 138600 metal1 +105000 134400 109200 138600 metal1 +105000 134400 109200 138600 metal2 +105000 134400 113400 138600 metal3 +109200 134400 113400 138600 metal2 ) _111_ ( -67200 63000 71400 67200 metal1 -67200 63000 71400 67200 metal2 -67200 63000 79800 67200 metal3 -75600 63000 79800 67200 metal2 +67200 63000 79800 67200 metal1 75600 63000 79800 67200 metal1 -63000 63000 71400 67200 metal1 -75600 63000 84000 67200 metal1 -75600 63000 79800 71400 metal1 -79800 63000 84000 67200 metal1 -79800 63000 84000 71400 metal2 +75600 63000 79800 71400 metal2 +75600 67200 79800 71400 metal1 +75600 67200 84000 71400 metal1 +63000 63000 67200 67200 metal1 +63000 63000 67200 67200 metal2 +63000 63000 71400 67200 metal3 +67200 63000 71400 67200 metal2 +67200 63000 71400 67200 metal1 79800 67200 84000 71400 metal1 +79800 63000 84000 71400 metal2 +79800 63000 84000 67200 metal1 ) _112_ ( 100800 67200 105000 71400 metal1 -100800 63000 105000 71400 metal2 -100800 63000 105000 67200 metal2 -100800 63000 109200 67200 metal3 -105000 63000 109200 67200 metal2 -105000 63000 109200 67200 metal1 -105000 63000 117600 67200 metal3 -113400 63000 117600 67200 metal2 -113400 63000 117600 71400 metal2 -113400 67200 117600 71400 metal2 -113400 67200 121800 71400 metal3 +100800 67200 105000 71400 metal2 +100800 67200 109200 71400 metal3 +105000 67200 109200 71400 metal2 +105000 67200 121800 71400 metal3 117600 67200 121800 71400 metal2 117600 67200 121800 71400 metal1 -117600 63000 121800 71400 metal2 -117600 63000 121800 67200 metal2 -117600 63000 126000 67200 metal3 -121800 63000 126000 67200 metal2 +117600 67200 126000 71400 metal3 +121800 67200 126000 71400 metal2 +121800 63000 126000 71400 metal2 121800 63000 126000 67200 metal1 +105000 63000 109200 71400 metal2 +105000 63000 109200 67200 metal1 ) _113_ ( -109200 50400 113400 54600 metal1 -109200 46200 113400 54600 metal2 +105000 54600 109200 58800 metal1 +105000 54600 109200 58800 metal2 +105000 54600 117600 58800 metal3 +113400 54600 117600 58800 metal2 +113400 54600 117600 67200 metal2 +113400 63000 117600 67200 metal1 +113400 50400 117600 54600 metal2 +105000 50400 117600 54600 metal3 +105000 50400 109200 54600 metal2 +105000 50400 109200 54600 metal1 +113400 46200 117600 50400 metal2 +109200 46200 117600 50400 metal3 +109200 46200 113400 50400 metal2 109200 46200 113400 50400 metal1 -109200 50400 121800 54600 metal1 -117600 50400 121800 54600 metal1 -117600 46200 121800 54600 metal2 +113400 50400 117600 58800 metal2 +113400 46200 121800 50400 metal3 +117600 46200 121800 50400 metal2 117600 46200 121800 50400 metal1 -105000 54600 109200 58800 metal1 -105000 54600 109200 63000 metal2 -105000 58800 109200 63000 metal1 -105000 58800 113400 63000 metal1 -109200 58800 113400 63000 metal1 -109200 58800 113400 67200 metal2 -109200 63000 113400 67200 metal1 -109200 63000 117600 67200 metal1 -105000 50400 113400 54600 metal1 -105000 54600 113400 58800 metal1 -109200 54600 113400 58800 metal1 -109200 50400 113400 58800 metal2 +113400 46200 117600 54600 metal2 ) _114_ ( -100800 33600 105000 37800 metal2 -100800 33600 113400 37800 metal3 -109200 33600 113400 37800 metal2 -109200 33600 113400 37800 metal1 -109200 33600 113400 50400 metal2 -109200 46200 113400 50400 metal2 -100800 46200 113400 50400 metal3 -100800 46200 105000 50400 metal2 -100800 46200 105000 54600 metal2 -100800 50400 105000 54600 metal1 -92400 42000 96600 46200 metal1 92400 33600 96600 46200 metal2 -100800 33600 105000 42000 metal2 -100800 37800 105000 42000 metal1 -92400 29400 96600 37800 metal2 -92400 29400 96600 33600 metal2 -92400 29400 105000 33600 metal3 -100800 29400 105000 33600 metal2 -100800 29400 105000 37800 metal2 +92400 42000 96600 46200 metal1 +92400 42000 96600 50400 metal2 +92400 46200 96600 50400 metal1 +92400 46200 100800 50400 metal1 +96600 46200 100800 50400 metal1 +96600 46200 100800 54600 metal2 +96600 50400 100800 54600 metal1 +96600 50400 105000 54600 metal1 88200 33600 92400 37800 metal1 88200 33600 92400 37800 metal2 88200 33600 96600 37800 metal3 92400 33600 96600 37800 metal2 92400 33600 96600 37800 metal1 -) -_115_ -( -71400 37800 75600 42000 metal1 -71400 37800 75600 42000 metal2 -71400 37800 84000 42000 metal3 -79800 37800 84000 42000 metal2 -79800 37800 84000 42000 metal1 +100800 37800 105000 42000 metal1 +100800 33600 105000 42000 metal2 +100800 33600 105000 37800 metal2 +100800 33600 113400 37800 metal3 +109200 33600 113400 37800 metal2 +109200 33600 113400 37800 metal1 +100800 29400 105000 37800 metal2 +100800 29400 105000 33600 metal2 +92400 29400 105000 33600 metal3 +92400 29400 96600 33600 metal2 +92400 29400 96600 37800 metal2 +) +_115_ +( +79800 50400 84000 54600 metal1 79800 50400 84000 58800 metal2 79800 54600 84000 58800 metal1 +79800 37800 84000 54600 metal2 +71400 37800 75600 42000 metal1 +71400 37800 75600 42000 metal2 +71400 37800 84000 42000 metal3 +79800 37800 84000 42000 metal2 +79800 37800 84000 42000 metal1 67200 42000 71400 46200 metal1 67200 37800 71400 46200 metal2 67200 37800 71400 42000 metal1 67200 37800 75600 42000 metal1 -71400 37800 75600 54600 metal2 -71400 50400 75600 54600 metal2 -71400 50400 84000 54600 metal3 -79800 50400 84000 54600 metal2 -79800 50400 84000 54600 metal1 ) _116_ ( -100800 84000 105000 92400 metal2 -100800 88200 105000 92400 metal2 -100800 88200 113400 92400 metal3 -109200 88200 113400 92400 metal2 -109200 84000 113400 92400 metal2 -109200 84000 113400 88200 metal1 -92400 67200 96600 88200 metal2 +100800 84000 113400 88200 metal1 92400 67200 96600 71400 metal1 +92400 67200 96600 79800 metal2 +92400 75600 96600 79800 metal1 +92400 75600 100800 79800 metal1 +96600 75600 100800 79800 metal1 +96600 75600 100800 84000 metal2 +96600 79800 100800 84000 metal1 +92400 79800 100800 84000 metal1 +92400 79800 96600 84000 metal1 +92400 79800 96600 88200 metal2 92400 84000 96600 88200 metal1 92400 84000 96600 88200 metal2 92400 84000 105000 88200 metal3 @@ -991,296 +992,293 @@ _116_ ) _117_ ( -92400 113400 105000 117600 metal1 -92400 126000 96600 134400 metal2 -92400 130200 96600 134400 metal1 84000 113400 88200 117600 metal1 -84000 113400 88200 117600 metal2 -84000 113400 96600 117600 metal3 -92400 113400 96600 117600 metal2 -92400 113400 96600 117600 metal1 -92400 117600 96600 121800 metal1 -92400 113400 96600 121800 metal2 -92400 117600 96600 130200 metal2 +84000 109200 88200 117600 metal2 +84000 109200 88200 113400 metal2 +84000 109200 100800 113400 metal3 +96600 109200 100800 113400 metal2 +96600 109200 100800 117600 metal2 +96600 113400 100800 117600 metal1 +92400 130200 96600 134400 metal1 +92400 130200 96600 134400 metal2 +88200 130200 96600 134400 metal3 +88200 130200 92400 134400 metal2 +88200 126000 92400 134400 metal2 88200 126000 92400 130200 metal1 -88200 126000 92400 130200 metal2 -88200 126000 96600 130200 metal3 -92400 126000 96600 130200 metal2 +96600 113400 105000 117600 metal1 +88200 121800 92400 130200 metal2 +88200 121800 92400 126000 metal1 +88200 121800 96600 126000 metal1 +92400 121800 96600 126000 metal1 +92400 117600 96600 126000 metal2 +92400 117600 96600 121800 metal1 +92400 117600 100800 121800 metal1 +96600 117600 100800 121800 metal1 +96600 113400 100800 121800 metal2 ) _118_ ( +100800 138600 105000 151200 metal2 +100800 147000 105000 151200 metal2 +100800 147000 109200 151200 metal3 +105000 147000 109200 151200 metal2 +105000 147000 109200 151200 metal1 113400 121800 117600 126000 metal1 113400 121800 117600 126000 metal2 109200 121800 117600 126000 metal3 109200 121800 113400 126000 metal2 109200 121800 113400 134400 metal2 109200 130200 113400 134400 metal1 -100800 138600 105000 147000 metal2 -100800 142800 105000 147000 metal2 -100800 142800 109200 147000 metal3 -105000 142800 109200 147000 metal2 -105000 142800 109200 151200 metal2 -109200 130200 121800 134400 metal1 -109200 130200 113400 138600 metal1 -105000 147000 109200 151200 metal1 -105000 147000 109200 151200 metal2 105000 147000 117600 151200 metal3 113400 147000 117600 151200 metal2 113400 147000 117600 151200 metal1 +109200 130200 121800 134400 metal1 100800 138600 105000 142800 metal1 100800 138600 105000 142800 metal2 100800 138600 113400 142800 metal3 109200 138600 113400 142800 metal2 109200 134400 113400 142800 metal2 109200 134400 113400 138600 metal1 +109200 130200 113400 138600 metal2 ) _119_ ( -121800 130200 130200 134400 metal1 -126000 130200 130200 134400 metal1 -126000 130200 130200 138600 metal2 -126000 134400 130200 138600 metal1 +121800 130200 126000 142800 metal2 +121800 138600 126000 142800 metal2 +121800 138600 130200 142800 metal3 +126000 138600 130200 142800 metal2 +117600 117600 121800 121800 metal1 +117600 113400 121800 121800 metal2 +117600 113400 121800 117600 metal1 113400 121800 117600 126000 metal1 113400 121800 117600 126000 metal2 113400 121800 121800 126000 metal3 117600 121800 121800 126000 metal2 -117600 113400 121800 117600 metal1 -117600 113400 121800 121800 metal2 -117600 117600 121800 121800 metal1 -126000 134400 130200 147000 metal2 -117600 117600 121800 126000 metal2 -117600 142800 121800 147000 metal1 -117600 142800 121800 147000 metal2 -117600 142800 130200 147000 metal3 -126000 142800 130200 147000 metal2 -126000 142800 130200 147000 metal1 -126000 142800 134400 147000 metal1 +126000 138600 130200 147000 metal2 117600 121800 121800 134400 metal2 117600 130200 121800 134400 metal2 117600 130200 126000 134400 metal3 121800 130200 126000 134400 metal2 121800 130200 126000 134400 metal1 +117600 142800 121800 147000 metal1 +117600 142800 121800 147000 metal2 +117600 142800 130200 147000 metal3 +126000 142800 130200 147000 metal2 +126000 142800 134400 147000 metal3 +130200 142800 134400 147000 metal2 +130200 142800 134400 147000 metal1 +117600 117600 121800 126000 metal2 +126000 134400 130200 142800 metal2 +126000 134400 130200 138600 metal1 ) _120_ ( -147000 88200 151200 92400 metal2 -147000 88200 163800 92400 metal3 -159600 88200 163800 92400 metal2 -142800 84000 147000 88200 metal1 -142800 84000 147000 92400 metal2 -142800 88200 147000 92400 metal2 -142800 88200 151200 92400 metal3 -155400 79800 159600 84000 metal1 +159600 79800 163800 88200 metal2 +159600 79800 163800 84000 metal2 +155400 79800 163800 84000 metal3 155400 79800 159600 84000 metal2 -155400 79800 168000 84000 metal3 -163800 79800 168000 84000 metal2 -163800 79800 168000 88200 metal2 -163800 84000 168000 88200 metal2 -159600 84000 168000 88200 metal3 +155400 79800 159600 84000 metal1 +142800 84000 147000 88200 metal1 +142800 84000 147000 88200 metal2 +142800 84000 151200 88200 metal3 +147000 84000 151200 88200 metal2 +147000 84000 163800 88200 metal3 159600 84000 163800 88200 metal2 -159600 84000 163800 92400 metal2 147000 92400 151200 96600 metal1 -147000 88200 151200 96600 metal2 +147000 84000 151200 96600 metal2 142800 79800 147000 88200 metal2 142800 79800 147000 84000 metal1 -155400 96600 159600 100800 metal1 -155400 92400 159600 100800 metal2 +159600 84000 168000 88200 metal3 +163800 84000 168000 88200 metal2 +163800 84000 168000 96600 metal2 +163800 92400 168000 96600 metal2 +155400 92400 168000 96600 metal3 155400 92400 159600 96600 metal2 -155400 92400 163800 96600 metal3 -159600 92400 163800 96600 metal2 -159600 88200 163800 96600 metal2 +155400 92400 159600 100800 metal2 +155400 96600 159600 100800 metal1 ) _121_ ( -147000 113400 151200 117600 metal1 -147000 113400 151200 117600 metal2 -142800 113400 151200 117600 metal3 -142800 113400 147000 117600 metal2 -142800 105000 147000 117600 metal2 -142800 105000 147000 109200 metal2 -142800 105000 151200 109200 metal3 -147000 105000 151200 109200 metal2 -147000 105000 151200 109200 metal1 -147000 100800 151200 109200 metal2 147000 100800 151200 105000 metal1 147000 100800 151200 105000 metal2 147000 100800 159600 105000 metal3 155400 100800 159600 105000 metal2 155400 96600 159600 100800 metal1 155400 96600 159600 105000 metal2 +147000 100800 151200 109200 metal2 +147000 105000 151200 109200 metal1 155400 100800 159600 117600 metal2 155400 113400 159600 117600 metal1 +147000 113400 151200 117600 metal1 +147000 105000 151200 117600 metal2 ) _122_ ( -130200 71400 134400 88200 metal2 +130200 88200 134400 92400 metal1 +130200 88200 134400 92400 metal2 +130200 88200 138600 92400 metal3 +134400 88200 138600 92400 metal2 +134400 71400 138600 92400 metal2 117600 88200 121800 96600 metal2 117600 92400 121800 96600 metal1 +117600 88200 121800 92400 metal1 +117600 88200 121800 92400 metal2 +117600 88200 134400 92400 metal3 130200 71400 134400 75600 metal1 130200 71400 134400 75600 metal2 130200 71400 138600 75600 metal3 134400 71400 138600 75600 metal2 134400 71400 138600 75600 metal1 -117600 88200 121800 92400 metal1 -117600 88200 121800 92400 metal2 -117600 88200 130200 92400 metal3 -126000 88200 130200 92400 metal2 -126000 84000 130200 92400 metal2 -126000 84000 130200 88200 metal2 -126000 84000 134400 88200 metal3 -130200 84000 134400 88200 metal2 -130200 84000 134400 92400 metal2 -130200 88200 134400 92400 metal1 ) _123_ ( -126000 105000 134400 109200 metal1 130200 105000 134400 109200 metal1 -130200 105000 134400 121800 metal2 +130200 100800 134400 109200 metal2 +130200 100800 134400 105000 metal1 130200 117600 134400 121800 metal2 130200 117600 142800 121800 metal3 138600 117600 142800 121800 metal2 138600 117600 142800 121800 metal1 -130200 100800 134400 109200 metal2 -130200 100800 134400 105000 metal1 -138600 117600 142800 126000 metal2 +130200 105000 138600 109200 metal1 138600 121800 142800 126000 metal1 +138600 117600 142800 126000 metal2 +130200 105000 134400 121800 metal2 126000 117600 130200 121800 metal1 126000 117600 130200 121800 metal2 126000 117600 134400 121800 metal3 -130200 105000 138600 109200 metal1 +126000 105000 134400 109200 metal1 ) _124_ ( -67200 92400 71400 96600 metal1 -67200 88200 71400 96600 metal2 -67200 88200 71400 92400 metal1 -58800 96600 63000 100800 metal2 -58800 96600 71400 100800 metal3 -67200 96600 71400 100800 metal2 -67200 92400 71400 100800 metal2 54600 100800 58800 105000 metal1 -54600 96600 58800 105000 metal2 -54600 96600 58800 100800 metal2 -54600 96600 63000 100800 metal3 -58800 92400 63000 100800 metal2 +54600 100800 58800 105000 metal2 +54600 100800 63000 105000 metal3 +58800 100800 63000 105000 metal2 +58800 92400 63000 105000 metal2 58800 92400 63000 96600 metal1 +58800 88200 63000 96600 metal2 +58800 88200 63000 92400 metal2 +58800 88200 71400 92400 metal3 +67200 88200 71400 92400 metal2 +67200 88200 71400 92400 metal1 +67200 88200 71400 96600 metal2 +67200 92400 71400 96600 metal1 ) _125_ ( -58800 75600 63000 79800 metal1 +63000 71400 67200 75600 metal1 +63000 71400 67200 79800 metal2 +54600 79800 58800 84000 metal1 +54600 75600 58800 84000 metal2 +54600 75600 58800 79800 metal2 +54600 75600 63000 79800 metal3 58800 75600 63000 79800 metal2 +58800 75600 63000 79800 metal1 58800 75600 67200 79800 metal3 63000 75600 67200 79800 metal2 63000 75600 67200 79800 metal1 -63000 71400 67200 75600 metal1 -63000 71400 67200 79800 metal2 +63000 75600 67200 84000 metal2 63000 79800 67200 84000 metal1 -63000 79800 67200 84000 metal2 -58800 79800 67200 84000 metal3 -58800 79800 63000 84000 metal2 -54600 79800 58800 84000 metal1 -54600 79800 58800 84000 metal2 -54600 79800 63000 84000 metal3 -58800 75600 63000 84000 metal2 ) _126_ ( +105000 121800 109200 126000 metal1 105000 117600 109200 126000 metal2 105000 117600 109200 121800 metal1 -105000 121800 109200 126000 metal1 -105000 121800 109200 126000 metal2 -105000 121800 113400 126000 metal3 -109200 121800 113400 126000 metal2 -109200 121800 113400 134400 metal2 -109200 130200 113400 134400 metal1 -109200 130200 113400 134400 metal2 -109200 130200 142800 134400 metal3 -138600 130200 142800 134400 metal2 -138600 130200 142800 138600 metal2 -138600 134400 142800 138600 metal1 105000 134400 109200 138600 metal1 -105000 130200 109200 138600 metal2 -105000 130200 109200 134400 metal1 -105000 130200 113400 134400 metal1 +105000 121800 109200 138600 metal2 +105000 134400 109200 159600 metal2 +105000 155400 109200 159600 metal2 +105000 155400 134400 159600 metal3 +130200 155400 134400 159600 metal2 +130200 151200 134400 159600 metal2 +130200 151200 134400 155400 metal2 +130200 151200 142800 155400 metal3 +138600 151200 142800 155400 metal2 +138600 134400 142800 155400 metal2 +138600 134400 142800 138600 metal1 ) _127_ ( -75600 67200 79800 71400 metal1 75600 67200 79800 75600 metal2 75600 71400 79800 75600 metal1 +79800 63000 84000 71400 metal2 +79800 63000 84000 67200 metal1 75600 63000 79800 71400 metal2 -79800 63000 88200 67200 metal1 -84000 63000 88200 67200 metal1 -84000 63000 88200 71400 metal2 -84000 67200 88200 71400 metal1 75600 63000 79800 67200 metal1 -75600 63000 79800 67200 metal2 -75600 63000 84000 67200 metal3 -79800 63000 84000 67200 metal2 -79800 63000 84000 67200 metal1 +79800 67200 84000 71400 metal2 +75600 67200 84000 71400 metal3 +75600 67200 79800 71400 metal2 +75600 67200 79800 71400 metal1 +79800 67200 88200 71400 metal3 +84000 67200 88200 71400 metal2 +84000 67200 88200 71400 metal1 ) _128_ ( +75600 71400 92400 75600 metal1 105000 67200 109200 71400 metal1 105000 67200 109200 75600 metal2 -105000 71400 109200 75600 metal1 -105000 71400 109200 75600 metal2 -92400 71400 109200 75600 metal3 -92400 71400 96600 75600 metal2 92400 71400 96600 75600 metal1 +92400 71400 96600 75600 metal2 +92400 71400 109200 75600 metal3 +105000 71400 109200 75600 metal2 +105000 71400 109200 75600 metal1 88200 71400 92400 75600 metal1 88200 67200 92400 75600 metal2 88200 67200 92400 71400 metal1 100800 67200 109200 71400 metal1 -75600 71400 92400 75600 metal1 88200 71400 96600 75600 metal1 105000 71400 113400 75600 metal1 ) _129_ ( -100800 50400 105000 54600 metal1 -100800 50400 105000 54600 metal2 -100800 50400 113400 54600 metal3 -109200 50400 113400 54600 metal2 109200 50400 113400 58800 metal2 -105000 54600 109200 58800 metal1 -105000 54600 109200 58800 metal2 -105000 54600 113400 58800 metal3 +109200 50400 113400 54600 metal1 +100800 50400 113400 54600 metal1 +109200 54600 113400 58800 metal1 109200 54600 113400 58800 metal2 -100800 50400 105000 58800 metal2 -109200 54600 113400 63000 metal2 -109200 58800 113400 63000 metal1 109200 54600 121800 58800 metal3 117600 54600 121800 58800 metal2 117600 54600 121800 58800 metal1 +105000 54600 113400 58800 metal1 92400 63000 96600 67200 metal1 92400 54600 96600 67200 metal2 92400 54600 96600 58800 metal2 92400 54600 105000 58800 metal3 100800 54600 105000 58800 metal2 100800 54600 105000 58800 metal1 +109200 54600 113400 63000 metal2 +109200 58800 113400 63000 metal1 +100800 50400 105000 58800 metal2 +100800 50400 105000 54600 metal1 ) _130_ ( 92400 63000 96600 67200 metal1 -92400 58800 96600 67200 metal2 -92400 58800 96600 63000 metal1 -92400 58800 105000 63000 metal1 +92400 63000 96600 67200 metal2 +92400 63000 105000 67200 metal3 +100800 63000 105000 67200 metal2 +100800 58800 105000 67200 metal2 +100800 58800 105000 63000 metal1 105000 33600 109200 42000 metal2 105000 33600 109200 37800 metal1 100800 54600 105000 58800 metal1 100800 54600 105000 63000 metal2 -100800 58800 105000 63000 metal1 -105000 37800 113400 42000 metal1 -109200 37800 113400 42000 metal1 -109200 37800 113400 63000 metal2 -109200 58800 113400 63000 metal2 -105000 58800 113400 63000 metal3 -105000 58800 109200 63000 metal2 -105000 58800 109200 63000 metal1 105000 37800 109200 42000 metal1 105000 37800 109200 42000 metal2 +105000 37800 130200 42000 metal3 +126000 37800 130200 42000 metal2 +126000 37800 130200 54600 metal2 +126000 50400 130200 54600 metal2 +117600 50400 130200 54600 metal3 +117600 50400 121800 54600 metal2 +117600 50400 121800 58800 metal2 +117600 54600 121800 58800 metal1 +105000 54600 121800 58800 metal1 +105000 54600 109200 58800 metal1 +105000 54600 109200 63000 metal2 +105000 58800 109200 63000 metal1 100800 37800 109200 42000 metal3 100800 37800 105000 42000 metal2 100800 37800 105000 42000 metal1 @@ -1288,10 +1286,10 @@ _130_ ) _131_ ( -88200 63000 92400 67200 metal1 -88200 63000 92400 67200 metal2 -88200 63000 100800 67200 metal3 -96600 63000 100800 67200 metal2 +88200 58800 92400 63000 metal2 +88200 58800 100800 63000 metal3 +96600 58800 100800 63000 metal2 +96600 58800 100800 67200 metal2 96600 63000 100800 67200 metal1 75600 50400 79800 54600 metal1 75600 50400 79800 58800 metal2 @@ -1300,17 +1298,19 @@ _131_ 79800 54600 84000 58800 metal2 79800 54600 84000 58800 metal1 84000 58800 88200 63000 metal1 -84000 58800 88200 67200 metal2 -84000 63000 88200 67200 metal2 -84000 63000 92400 67200 metal3 -79800 54600 88200 58800 metal3 -84000 54600 88200 58800 metal2 +84000 58800 88200 63000 metal2 +84000 58800 92400 63000 metal3 +79800 54600 88200 58800 metal1 +84000 54600 88200 58800 metal1 84000 54600 88200 63000 metal2 75600 46200 79800 54600 metal2 75600 46200 79800 50400 metal1 +88200 58800 92400 67200 metal2 +88200 63000 92400 67200 metal1 ) _132_ ( +100800 67200 105000 71400 metal1 100800 63000 105000 71400 metal2 100800 63000 105000 67200 metal2 96600 63000 105000 67200 metal3 @@ -1319,11 +1319,7 @@ _132_ 100800 79800 105000 84000 metal1 100800 79800 105000 88200 metal2 100800 84000 105000 88200 metal1 -100800 67200 105000 71400 metal1 -100800 67200 105000 71400 metal2 -100800 67200 109200 71400 metal3 -105000 67200 109200 71400 metal2 -105000 67200 109200 75600 metal2 +100800 67200 105000 75600 metal2 100800 71400 105000 84000 metal2 100800 71400 105000 75600 metal2 100800 71400 109200 75600 metal3 @@ -1338,47 +1334,47 @@ _133_ 96600 117600 109200 121800 metal3 105000 117600 109200 121800 metal2 105000 117600 109200 121800 metal1 -88200 117600 92400 126000 metal2 -88200 121800 92400 126000 metal1 -92400 113400 96600 117600 metal1 92400 113400 96600 121800 metal2 +92400 113400 96600 117600 metal1 92400 117600 96600 121800 metal2 92400 117600 100800 121800 metal3 +88200 121800 92400 126000 metal1 +88200 121800 92400 126000 metal2 +88200 121800 96600 126000 metal3 +92400 121800 96600 126000 metal2 +92400 117600 96600 126000 metal2 88200 117600 92400 121800 metal1 88200 117600 92400 121800 metal2 88200 117600 96600 121800 metal3 ) _134_ ( -109200 134400 113400 142800 metal2 -113400 142800 117600 147000 metal1 -113400 138600 117600 147000 metal2 -113400 138600 117600 142800 metal2 -109200 138600 117600 142800 metal3 -109200 138600 113400 142800 metal2 -109200 138600 113400 142800 metal1 109200 134400 113400 138600 metal1 109200 134400 113400 138600 metal2 109200 134400 117600 138600 metal3 113400 134400 117600 138600 metal2 113400 130200 117600 138600 metal2 113400 130200 117600 134400 metal1 +109200 138600 113400 142800 metal1 +109200 134400 113400 142800 metal2 +109200 138600 113400 147000 metal2 +109200 142800 113400 147000 metal1 +109200 142800 117600 147000 metal1 ) _135_ ( +121800 130200 126000 134400 metal2 +121800 130200 130200 134400 metal3 +126000 130200 130200 134400 metal2 +126000 130200 130200 134400 metal1 +121800 126000 126000 134400 metal2 121800 126000 126000 130200 metal1 -121800 126000 126000 130200 metal2 -121800 126000 130200 130200 metal3 -126000 126000 130200 130200 metal2 -126000 126000 130200 134400 metal2 -117600 138600 126000 142800 metal1 -121800 138600 126000 142800 metal1 -121800 134400 126000 142800 metal2 +117600 138600 121800 142800 metal1 +117600 134400 121800 142800 metal2 +117600 134400 121800 138600 metal2 +117600 134400 126000 138600 metal3 +121800 134400 126000 138600 metal2 121800 134400 126000 138600 metal1 -126000 130200 130200 134400 metal1 -126000 130200 130200 134400 metal2 -121800 130200 130200 134400 metal3 -121800 130200 126000 134400 metal2 121800 130200 126000 138600 metal2 ) _136_ @@ -1389,37 +1385,36 @@ _136_ 134400 84000 147000 88200 metal3 142800 84000 147000 88200 metal2 142800 84000 147000 92400 metal2 +151200 84000 159600 88200 metal1 +151200 84000 155400 88200 metal1 +151200 84000 155400 92400 metal2 142800 88200 147000 92400 metal1 -151200 92400 155400 96600 metal1 -151200 84000 155400 96600 metal2 -151200 84000 155400 88200 metal2 -151200 84000 159600 88200 metal3 -155400 84000 159600 88200 metal2 -155400 84000 159600 88200 metal1 -147000 88200 151200 92400 metal1 -147000 84000 151200 92400 metal2 -147000 84000 151200 88200 metal2 -147000 84000 155400 88200 metal3 +142800 88200 147000 92400 metal2 +142800 88200 151200 92400 metal3 +147000 88200 151200 92400 metal2 147000 96600 151200 100800 metal1 147000 88200 151200 100800 metal2 -142800 88200 151200 92400 metal1 +147000 88200 155400 92400 metal3 +151200 88200 155400 92400 metal2 +151200 88200 155400 96600 metal2 +151200 92400 155400 96600 metal1 ) _137_ ( -151200 100800 155400 109200 metal2 -151200 100800 155400 105000 metal1 +134400 100800 138600 105000 metal1 +134400 100800 138600 109200 metal2 +134400 105000 138600 109200 metal2 +134400 105000 151200 109200 metal3 +147000 105000 151200 109200 metal2 +147000 105000 151200 109200 metal1 +147000 105000 155400 109200 metal3 151200 105000 155400 109200 metal2 151200 105000 159600 109200 metal3 155400 105000 159600 109200 metal2 155400 105000 159600 113400 metal2 155400 109200 159600 113400 metal1 -147000 105000 151200 109200 metal1 -147000 105000 151200 109200 metal2 -147000 105000 155400 109200 metal3 -134400 105000 151200 109200 metal1 -134400 105000 138600 109200 metal1 -134400 100800 138600 109200 metal2 -134400 100800 138600 105000 metal1 +151200 100800 155400 105000 metal1 +151200 100800 155400 109200 metal2 142800 100800 155400 105000 metal1 ) _138_ @@ -1433,157 +1428,193 @@ _138_ 121800 84000 134400 88200 metal3 130200 84000 134400 88200 metal2 130200 84000 134400 92400 metal2 -117600 96600 126000 100800 metal1 130200 88200 134400 92400 metal1 -130200 88200 134400 92400 metal2 -130200 88200 142800 92400 metal3 -138600 88200 142800 92400 metal2 -138600 88200 142800 105000 metal2 +117600 96600 126000 100800 metal1 +130200 88200 138600 92400 metal1 +134400 88200 138600 92400 metal1 +134400 88200 138600 96600 metal2 +134400 92400 138600 96600 metal2 +134400 92400 142800 96600 metal3 +138600 92400 142800 96600 metal2 +138600 92400 142800 105000 metal2 138600 100800 142800 105000 metal1 ) _139_ ( -138600 100800 142800 105000 metal1 -138600 100800 142800 109200 metal2 +138600 117600 142800 121800 metal1 +138600 109200 142800 121800 metal2 +130200 109200 134400 113400 metal1 +130200 109200 134400 113400 metal2 +130200 109200 138600 113400 metal3 +134400 109200 138600 113400 metal2 +134400 105000 138600 113400 metal2 +134400 105000 138600 109200 metal1 +134400 105000 142800 109200 metal1 138600 105000 142800 109200 metal1 +138600 105000 142800 113400 metal2 138600 109200 142800 113400 metal2 138600 109200 147000 113400 metal3 142800 109200 147000 113400 metal2 142800 109200 147000 113400 metal1 -130200 109200 134400 113400 metal1 -130200 109200 134400 117600 metal2 -130200 113400 134400 117600 metal2 -130200 113400 138600 117600 metal3 -134400 113400 138600 117600 metal2 -134400 109200 138600 117600 metal2 -134400 109200 138600 113400 metal2 -134400 109200 142800 113400 metal3 -134400 105000 142800 109200 metal1 -138600 117600 142800 121800 metal1 -138600 109200 142800 121800 metal2 -138600 105000 142800 113400 metal2 +138600 100800 142800 105000 metal1 +138600 100800 142800 109200 metal2 ) _140_ ( -54600 96600 71400 100800 metal1 +67200 92400 71400 96600 metal1 +67200 92400 71400 100800 metal2 +67200 96600 71400 100800 metal1 67200 96600 75600 100800 metal1 -67200 92400 71400 100800 metal1 +67200 71400 79800 75600 metal1 67200 84000 71400 88200 metal1 67200 71400 71400 88200 metal2 +54600 96600 58800 100800 metal1 +54600 96600 58800 100800 metal2 +46200 96600 58800 100800 metal3 +46200 96600 50400 100800 metal2 +46200 75600 50400 100800 metal2 +46200 75600 50400 79800 metal1 +46200 75600 54600 79800 metal1 +50400 75600 54600 79800 metal1 +50400 71400 54600 79800 metal2 +50400 71400 54600 75600 metal2 +50400 71400 71400 75600 metal3 67200 71400 71400 75600 metal2 -67200 71400 79800 75600 metal3 -75600 71400 79800 75600 metal2 -75600 71400 79800 75600 metal1 +67200 71400 71400 75600 metal1 67200 84000 75600 88200 metal1 67200 84000 71400 96600 metal2 -67200 92400 71400 96600 metal1 ) _141_ ( -63000 75600 71400 79800 metal1 -63000 75600 67200 79800 metal1 -63000 75600 67200 84000 metal2 +67200 75600 71400 79800 metal1 +67200 71400 71400 79800 metal2 +67200 71400 71400 75600 metal2 +67200 71400 79800 75600 metal3 +75600 71400 79800 75600 metal2 +75600 71400 79800 75600 metal1 +58800 79800 63000 84000 metal2 +58800 79800 67200 84000 metal3 +63000 79800 67200 84000 metal2 63000 79800 67200 84000 metal1 -58800 79800 63000 84000 metal1 -58800 79800 67200 84000 metal2 -71400 79800 75600 84000 metal1 -71400 75600 75600 84000 metal2 -67200 75600 75600 79800 metal1 +67200 79800 75600 84000 metal1 +67200 75600 71400 84000 metal2 58800 79800 63000 88200 metal2 58800 84000 63000 88200 metal1 -71400 75600 75600 79800 metal1 -71400 75600 75600 79800 metal2 -71400 71400 75600 79800 metal3 -71400 71400 79800 75600 metal3 -75600 71400 79800 75600 metal2 -75600 71400 79800 75600 metal1 -54600 79800 63000 84000 metal1 +67200 79800 71400 84000 metal1 +67200 79800 71400 84000 metal2 +63000 79800 71400 84000 metal3 +54600 79800 58800 84000 metal1 +54600 79800 58800 84000 metal2 +54600 79800 63000 84000 metal3 ) _142_ ( -54600 50400 58800 54600 metal2 -54600 50400 67200 54600 metal3 -63000 50400 67200 54600 metal2 -63000 50400 67200 54600 metal1 -54600 50400 58800 63000 metal2 -54600 58800 58800 63000 metal2 -42000 58800 58800 63000 metal3 -42000 58800 46200 63000 metal2 -42000 58800 46200 113400 metal2 -42000 109200 46200 113400 metal1 -42000 109200 67200 113400 metal1 -67200 105000 71400 109200 metal2 -67200 105000 84000 109200 metal3 -79800 105000 84000 109200 metal2 -79800 105000 84000 109200 metal1 -67200 84000 71400 109200 metal2 -67200 84000 71400 88200 metal2 -63000 84000 71400 88200 metal3 -63000 84000 67200 88200 metal2 -63000 84000 67200 88200 metal1 +50400 50400 54600 54600 metal1 +50400 37800 54600 54600 metal2 +50400 37800 54600 42000 metal2 +50400 37800 58800 42000 metal3 +54600 37800 58800 42000 metal2 +54600 33600 58800 42000 metal2 +54600 33600 58800 37800 metal1 +54600 33600 67200 37800 metal1 +63000 33600 67200 37800 metal1 +63000 25200 67200 37800 metal2 +63000 25200 67200 29400 metal2 +63000 25200 84000 29400 metal3 +79800 25200 84000 29400 metal2 +79800 25200 84000 42000 metal2 +79800 37800 84000 42000 metal1 +79800 37800 88200 42000 metal1 79800 105000 92400 109200 metal1 -63000 109200 67200 113400 metal1 -63000 105000 67200 113400 metal2 -63000 105000 67200 109200 metal2 -63000 105000 71400 109200 metal3 +50400 71400 54600 75600 metal2 +50400 71400 58800 75600 metal3 +54600 71400 58800 75600 metal2 +54600 71400 58800 79800 metal2 +54600 75600 58800 79800 metal1 +54600 75600 63000 79800 metal1 +58800 75600 63000 79800 metal1 +58800 75600 63000 84000 metal2 +58800 79800 63000 84000 metal1 +58800 79800 67200 84000 metal1 +63000 79800 67200 84000 metal1 +63000 79800 67200 88200 metal2 +63000 84000 67200 88200 metal1 +37800 71400 54600 75600 metal3 +37800 71400 42000 75600 metal2 +37800 71400 42000 79800 metal2 +33600 75600 42000 79800 metal2 +33600 75600 37800 88200 metal2 +33600 84000 37800 88200 metal2 +29400 84000 37800 88200 metal3 +29400 84000 33600 88200 metal2 +29400 84000 33600 100800 metal2 +29400 96600 33600 100800 metal2 +29400 96600 37800 100800 metal3 +33600 96600 37800 100800 metal2 +33600 96600 37800 117600 metal2 +33600 113400 37800 117600 metal2 +33600 113400 50400 117600 metal3 +46200 113400 50400 117600 metal2 +46200 113400 50400 121800 metal2 +46200 117600 50400 121800 metal2 +46200 117600 54600 121800 metal3 +50400 117600 54600 121800 metal2 +50400 113400 54600 121800 metal2 +50400 113400 54600 117600 metal2 +50400 113400 58800 117600 metal3 +54600 113400 58800 117600 metal2 +54600 113400 63000 117600 metal2 +58800 113400 63000 117600 metal1 +58800 109200 63000 117600 metal1 +58800 109200 67200 113400 metal1 +50400 50400 54600 75600 metal2 +63000 109200 79800 113400 metal1 +75600 109200 79800 113400 metal1 +75600 105000 79800 113400 metal2 +75600 105000 79800 109200 metal1 +75600 105000 84000 109200 metal1 +84000 37800 88200 42000 metal1 84000 37800 88200 46200 metal2 84000 42000 88200 46200 metal1 -54600 42000 58800 54600 metal2 -54600 42000 58800 46200 metal2 -54600 42000 63000 46200 metal3 -58800 42000 63000 46200 metal2 -58800 33600 63000 46200 metal2 -58800 33600 63000 37800 metal2 -58800 33600 67200 37800 metal3 -63000 33600 67200 37800 metal2 -63000 21000 67200 37800 metal2 -63000 21000 67200 25200 metal2 -63000 21000 75600 25200 metal3 -71400 21000 75600 25200 metal2 -71400 21000 75600 37800 metal2 -71400 33600 75600 37800 metal2 -71400 33600 84000 37800 metal3 -79800 33600 84000 37800 metal2 -79800 33600 84000 42000 metal2 -79800 37800 84000 42000 metal2 -79800 37800 88200 42000 metal3 -84000 37800 88200 42000 metal2 -84000 37800 88200 42000 metal1 +50400 50400 67200 54600 metal1 +79800 105000 84000 109200 metal1 79800 96600 84000 109200 metal2 79800 96600 84000 100800 metal1 ) _143_ ( 113400 117600 117600 121800 metal1 -113400 117600 117600 121800 metal2 -113400 117600 138600 121800 metal3 -134400 117600 138600 121800 metal2 -134400 113400 138600 121800 metal2 -134400 113400 138600 117600 metal1 -134400 113400 142800 117600 metal1 -138600 113400 142800 117600 metal1 -138600 100800 142800 117600 metal2 -138600 100800 142800 105000 metal1 +113400 113400 117600 121800 metal2 +113400 113400 117600 117600 metal1 +113400 113400 134400 117600 metal1 +130200 113400 134400 117600 metal1 +130200 105000 134400 117600 metal2 +130200 105000 134400 109200 metal1 +130200 105000 138600 109200 metal1 +134400 105000 138600 109200 metal1 +134400 100800 138600 109200 metal2 +134400 100800 138600 105000 metal1 +134400 100800 142800 105000 metal1 ) _144_ ( +117600 117600 121800 121800 metal1 +117600 117600 121800 121800 metal2 +117600 117600 126000 121800 metal3 +121800 117600 126000 121800 metal2 +121800 117600 126000 126000 metal2 +117600 113400 121800 117600 metal1 +117600 113400 121800 117600 metal2 +117600 113400 126000 117600 metal3 +121800 113400 126000 117600 metal2 +121800 113400 126000 121800 metal2 +113400 121800 126000 126000 metal1 121800 121800 126000 126000 metal1 121800 121800 126000 126000 metal2 121800 121800 130200 126000 metal3 126000 121800 130200 126000 metal2 126000 121800 130200 134400 metal2 126000 130200 130200 134400 metal1 -121800 113400 126000 121800 metal2 -121800 113400 126000 117600 metal2 -117600 113400 126000 117600 metal3 -117600 113400 121800 117600 metal2 -117600 113400 121800 117600 metal1 -121800 117600 126000 126000 metal2 -113400 121800 126000 126000 metal1 -117600 117600 121800 121800 metal1 -117600 117600 121800 121800 metal2 -117600 117600 126000 121800 metal3 -121800 117600 126000 121800 metal2 113400 117600 117600 121800 metal1 113400 117600 117600 121800 metal2 113400 117600 121800 121800 metal3 @@ -1616,7 +1647,9 @@ _147_ 79800 117600 117600 121800 metal3 113400 117600 117600 121800 metal2 113400 117600 117600 121800 metal1 -75600 117600 84000 121800 metal1 +75600 117600 79800 121800 metal1 +75600 117600 79800 121800 metal2 +75600 117600 84000 121800 metal3 ) _148_ ( @@ -1629,55 +1662,29 @@ _148_ ) _149_ ( -79800 67200 84000 71400 metal1 -79800 67200 84000 71400 metal2 -79800 67200 88200 71400 metal3 -84000 67200 88200 71400 metal2 +79800 67200 88200 71400 metal1 +84000 67200 88200 71400 metal1 84000 63000 88200 71400 metal2 -84000 63000 88200 67200 metal1 -84000 63000 100800 67200 metal1 +84000 63000 88200 67200 metal2 +84000 63000 100800 67200 metal3 +96600 63000 100800 67200 metal2 +96600 63000 100800 67200 metal1 ) _150_ ( +79800 113400 84000 117600 metal2 +79800 113400 88200 117600 metal3 +84000 113400 88200 117600 metal2 +84000 71400 88200 117600 metal2 +84000 71400 88200 75600 metal1 +84000 67200 88200 75600 metal1 +79800 67200 88200 71400 metal1 +75600 117600 79800 121800 metal1 +75600 113400 79800 121800 metal2 +75600 113400 79800 117600 metal2 +75600 113400 84000 117600 metal3 79800 117600 84000 121800 metal1 -79800 117600 84000 130200 metal2 -79800 126000 84000 130200 metal2 -75600 126000 84000 130200 metal3 -75600 126000 79800 130200 metal2 -75600 126000 79800 134400 metal2 -75600 130200 79800 134400 metal1 -67200 130200 79800 134400 metal1 -67200 130200 71400 134400 metal1 -67200 130200 71400 138600 metal2 -67200 134400 71400 138600 metal2 -58800 134400 71400 138600 metal3 -58800 134400 63000 138600 metal2 -58800 130200 63000 138600 metal2 -58800 130200 63000 134400 metal2 -46200 130200 63000 134400 metal3 -46200 130200 50400 134400 metal2 -46200 113400 50400 134400 metal2 -46200 113400 50400 117600 metal2 -37800 113400 50400 117600 metal3 -37800 113400 42000 117600 metal2 -37800 96600 42000 117600 metal2 -37800 96600 42000 100800 metal2 -33600 96600 42000 100800 metal3 -33600 96600 37800 100800 metal2 -33600 84000 37800 100800 metal2 -33600 84000 37800 88200 metal2 -29400 84000 37800 88200 metal3 -29400 84000 33600 88200 metal2 -29400 63000 33600 88200 metal2 -29400 63000 33600 67200 metal2 -29400 63000 67200 67200 metal3 -63000 63000 67200 67200 metal2 -63000 63000 67200 71400 metal2 -63000 67200 67200 71400 metal2 -63000 67200 84000 71400 metal3 -79800 67200 84000 71400 metal2 -79800 67200 84000 71400 metal1 -75600 117600 84000 121800 metal1 +79800 113400 84000 121800 metal2 ) _151_ ( @@ -1746,265 +1753,237 @@ _157_ ) _158_ ( -67200 105000 84000 109200 metal1 +84000 96600 88200 105000 metal2 +84000 100800 88200 105000 metal2 +84000 100800 92400 105000 metal3 +88200 100800 92400 105000 metal2 +88200 100800 92400 113400 metal2 +92400 113400 96600 117600 metal1 +92400 113400 96600 117600 metal2 +88200 113400 96600 117600 metal3 +88200 113400 92400 117600 metal2 +88200 109200 92400 117600 metal2 +63000 84000 67200 88200 metal1 +63000 84000 67200 92400 metal2 +88200 109200 92400 113400 metal2 +84000 109200 92400 113400 metal3 +84000 109200 88200 113400 metal2 +84000 109200 88200 113400 metal1 +63000 88200 67200 96600 metal2 +63000 92400 67200 96600 metal2 +63000 92400 67200 100800 metal3 +63000 96600 71400 100800 metal3 +67200 96600 71400 100800 metal2 +67200 96600 71400 109200 metal2 +67200 105000 71400 109200 metal1 +63000 50400 67200 54600 metal1 +63000 50400 67200 54600 metal2 +63000 50400 84000 54600 metal3 +79800 50400 84000 54600 metal2 +79800 42000 84000 54600 metal2 +79800 42000 84000 46200 metal1 +79800 42000 84000 46200 metal2 +79800 42000 88200 46200 metal3 +84000 42000 88200 46200 metal2 +84000 37800 88200 46200 metal2 +84000 37800 88200 42000 metal1 +67200 105000 71400 113400 metal2 +67200 109200 71400 113400 metal2 +67200 109200 88200 113400 metal3 +46200 50400 67200 54600 metal3 +46200 50400 50400 54600 metal2 +46200 50400 50400 58800 metal2 +46200 54600 50400 58800 metal2 +42000 54600 50400 58800 metal3 +42000 54600 46200 58800 metal2 +42000 54600 46200 79800 metal2 +42000 75600 46200 79800 metal2 +42000 75600 50400 79800 metal3 +46200 75600 50400 79800 metal2 +46200 75600 50400 88200 metal2 +46200 84000 50400 88200 metal2 +46200 84000 58800 88200 metal3 +54600 84000 58800 88200 metal2 +54600 84000 58800 92400 metal2 +54600 88200 58800 92400 metal2 +54600 88200 67200 92400 metal3 +63000 88200 67200 92400 metal2 79800 96600 84000 100800 metal1 79800 96600 84000 100800 metal2 79800 96600 88200 100800 metal3 84000 96600 88200 100800 metal2 84000 96600 88200 100800 metal1 -79800 96600 84000 109200 metal2 -79800 105000 84000 109200 metal1 -25200 79800 29400 84000 metal2 -25200 79800 67200 84000 metal3 -63000 79800 67200 84000 metal2 -63000 79800 67200 88200 metal2 -63000 84000 67200 88200 metal1 -21000 79800 29400 84000 metal3 -21000 79800 25200 84000 metal2 -21000 42000 25200 84000 metal2 -21000 42000 25200 46200 metal2 -21000 42000 42000 46200 metal3 -37800 42000 42000 46200 metal2 -37800 37800 42000 46200 metal2 -37800 37800 42000 42000 metal2 -37800 37800 67200 42000 metal3 -63000 37800 67200 42000 metal2 -63000 37800 67200 42000 metal1 -63000 37800 84000 42000 metal1 -79800 37800 88200 42000 metal1 -92400 113400 96600 117600 metal1 -92400 109200 96600 117600 metal2 -92400 109200 96600 113400 metal2 -84000 109200 96600 113400 metal3 -84000 109200 88200 113400 metal2 -84000 109200 88200 113400 metal1 -25200 79800 29400 109200 metal2 -25200 105000 29400 109200 metal2 -25200 105000 33600 109200 metal3 -29400 105000 33600 109200 metal2 -29400 105000 33600 126000 metal2 -29400 121800 33600 126000 metal2 -29400 121800 54600 126000 metal3 -50400 121800 54600 126000 metal2 -50400 121800 58800 126000 metal2 -54600 113400 58800 126000 metal2 -54600 113400 63000 117600 metal2 -58800 105000 63000 117600 metal2 -58800 105000 63000 109200 metal1 -58800 105000 71400 109200 metal1 -63000 37800 67200 54600 metal2 -63000 50400 67200 54600 metal1 -79800 37800 84000 46200 metal1 -79800 105000 88200 109200 metal1 -84000 105000 88200 109200 metal1 -84000 105000 88200 113400 metal2 ) _159_ ( -109200 147000 113400 155400 metal2 -109200 147000 113400 151200 metal1 -109200 142800 113400 151200 metal1 -109200 142800 113400 147000 metal1 -109200 142800 117600 147000 metal2 -113400 134400 117600 147000 metal2 -113400 134400 117600 138600 metal1 -138600 79800 142800 84000 metal1 -138600 75600 142800 84000 metal2 +79800 121800 88200 126000 metal1 +88200 134400 117600 138600 metal1 +159600 126000 163800 130200 metal1 +159600 126000 163800 142800 metal2 +84000 121800 88200 138600 metal2 +84000 121800 88200 126000 metal1 138600 75600 142800 79800 metal1 -79800 121800 84000 138600 metal2 -142800 134400 147000 138600 metal1 -142800 130200 147000 138600 metal2 -142800 130200 147000 134400 metal1 -79800 121800 84000 126000 metal1 -79800 121800 84000 126000 metal2 -79800 121800 88200 126000 metal3 -84000 121800 88200 126000 metal2 +138600 71400 142800 79800 metal2 +138600 71400 142800 75600 metal2 +138600 71400 180600 75600 metal3 +176400 71400 180600 75600 metal2 +176400 71400 180600 88200 metal2 +176400 84000 180600 88200 metal2 +176400 84000 184800 88200 metal3 +180600 84000 184800 88200 metal2 +180600 84000 184800 96600 metal2 +180600 92400 184800 96600 metal1 +176400 92400 184800 96600 metal1 +176400 92400 180600 96600 metal1 +176400 92400 180600 121800 metal2 +176400 117600 180600 121800 metal2 +159600 117600 180600 121800 metal3 +159600 117600 163800 121800 metal2 +159600 117600 163800 130200 metal2 +138600 75600 142800 84000 metal2 +138600 79800 142800 84000 metal1 84000 109200 88200 126000 metal2 84000 109200 88200 113400 metal1 -113400 84000 142800 88200 metal1 -138600 84000 142800 88200 metal1 -138600 79800 142800 88200 metal2 -147000 117600 151200 121800 metal1 -147000 117600 151200 121800 metal2 -142800 117600 151200 121800 metal3 -142800 117600 147000 121800 metal2 -142800 117600 147000 134400 metal2 -79800 134400 84000 138600 metal2 -79800 134400 92400 138600 metal3 -88200 134400 92400 138600 metal2 -88200 134400 92400 138600 metal1 -134400 130200 147000 134400 metal1 -134400 130200 138600 134400 metal1 -134400 130200 138600 138600 metal2 -134400 134400 138600 138600 metal1 -138600 75600 159600 79800 metal1 -155400 75600 159600 79800 metal1 -155400 71400 159600 79800 metal2 -155400 71400 159600 75600 metal1 -155400 71400 168000 75600 metal1 -163800 71400 168000 75600 metal1 -163800 71400 168000 84000 metal2 -163800 79800 168000 84000 metal2 -163800 79800 176400 84000 metal3 -172200 79800 176400 84000 metal2 -172200 79800 176400 88200 metal2 -172200 84000 176400 88200 metal2 -172200 84000 189000 88200 metal3 -184800 84000 189000 88200 metal2 -184800 84000 189000 117600 metal2 -184800 113400 189000 117600 metal2 -184800 113400 193200 117600 metal3 -189000 113400 193200 117600 metal2 -189000 113400 193200 147000 metal2 -189000 142800 193200 147000 metal2 -172200 142800 193200 147000 metal3 -172200 142800 176400 147000 metal2 -105000 100800 109200 105000 metal1 -105000 100800 109200 109200 metal2 -105000 105000 109200 109200 metal2 -100800 105000 109200 109200 metal3 -100800 105000 105000 109200 metal2 -100800 105000 105000 113400 metal2 -100800 109200 105000 113400 metal1 -84000 109200 105000 113400 metal1 -109200 151200 113400 163800 metal2 -109200 159600 113400 163800 metal2 -109200 159600 142800 163800 metal3 -138600 159600 142800 163800 metal2 -138600 155400 142800 163800 metal2 -138600 155400 142800 159600 metal1 -138600 155400 151200 159600 metal1 -147000 155400 151200 159600 metal1 -147000 155400 151200 163800 metal2 -147000 159600 151200 163800 metal1 -147000 159600 159600 163800 metal1 -155400 159600 159600 163800 metal1 -155400 151200 159600 163800 metal2 -155400 151200 159600 155400 metal1 -155400 151200 168000 155400 metal1 -163800 151200 168000 155400 metal1 -163800 147000 168000 155400 metal2 -163800 147000 168000 151200 metal2 -163800 147000 176400 151200 metal3 -172200 147000 176400 151200 metal2 -172200 142800 176400 151200 metal2 142800 134400 147000 142800 metal2 142800 138600 147000 142800 metal2 -142800 138600 176400 142800 metal3 -172200 138600 176400 142800 metal2 -172200 138600 176400 147000 metal2 -79800 134400 84000 155400 metal2 -79800 151200 84000 155400 metal2 -79800 151200 113400 155400 metal3 -109200 151200 113400 155400 metal2 +142800 138600 163800 142800 metal3 +159600 138600 163800 142800 metal2 +134400 134400 138600 138600 metal1 +134400 134400 138600 138600 metal2 +134400 134400 147000 138600 metal3 +142800 134400 147000 138600 metal2 +142800 134400 147000 138600 metal1 +84000 134400 88200 138600 metal1 +84000 134400 88200 138600 metal2 +71400 134400 88200 138600 metal3 +71400 134400 75600 138600 metal2 +71400 134400 75600 172200 metal2 +71400 168000 75600 172200 metal2 +71400 168000 130200 172200 metal3 +126000 168000 130200 172200 metal2 +126000 163800 130200 172200 metal2 +126000 163800 130200 168000 metal2 +126000 163800 142800 168000 metal3 +138600 163800 142800 168000 metal2 +138600 163800 142800 172200 metal2 +138600 168000 142800 172200 metal2 +138600 168000 163800 172200 metal3 +159600 168000 163800 172200 metal2 +159600 155400 163800 172200 metal2 +159600 155400 163800 159600 metal2 +159600 155400 168000 159600 metal3 +163800 155400 168000 159600 metal2 +163800 138600 168000 159600 metal2 +163800 138600 168000 142800 metal2 +159600 138600 168000 142800 metal3 +113400 84000 117600 88200 metal1 +113400 84000 117600 88200 metal2 +113400 84000 142800 88200 metal3 +138600 84000 142800 88200 metal2 +138600 79800 142800 88200 metal2 +105000 100800 113400 105000 metal1 +109200 100800 113400 105000 metal1 +109200 84000 113400 105000 metal2 +109200 84000 113400 88200 metal1 +109200 84000 117600 88200 metal1 +147000 117600 151200 121800 metal1 +147000 117600 151200 130200 metal2 +147000 126000 151200 130200 metal1 +147000 126000 163800 130200 metal1 +84000 134400 92400 138600 metal1 ) _160_ ( -155400 134400 163800 138600 metal1 +71400 121800 79800 126000 metal1 +71400 121800 75600 126000 metal1 +71400 121800 75600 134400 metal2 +71400 130200 75600 134400 metal2 +67200 130200 75600 134400 metal3 +67200 130200 71400 134400 metal2 +67200 130200 71400 163800 metal2 +67200 159600 71400 163800 metal2 +67200 159600 100800 163800 metal3 +96600 159600 100800 163800 metal2 +96600 159600 100800 176400 metal2 +96600 172200 100800 176400 metal2 +96600 172200 126000 176400 metal3 +121800 172200 126000 176400 metal2 67200 113400 79800 117600 metal1 -138600 117600 142800 121800 metal1 -138600 117600 142800 130200 metal2 -138600 126000 142800 130200 metal1 -138600 126000 159600 130200 metal1 -155400 126000 159600 130200 metal1 -155400 126000 159600 138600 metal2 -155400 134400 159600 138600 metal1 -75600 113400 79800 117600 metal1 -75600 113400 79800 117600 metal2 -75600 113400 88200 117600 metal3 -84000 113400 88200 117600 metal2 84000 113400 88200 117600 metal1 84000 105000 88200 117600 metal2 84000 105000 88200 109200 metal1 84000 105000 92400 109200 metal1 88200 105000 92400 109200 metal1 -88200 92400 92400 109200 metal2 -88200 92400 92400 96600 metal1 -88200 92400 117600 96600 metal1 -113400 163800 117600 168000 metal2 -113400 163800 121800 168000 metal3 -117600 163800 121800 168000 metal2 -117600 163800 121800 172200 metal2 -117600 168000 121800 172200 metal2 -117600 168000 159600 172200 metal3 -155400 168000 159600 172200 metal2 -155400 147000 159600 172200 metal2 -155400 147000 159600 151200 metal2 -155400 147000 163800 151200 metal3 -159600 147000 163800 151200 metal2 -159600 134400 163800 151200 metal2 -159600 134400 163800 138600 metal1 +88200 100800 92400 109200 metal2 +88200 100800 92400 105000 metal1 +88200 100800 100800 105000 metal1 +96600 100800 100800 105000 metal1 +96600 96600 100800 105000 metal2 +96600 96600 100800 100800 metal1 +96600 96600 117600 100800 metal1 +113400 147000 121800 151200 metal1 155400 96600 159600 100800 metal1 -155400 96600 159600 100800 metal2 -155400 96600 172200 100800 metal3 -168000 96600 172200 100800 metal2 -168000 96600 172200 109200 metal2 -168000 105000 172200 109200 metal1 -163800 105000 172200 109200 metal1 -163800 105000 168000 109200 metal1 -163800 105000 168000 117600 metal2 -163800 113400 168000 117600 metal1 -163800 113400 172200 117600 metal1 -168000 113400 172200 117600 metal1 -168000 113400 172200 121800 metal2 -168000 117600 172200 121800 metal2 -168000 117600 176400 121800 metal3 -172200 117600 176400 121800 metal2 -172200 117600 176400 134400 metal2 -172200 130200 176400 134400 metal1 -163800 130200 176400 134400 metal1 -163800 130200 168000 134400 metal1 -163800 130200 168000 138600 metal2 -163800 134400 168000 138600 metal1 -159600 134400 168000 138600 metal1 -113400 147000 117600 168000 metal2 -113400 147000 117600 151200 metal1 +155400 96600 159600 105000 metal2 +155400 100800 159600 105000 metal1 +155400 100800 163800 105000 metal1 +159600 100800 163800 105000 metal1 +159600 100800 163800 142800 metal2 +159600 138600 163800 142800 metal1 +121800 172200 126000 180600 metal2 +121800 176400 126000 180600 metal1 +121800 176400 130200 180600 metal1 +126000 176400 130200 180600 metal1 +126000 176400 130200 184800 metal2 +126000 180600 130200 184800 metal1 +126000 180600 159600 184800 metal1 +155400 180600 159600 184800 metal1 +155400 159600 159600 184800 metal2 +155400 159600 159600 163800 metal2 +155400 159600 163800 163800 metal3 +159600 159600 163800 163800 metal2 +159600 138600 163800 163800 metal2 +138600 117600 142800 121800 metal1 +138600 117600 142800 130200 metal2 +138600 126000 142800 130200 metal1 +138600 126000 151200 130200 metal1 +147000 126000 151200 130200 metal1 +147000 126000 151200 138600 metal2 +147000 134400 151200 138600 metal1 +117600 147000 121800 151200 metal1 +117600 142800 121800 151200 metal2 +117600 142800 121800 147000 metal1 +113400 96600 117600 100800 metal1 +113400 92400 117600 100800 metal2 113400 92400 117600 96600 metal1 -113400 88200 117600 96600 metal2 -113400 88200 117600 92400 metal1 -113400 88200 121800 92400 metal1 +113400 92400 121800 96600 metal1 +117600 92400 121800 96600 metal1 +117600 88200 121800 96600 metal2 +117600 88200 121800 92400 metal1 +75600 113400 79800 117600 metal1 75600 113400 79800 126000 metal2 75600 121800 79800 126000 metal1 -147000 134400 159600 138600 metal1 -75600 121800 79800 151200 metal2 -75600 147000 79800 151200 metal1 -75600 147000 96600 151200 metal1 -92400 147000 96600 151200 metal1 -92400 147000 96600 159600 metal2 -92400 155400 96600 159600 metal2 -92400 155400 105000 159600 metal3 -100800 155400 105000 159600 metal2 -100800 155400 105000 163800 metal2 -100800 159600 105000 163800 metal2 -100800 159600 113400 163800 metal3 -109200 159600 113400 163800 metal2 -109200 159600 113400 168000 metal2 -109200 163800 113400 168000 metal2 -109200 163800 117600 168000 metal3 -113400 142800 117600 151200 metal2 -113400 142800 117600 147000 metal2 -113400 142800 121800 147000 metal3 -117600 142800 121800 147000 metal2 -117600 142800 121800 147000 metal1 -113400 92400 117600 100800 metal1 +147000 134400 151200 142800 metal2 +147000 138600 151200 142800 metal1 +147000 138600 163800 142800 metal1 +75600 113400 88200 117600 metal1 +117600 147000 126000 151200 metal1 +121800 147000 126000 151200 metal1 +121800 147000 126000 176400 metal2 ) _161_ ( 75600 117600 79800 121800 metal1 -75600 117600 79800 121800 metal2 -75600 117600 84000 121800 metal3 -79800 117600 84000 121800 metal2 -79800 117600 84000 126000 metal2 -79800 121800 84000 126000 metal1 +75600 117600 79800 126000 metal2 +75600 121800 79800 126000 metal1 +75600 121800 84000 126000 metal1 ) _162_ ( 63000 117600 67200 121800 metal1 -63000 117600 67200 130200 metal2 -63000 126000 67200 130200 metal2 -63000 126000 71400 130200 metal3 -67200 126000 71400 130200 metal2 -67200 121800 71400 130200 metal2 +63000 117600 67200 126000 metal2 +63000 121800 67200 126000 metal2 +63000 121800 71400 126000 metal3 +67200 121800 71400 126000 metal2 67200 121800 71400 126000 metal1 ) _163_ @@ -2023,130 +2002,116 @@ _164_ ) _165_ ( -134400 79800 138600 84000 metal2 -134400 79800 142800 84000 metal3 -138600 79800 142800 84000 metal2 +88200 105000 96600 109200 metal1 +92400 105000 96600 109200 metal1 +92400 105000 96600 113400 metal2 +92400 109200 96600 113400 metal1 +138600 75600 142800 79800 metal1 +138600 75600 142800 84000 metal2 138600 79800 142800 84000 metal1 -109200 88200 113400 96600 metal2 +113400 134400 138600 138600 metal1 +92400 109200 113400 113400 metal1 +109200 109200 113400 113400 metal1 +109200 100800 113400 113400 metal2 +109200 100800 113400 105000 metal1 +138600 63000 142800 79800 metal2 +138600 63000 142800 67200 metal1 +138600 63000 155400 67200 metal1 +151200 63000 155400 67200 metal1 +151200 63000 155400 71400 metal2 +151200 67200 155400 71400 metal1 +151200 67200 159600 71400 metal1 +155400 67200 159600 71400 metal1 +155400 67200 159600 75600 metal2 +155400 71400 159600 75600 metal1 +155400 71400 168000 75600 metal1 +163800 71400 168000 75600 metal1 +163800 71400 168000 100800 metal2 +163800 96600 168000 100800 metal2 +163800 96600 172200 100800 metal3 +168000 96600 172200 100800 metal2 +168000 96600 172200 105000 metal2 +168000 100800 172200 105000 metal1 +163800 100800 172200 105000 metal1 +163800 100800 168000 105000 metal1 +163800 100800 168000 117600 metal2 +163800 113400 168000 117600 metal1 +142800 151200 155400 155400 metal1 +151200 151200 155400 155400 metal1 +151200 147000 155400 155400 metal2 +151200 147000 155400 151200 metal2 +151200 147000 180600 151200 metal3 +176400 147000 180600 151200 metal2 +176400 121800 180600 151200 metal2 +176400 121800 180600 126000 metal1 +172200 121800 180600 126000 metal1 +172200 121800 176400 126000 metal1 +172200 117600 176400 126000 metal2 +172200 117600 176400 121800 metal1 +168000 117600 176400 121800 metal1 +168000 117600 172200 121800 metal1 +168000 113400 172200 121800 metal2 +168000 113400 172200 117600 metal1 +163800 113400 172200 117600 metal1 +138600 79800 142800 88200 metal2 +138600 84000 142800 88200 metal1 +113400 84000 142800 88200 metal1 +92400 113400 96600 117600 metal1 +92400 109200 96600 117600 metal2 +88200 134400 92400 138600 metal1 +88200 134400 92400 151200 metal2 +88200 147000 92400 151200 metal2 +88200 147000 96600 151200 metal3 +92400 147000 96600 151200 metal2 +92400 147000 96600 155400 metal2 +92400 151200 96600 155400 metal1 +92400 151200 100800 155400 metal1 +96600 151200 100800 155400 metal1 +96600 151200 100800 168000 metal2 +96600 163800 100800 168000 metal2 +96600 163800 121800 168000 metal3 +117600 163800 121800 168000 metal2 +117600 159600 121800 168000 metal2 +117600 159600 121800 163800 metal2 +117600 159600 147000 163800 metal3 +142800 159600 147000 163800 metal2 +142800 151200 147000 163800 metal2 +142800 151200 147000 155400 metal1 +134400 134400 138600 138600 metal1 +134400 130200 138600 138600 metal2 +134400 130200 138600 134400 metal2 +134400 130200 147000 134400 metal3 +142800 130200 147000 134400 metal2 +142800 130200 147000 138600 metal2 +142800 134400 147000 138600 metal1 +147000 117600 151200 121800 metal1 +147000 117600 151200 121800 metal2 +147000 117600 155400 121800 metal3 +151200 117600 155400 121800 metal2 +151200 113400 155400 121800 metal2 +151200 113400 155400 117600 metal1 +151200 113400 168000 117600 metal1 +109200 88200 113400 105000 metal2 109200 88200 113400 92400 metal1 109200 88200 117600 92400 metal1 -134400 75600 138600 84000 metal2 -134400 75600 138600 79800 metal1 -147000 117600 151200 121800 metal1 -147000 117600 151200 138600 metal2 -88200 134400 92400 138600 metal1 -88200 134400 92400 147000 metal2 -88200 142800 92400 147000 metal1 113400 88200 117600 92400 metal1 -113400 88200 117600 92400 metal2 -113400 88200 130200 92400 metal3 -126000 88200 130200 92400 metal2 -126000 84000 130200 92400 metal2 -126000 84000 130200 88200 metal2 -126000 84000 138600 88200 metal3 -134400 84000 138600 88200 metal2 -134400 79800 138600 88200 metal2 -134400 75600 142800 79800 metal1 -92400 105000 100800 109200 metal1 -96600 105000 100800 109200 metal1 -96600 92400 100800 109200 metal2 -96600 92400 100800 96600 metal2 -96600 92400 113400 96600 metal3 -109200 92400 113400 96600 metal2 -134400 71400 138600 79800 metal2 -134400 71400 138600 75600 metal2 -134400 71400 180600 75600 metal3 -176400 71400 180600 75600 metal2 -176400 71400 180600 79800 metal2 -176400 75600 180600 79800 metal2 -176400 75600 184800 79800 metal3 -180600 75600 184800 79800 metal2 -180600 75600 184800 92400 metal2 -180600 88200 184800 92400 metal2 -176400 88200 184800 92400 metal3 -176400 88200 180600 92400 metal2 -176400 88200 180600 100800 metal2 -176400 96600 180600 100800 metal2 -176400 96600 189000 100800 metal3 -184800 96600 189000 100800 metal2 -184800 96600 189000 117600 metal2 -184800 113400 189000 117600 metal1 -180600 113400 189000 117600 metal1 -180600 113400 184800 117600 metal1 -180600 113400 184800 126000 metal2 -180600 121800 184800 126000 metal2 -180600 121800 189000 126000 metal3 -184800 121800 189000 126000 metal2 -184800 121800 189000 147000 metal2 -184800 142800 189000 147000 metal2 -168000 142800 189000 147000 metal3 -168000 142800 172200 147000 metal2 -168000 142800 172200 151200 metal2 -168000 147000 172200 151200 metal2 -163800 147000 172200 151200 metal3 -163800 147000 168000 151200 metal2 -163800 142800 168000 151200 metal2 -163800 142800 168000 147000 metal2 -151200 142800 168000 147000 metal3 -151200 142800 155400 147000 metal2 -88200 142800 92400 155400 metal2 -88200 151200 92400 155400 metal2 -88200 151200 96600 155400 metal3 -92400 151200 96600 155400 metal2 -92400 151200 96600 176400 metal2 -92400 172200 96600 176400 metal2 -92400 172200 109200 176400 metal3 -105000 172200 109200 176400 metal2 -105000 172200 109200 184800 metal2 -105000 180600 109200 184800 metal1 -105000 180600 126000 184800 metal1 -121800 180600 126000 184800 metal1 -121800 176400 126000 184800 metal2 -121800 176400 126000 180600 metal2 -121800 176400 151200 180600 metal3 -147000 176400 151200 180600 metal2 -147000 172200 151200 180600 metal2 -147000 172200 151200 176400 metal1 -147000 172200 155400 176400 metal1 -151200 172200 155400 176400 metal1 -151200 142800 155400 176400 metal2 -92400 105000 96600 109200 metal1 -92400 105000 96600 117600 metal2 -92400 113400 96600 117600 metal1 -142800 134400 147000 138600 metal1 -142800 134400 147000 138600 metal2 -134400 134400 147000 138600 metal3 -134400 134400 138600 138600 metal2 -134400 134400 138600 138600 metal1 -147000 134400 151200 147000 metal2 -147000 142800 151200 147000 metal2 -147000 142800 155400 147000 metal3 -142800 134400 151200 138600 metal3 -147000 134400 151200 138600 metal2 -88200 142800 117600 147000 metal1 -113400 142800 117600 147000 metal1 -113400 134400 117600 147000 metal2 -113400 134400 117600 138600 metal1 -88200 105000 96600 109200 metal1 -109200 92400 113400 105000 metal2 -109200 100800 113400 105000 metal1 113400 84000 117600 92400 metal2 113400 84000 117600 88200 metal1 +142800 134400 147000 155400 metal2 ) _166_ ( -138600 126000 147000 130200 metal1 -142800 126000 147000 130200 metal1 -142800 126000 147000 138600 metal2 +138600 126000 142800 130200 metal1 +138600 126000 142800 134400 metal2 +138600 130200 142800 134400 metal1 +138600 130200 147000 134400 metal1 +142800 130200 147000 134400 metal1 +142800 130200 147000 138600 metal2 142800 134400 147000 138600 metal1 ) _167_ ( -100800 84000 105000 88200 metal1 -100800 84000 105000 88200 metal2 -100800 84000 109200 88200 metal3 -105000 84000 109200 88200 metal2 -105000 84000 109200 88200 metal1 +100800 84000 109200 88200 metal1 ) _168_ ( @@ -2159,7 +2124,8 @@ _168_ ) _169_ ( -126000 100800 130200 113400 metal2 +130200 96600 134400 109200 metal2 +130200 96600 134400 100800 metal1 121800 100800 126000 105000 metal1 121800 100800 126000 105000 metal2 121800 100800 130200 105000 metal3 @@ -2169,13 +2135,12 @@ _169_ 130200 105000 138600 109200 metal3 134400 105000 138600 109200 metal2 134400 105000 138600 109200 metal1 +126000 100800 130200 113400 metal2 126000 109200 130200 113400 metal1 126000 109200 130200 113400 metal2 126000 109200 134400 113400 metal3 130200 109200 134400 113400 metal2 130200 105000 134400 113400 metal2 -130200 96600 134400 100800 metal1 -130200 96600 134400 109200 metal2 ) _170_ ( @@ -2187,20 +2152,18 @@ _170_ ) _171_ ( -130200 100800 134400 105000 metal1 +113400 100800 117600 105000 metal1 +113400 100800 117600 105000 metal2 +113400 100800 134400 105000 metal3 130200 100800 134400 105000 metal2 +130200 100800 134400 105000 metal1 +113400 100800 117600 113400 metal2 +113400 109200 117600 113400 metal1 130200 100800 142800 105000 metal3 138600 100800 142800 105000 metal2 138600 100800 142800 105000 metal1 -113400 100800 117600 105000 metal1 -113400 100800 117600 113400 metal2 -113400 109200 117600 113400 metal1 -113400 96600 117600 105000 metal2 -113400 96600 117600 100800 metal2 -113400 96600 134400 100800 metal3 -130200 96600 134400 100800 metal2 -130200 96600 134400 100800 metal1 130200 96600 134400 105000 metal2 +130200 96600 134400 100800 metal1 ) _172_ ( @@ -2216,18 +2179,14 @@ _173_ ( 105000 126000 109200 130200 metal1 105000 126000 109200 130200 metal2 -105000 126000 113400 130200 metal3 -109200 126000 113400 130200 metal2 -109200 130200 113400 134400 metal2 -109200 130200 117600 134400 metal3 -113400 130200 117600 134400 metal2 -113400 130200 117600 134400 metal1 -109200 126000 117600 130200 metal3 +105000 126000 117600 130200 metal3 113400 126000 117600 130200 metal2 113400 126000 117600 130200 metal1 -109200 130200 113400 138600 metal2 -109200 134400 113400 138600 metal1 -109200 126000 113400 134400 metal2 +109200 134400 117600 138600 metal1 +113400 134400 117600 138600 metal1 +113400 130200 117600 138600 metal2 +113400 130200 117600 134400 metal1 +113400 126000 117600 134400 metal2 ) _174_ ( @@ -2236,13 +2195,14 @@ _174_ 105000 113400 109200 117600 metal2 105000 113400 113400 117600 metal3 109200 113400 113400 117600 metal2 -109200 113400 113400 117600 metal1 100800 100800 109200 105000 metal1 109200 126000 117600 130200 metal1 109200 126000 113400 130200 metal1 109200 113400 113400 130200 metal2 105000 100800 113400 105000 metal1 -109200 113400 117600 117600 metal1 +109200 113400 117600 117600 metal3 +113400 113400 117600 117600 metal2 +113400 113400 117600 117600 metal1 ) _175_ ( @@ -2259,12 +2219,12 @@ _175_ 142800 96600 151200 100800 metal3 147000 96600 151200 100800 metal2 147000 96600 151200 100800 metal1 -142800 92400 147000 100800 metal2 147000 96600 151200 105000 metal2 147000 100800 151200 105000 metal2 147000 100800 155400 105000 metal3 151200 100800 155400 105000 metal2 151200 100800 155400 105000 metal1 +142800 92400 147000 100800 metal2 ) _176_ ( @@ -2279,32 +2239,36 @@ _176_ _177_ ( 109200 100800 117600 105000 metal1 -117600 109200 121800 113400 metal1 +117600 100800 121800 105000 metal1 117600 100800 121800 113400 metal2 -113400 100800 117600 105000 metal1 -113400 100800 117600 105000 metal2 -113400 100800 121800 105000 metal3 -117600 100800 121800 105000 metal2 -138600 92400 142800 100800 metal2 -138600 92400 142800 96600 metal1 +117600 109200 121800 113400 metal1 +113400 100800 121800 105000 metal1 +134400 92400 138600 100800 metal2 +117600 100800 126000 105000 metal1 +121800 100800 126000 105000 metal1 +121800 96600 126000 105000 metal2 +121800 96600 126000 100800 metal1 +121800 96600 130200 100800 metal1 +126000 96600 130200 100800 metal1 +126000 92400 130200 100800 metal2 +126000 92400 130200 96600 metal2 +126000 92400 138600 96600 metal3 +134400 92400 138600 96600 metal2 +134400 92400 138600 96600 metal1 134400 96600 138600 100800 metal1 134400 96600 138600 100800 metal2 134400 96600 142800 100800 metal3 138600 96600 142800 100800 metal2 138600 96600 142800 100800 metal1 -117600 100800 126000 105000 metal3 -121800 100800 126000 105000 metal2 -121800 96600 126000 105000 metal2 -121800 96600 126000 100800 metal2 -121800 96600 138600 100800 metal3 +134400 92400 142800 96600 metal1 ) _178_ ( 105000 113400 109200 117600 metal1 -105000 105000 109200 117600 metal2 -105000 105000 109200 109200 metal2 -105000 105000 113400 109200 metal3 -109200 105000 113400 109200 metal2 +105000 113400 109200 117600 metal2 +105000 113400 113400 117600 metal3 +109200 113400 113400 117600 metal2 +109200 105000 113400 117600 metal2 109200 105000 113400 109200 metal1 ) _179_ @@ -2314,12 +2278,7 @@ _179_ 92400 113400 105000 117600 metal3 100800 113400 105000 117600 metal2 100800 113400 105000 117600 metal1 -100800 109200 105000 117600 metal2 -100800 109200 105000 113400 metal2 -100800 109200 109200 113400 metal3 -105000 109200 109200 113400 metal2 -105000 109200 109200 117600 metal2 -105000 113400 109200 117600 metal1 +100800 113400 109200 117600 metal1 ) _180_ ( @@ -2430,14 +2389,14 @@ _192_ ) _193_ ( -121800 96600 126000 100800 metal1 121800 96600 126000 105000 metal2 121800 100800 126000 105000 metal1 117600 92400 121800 96600 metal1 -117600 92400 121800 96600 metal2 -117600 92400 126000 96600 metal3 -121800 92400 126000 96600 metal2 -121800 92400 126000 100800 metal2 +117600 92400 121800 100800 metal2 +117600 96600 121800 100800 metal2 +117600 96600 126000 100800 metal3 +121800 96600 126000 100800 metal2 +121800 96600 126000 100800 metal1 ) _194_ ( @@ -2478,24 +2437,23 @@ _199_ ( 105000 96600 109200 100800 metal1 105000 96600 109200 100800 metal2 -105000 96600 113400 100800 metal3 -109200 96600 113400 100800 metal2 -109200 96600 113400 109200 metal2 -109200 105000 113400 109200 metal1 -109200 105000 117600 109200 metal1 +105000 96600 117600 100800 metal3 +113400 96600 117600 100800 metal2 +113400 96600 117600 109200 metal2 +113400 105000 117600 109200 metal1 ) _200_ ( -75600 67200 79800 71400 metal1 -75600 67200 79800 71400 metal2 -75600 67200 84000 71400 metal3 -79800 67200 84000 71400 metal2 +75600 67200 84000 71400 metal1 +79800 67200 84000 71400 metal1 79800 67200 84000 75600 metal2 79800 71400 84000 75600 metal1 71400 71400 75600 75600 metal1 71400 67200 75600 75600 metal2 71400 67200 75600 71400 metal2 71400 67200 79800 71400 metal3 +75600 67200 79800 71400 metal2 +75600 67200 79800 71400 metal1 79800 71400 84000 79800 metal2 79800 75600 84000 79800 metal1 ) @@ -2531,17 +2489,16 @@ _202_ ) _203_ ( -75600 84000 79800 88200 metal1 -75600 84000 79800 88200 metal2 -75600 84000 84000 88200 metal3 -79800 84000 84000 88200 metal2 -79800 84000 84000 88200 metal1 -71400 79800 75600 88200 metal2 -71400 84000 75600 88200 metal1 +75600 84000 84000 88200 metal1 +67200 79800 71400 88200 metal2 +67200 84000 71400 88200 metal1 +67200 84000 75600 88200 metal1 71400 84000 79800 88200 metal1 63000 79800 67200 84000 metal1 63000 79800 67200 84000 metal2 -63000 79800 75600 84000 metal3 +63000 79800 71400 84000 metal3 +67200 79800 71400 84000 metal2 +67200 79800 75600 84000 metal3 71400 79800 75600 84000 metal2 71400 79800 75600 84000 metal1 ) @@ -2557,55 +2514,52 @@ _204_ 75600 88200 84000 92400 metal3 79800 88200 84000 92400 metal2 79800 84000 84000 92400 metal2 -79800 84000 84000 88200 metal1 75600 88200 79800 96600 metal2 -75600 84000 84000 88200 metal1 +79800 84000 84000 88200 metal1 +79800 84000 84000 88200 metal2 +75600 84000 84000 88200 metal3 +75600 84000 79800 88200 metal2 +75600 84000 79800 88200 metal1 ) _205_ ( -88200 88200 92400 96600 metal2 -88200 92400 92400 96600 metal2 -88200 92400 105000 96600 metal3 -100800 92400 105000 96600 metal2 -100800 92400 105000 100800 metal2 +88200 88200 92400 92400 metal1 +88200 88200 92400 92400 metal2 +88200 88200 105000 92400 metal3 +100800 88200 105000 92400 metal2 +100800 88200 105000 100800 metal2 100800 96600 105000 100800 metal1 -100800 96600 105000 105000 metal2 -100800 100800 105000 105000 metal1 -100800 100800 109200 105000 metal1 +100800 96600 109200 100800 metal1 +105000 96600 109200 100800 metal1 +105000 96600 109200 105000 metal2 +105000 100800 109200 105000 metal1 79800 88200 84000 92400 metal1 79800 88200 84000 92400 metal2 79800 88200 92400 92400 metal3 -88200 88200 92400 92400 metal2 -88200 88200 92400 92400 metal1 ) _206_ ( -84000 50400 92400 54600 metal1 -88200 50400 92400 54600 metal1 -88200 50400 92400 58800 metal2 -88200 54600 92400 58800 metal2 -88200 54600 96600 58800 metal3 +84000 54600 88200 58800 metal2 +84000 54600 96600 58800 metal3 92400 54600 96600 58800 metal2 92400 54600 96600 58800 metal1 +84000 50400 88200 58800 metal2 +84000 50400 88200 54600 metal1 79800 54600 84000 58800 metal1 -79800 50400 84000 58800 metal2 -79800 50400 84000 54600 metal1 -79800 50400 88200 54600 metal1 +79800 54600 84000 58800 metal2 +79800 54600 88200 58800 metal3 ) _207_ ( -88200 58800 92400 67200 metal2 88200 63000 92400 67200 metal1 -92400 58800 96600 63000 metal2 -92400 58800 100800 63000 metal3 -96600 58800 100800 63000 metal2 -96600 58800 100800 71400 metal2 -96600 67200 100800 71400 metal1 -88200 58800 96600 63000 metal3 -88200 58800 92400 63000 metal2 +88200 63000 92400 71400 metal2 +88200 67200 92400 71400 metal1 +88200 67200 100800 71400 metal1 88200 58800 92400 63000 metal1 -92400 54600 96600 63000 metal2 -92400 54600 96600 58800 metal1 +88200 58800 92400 67200 metal2 +88200 54600 92400 63000 metal2 +88200 54600 92400 58800 metal1 +88200 54600 96600 58800 metal1 ) _208_ ( @@ -2622,30 +2576,26 @@ _208_ ) _209_ ( -96600 42000 100800 50400 metal2 +96600 37800 105000 42000 metal1 +92400 42000 96600 46200 metal1 +92400 42000 96600 50400 metal2 +92400 46200 96600 50400 metal2 +92400 46200 100800 50400 metal3 +96600 46200 100800 50400 metal2 96600 46200 100800 50400 metal1 +96600 37800 100800 50400 metal2 96600 37800 100800 42000 metal1 -96600 37800 100800 42000 metal2 -96600 37800 105000 42000 metal3 -100800 37800 105000 42000 metal2 -100800 37800 105000 42000 metal1 -92400 42000 96600 46200 metal1 -92400 42000 96600 46200 metal2 -92400 42000 100800 46200 metal3 -96600 42000 100800 46200 metal2 -96600 37800 100800 46200 metal2 ) _210_ ( -92400 54600 100800 58800 metal1 -92400 54600 96600 58800 metal1 -92400 50400 96600 58800 metal2 +96600 54600 100800 58800 metal1 +96600 50400 100800 58800 metal2 92400 50400 96600 54600 metal1 -92400 46200 96600 54600 metal2 -92400 46200 96600 50400 metal2 -92400 46200 100800 50400 metal3 -96600 46200 100800 50400 metal2 +92400 50400 96600 54600 metal2 +92400 50400 100800 54600 metal3 +96600 50400 100800 54600 metal2 96600 46200 100800 50400 metal1 +96600 46200 100800 54600 metal2 ) _211_ ( @@ -2662,9 +2612,8 @@ _212_ ( 96600 46200 100800 50400 metal1 96600 46200 100800 54600 metal2 -92400 50400 96600 54600 metal1 -92400 50400 96600 54600 metal2 -92400 50400 100800 54600 metal3 +92400 50400 100800 54600 metal1 +96600 50400 100800 54600 metal1 96600 50400 100800 54600 metal2 96600 50400 105000 54600 metal3 100800 50400 105000 54600 metal2 @@ -2676,32 +2625,31 @@ _213_ ( 105000 96600 109200 100800 metal1 105000 88200 109200 100800 metal2 -105000 88200 109200 92400 metal1 92400 84000 100800 88200 metal1 96600 84000 100800 88200 metal1 96600 84000 100800 92400 metal2 -96600 88200 100800 92400 metal1 -96600 88200 109200 92400 metal1 +96600 88200 100800 92400 metal2 +96600 88200 109200 92400 metal3 +105000 88200 109200 92400 metal2 105000 96600 109200 105000 metal2 105000 100800 109200 105000 metal1 -96600 54600 100800 58800 metal1 -96600 54600 100800 63000 metal2 -96600 58800 100800 63000 metal1 -96600 58800 105000 63000 metal1 -100800 58800 105000 63000 metal1 -100800 58800 105000 67200 metal2 -100800 63000 105000 67200 metal1 -100800 63000 109200 67200 metal1 -105000 63000 109200 67200 metal1 -105000 63000 109200 92400 metal2 +96600 54600 109200 58800 metal1 +105000 54600 109200 58800 metal1 +105000 54600 109200 63000 metal2 +105000 58800 109200 63000 metal2 +105000 58800 113400 63000 metal3 +109200 58800 113400 63000 metal2 +109200 58800 113400 92400 metal2 +109200 88200 113400 92400 metal2 +105000 88200 113400 92400 metal3 ) _214_ ( 100800 96600 105000 100800 metal1 -100800 92400 105000 100800 metal2 -100800 92400 105000 96600 metal2 -100800 92400 109200 96600 metal3 -105000 92400 109200 96600 metal2 +100800 96600 105000 100800 metal2 +100800 96600 109200 100800 metal3 +105000 96600 109200 100800 metal2 +105000 92400 109200 100800 metal2 105000 92400 109200 96600 metal1 ) _215_ @@ -2732,14 +2680,15 @@ _217_ ) _218_ ( -67200 75600 71400 84000 metal2 -67200 79800 71400 84000 metal1 -67200 79800 75600 84000 metal1 +67200 75600 71400 79800 metal1 +67200 75600 71400 79800 metal2 +67200 75600 75600 79800 metal3 +71400 75600 75600 79800 metal2 +71400 75600 75600 84000 metal2 +71400 79800 75600 84000 metal1 63000 75600 67200 79800 metal1 63000 75600 67200 79800 metal2 63000 75600 71400 79800 metal3 -67200 75600 71400 79800 metal2 -67200 75600 71400 79800 metal1 ) _219_ ( @@ -2752,33 +2701,42 @@ _219_ ) _220_ ( -75600 75600 96600 79800 metal1 -92400 75600 96600 79800 metal1 -92400 75600 96600 84000 metal2 +75600 75600 84000 79800 metal1 +79800 75600 84000 79800 metal1 +79800 75600 84000 84000 metal2 +79800 79800 84000 84000 metal2 +79800 79800 96600 84000 metal3 +92400 79800 96600 84000 metal2 92400 79800 96600 84000 metal1 ) _221_ ( -92400 67200 96600 71400 metal1 -92400 63000 96600 71400 metal2 -92400 63000 96600 67200 metal1 -92400 63000 117600 67200 metal1 -113400 63000 117600 67200 metal1 -113400 63000 117600 71400 metal2 -113400 67200 117600 71400 metal1 -88200 67200 96600 71400 metal1 -113400 67200 121800 71400 metal1 +92400 63000 96600 67200 metal2 +92400 63000 113400 67200 metal3 +109200 63000 113400 67200 metal2 +109200 63000 113400 71400 metal2 +109200 67200 113400 71400 metal1 +109200 67200 121800 71400 metal1 +88200 67200 92400 71400 metal1 +88200 63000 92400 71400 metal2 +88200 63000 92400 67200 metal2 +88200 63000 96600 67200 metal3 +92400 63000 96600 75600 metal2 92400 71400 96600 75600 metal1 -92400 67200 96600 75600 metal2 -113400 67200 117600 75600 metal2 -113400 71400 117600 75600 metal2 -113400 71400 121800 75600 metal3 -117600 71400 121800 75600 metal2 +117600 67200 121800 71400 metal1 +117600 67200 121800 75600 metal2 117600 71400 121800 75600 metal1 ) _222_ ( -92400 71400 96600 84000 metal2 +92400 71400 96600 79800 metal2 +92400 75600 96600 79800 metal2 +92400 75600 100800 79800 metal3 +96600 75600 100800 79800 metal2 +96600 75600 100800 84000 metal2 +96600 79800 100800 84000 metal2 +92400 79800 100800 84000 metal3 +92400 79800 96600 84000 metal2 92400 79800 96600 84000 metal1 88200 71400 92400 75600 metal1 88200 71400 92400 75600 metal2 @@ -2818,39 +2776,38 @@ _226_ ) _227_ ( +84000 58800 88200 63000 metal1 84000 58800 88200 67200 metal2 84000 63000 88200 67200 metal2 84000 63000 92400 67200 metal3 88200 63000 92400 67200 metal2 -88200 63000 92400 67200 metal1 -79800 54600 84000 58800 metal1 -79800 54600 84000 63000 metal2 -79800 58800 84000 63000 metal2 -79800 58800 88200 63000 metal3 -84000 58800 88200 63000 metal2 -84000 58800 88200 63000 metal1 +88200 63000 92400 67200 metal1 +79800 54600 88200 58800 metal1 +84000 54600 88200 58800 metal1 +84000 54600 88200 63000 metal2 ) _228_ ( -84000 58800 92400 63000 metal1 -84000 58800 88200 63000 metal1 -84000 58800 88200 88200 metal2 -84000 84000 88200 88200 metal2 -84000 84000 96600 88200 metal3 -92400 84000 96600 88200 metal2 -92400 84000 96600 92400 metal2 -92400 88200 96600 92400 metal1 +88200 58800 92400 63000 metal1 +88200 58800 92400 67200 metal2 +88200 63000 92400 67200 metal1 +84000 63000 92400 67200 metal1 +84000 63000 88200 67200 metal1 +84000 63000 88200 92400 metal2 +84000 88200 88200 92400 metal1 +84000 88200 96600 92400 metal1 ) _229_ ( +96600 100800 100800 109200 metal2 +96600 105000 100800 109200 metal1 96600 105000 105000 109200 metal1 92400 100800 96600 105000 metal1 -92400 100800 96600 109200 metal2 -92400 105000 96600 109200 metal1 -92400 105000 100800 109200 metal1 -96600 105000 100800 109200 metal1 -96600 88200 100800 109200 metal2 +92400 100800 96600 105000 metal2 +92400 100800 100800 105000 metal3 +96600 100800 100800 105000 metal2 96600 88200 100800 92400 metal1 +96600 88200 100800 105000 metal2 ) _230_ ( @@ -2899,13 +2856,17 @@ _234_ ) _235_ ( -100800 105000 105000 109200 metal1 -100800 100800 105000 109200 metal2 -92400 100800 96600 105000 metal1 -92400 100800 96600 105000 metal2 -92400 100800 105000 105000 metal3 -100800 100800 105000 105000 metal2 -100800 58800 105000 105000 metal2 +96600 100800 100800 105000 metal1 +96600 100800 100800 109200 metal2 +96600 105000 100800 109200 metal1 +96600 105000 105000 109200 metal1 +92400 100800 100800 105000 metal1 +96600 79800 100800 105000 metal2 +96600 79800 100800 84000 metal1 +96600 75600 100800 84000 metal1 +96600 75600 100800 79800 metal1 +96600 75600 105000 79800 metal2 +100800 58800 105000 79800 metal2 100800 58800 105000 63000 metal1 ) _236_ @@ -2913,23 +2874,19 @@ _236_ 100800 105000 105000 109200 metal1 100800 105000 105000 113400 metal2 100800 109200 105000 113400 metal1 -100800 109200 109200 113400 metal1 -105000 109200 109200 113400 metal1 -105000 109200 109200 117600 metal2 -105000 113400 109200 117600 metal1 -105000 113400 117600 117600 metal1 -113400 113400 117600 117600 metal1 -113400 113400 117600 121800 metal2 +100800 109200 117600 113400 metal1 +113400 109200 117600 113400 metal1 +113400 109200 117600 121800 metal2 113400 117600 117600 121800 metal1 113400 117600 126000 121800 metal1 121800 117600 126000 121800 metal1 121800 117600 126000 126000 metal2 121800 121800 126000 126000 metal2 -121800 121800 138600 126000 metal3 -134400 121800 138600 126000 metal2 -134400 121800 138600 130200 metal2 -134400 126000 138600 130200 metal1 -134400 126000 147000 130200 metal1 +121800 121800 134400 126000 metal3 +130200 121800 134400 126000 metal2 +130200 121800 134400 130200 metal2 +130200 126000 134400 130200 metal1 +130200 126000 147000 130200 metal1 ) _237_ ( @@ -2952,16 +2909,18 @@ _238_ ) _239_ ( -100800 117600 105000 121800 metal1 100800 109200 105000 121800 metal2 100800 109200 105000 113400 metal1 -96600 117600 100800 121800 metal1 96600 117600 100800 126000 metal2 96600 121800 100800 126000 metal2 96600 121800 105000 126000 metal3 100800 121800 105000 126000 metal2 100800 121800 105000 126000 metal1 -96600 117600 105000 121800 metal1 +96600 117600 100800 121800 metal1 +96600 117600 100800 121800 metal2 +96600 117600 105000 121800 metal3 +100800 117600 105000 121800 metal2 +100800 117600 105000 121800 metal1 ) _240_ ( @@ -2990,10 +2949,10 @@ _242_ _243_ ( 84000 96600 88200 100800 metal1 -84000 96600 88200 105000 metal2 -84000 100800 88200 105000 metal2 -84000 100800 92400 105000 metal3 -88200 100800 92400 105000 metal2 +84000 96600 88200 100800 metal2 +84000 96600 92400 100800 metal3 +88200 96600 92400 100800 metal2 +88200 96600 92400 105000 metal2 88200 100800 92400 105000 metal1 ) _244_ @@ -3003,115 +2962,55 @@ _244_ 88200 96600 105000 100800 metal3 100800 96600 105000 100800 metal2 100800 96600 105000 100800 metal1 -71400 92400 88200 96600 metal1 +71400 88200 84000 92400 metal1 +79800 88200 84000 92400 metal1 +79800 88200 88200 92400 metal2 +84000 88200 88200 96600 metal2 84000 92400 88200 96600 metal1 -84000 92400 92400 96600 metal2 -88200 92400 92400 100800 metal2 -63000 92400 75600 96600 metal1 -96600 33600 105000 37800 metal1 -100800 33600 105000 37800 metal1 -100800 33600 109200 37800 metal2 -105000 33600 109200 46200 metal2 -105000 42000 109200 46200 metal1 -50400 46200 54600 50400 metal2 -46200 46200 54600 50400 metal3 -46200 46200 50400 50400 metal2 -46200 46200 50400 71400 metal2 -46200 67200 50400 71400 metal2 -42000 67200 50400 71400 metal3 -42000 67200 46200 71400 metal2 -42000 67200 46200 79800 metal2 -42000 75600 46200 79800 metal1 -42000 75600 46200 84000 metal1 -42000 79800 46200 84000 metal1 -42000 79800 50400 84000 metal2 -46200 79800 50400 92400 metal2 -46200 88200 50400 92400 metal2 -46200 88200 50400 96600 metal3 -46200 92400 67200 96600 metal3 -63000 92400 67200 96600 metal2 -63000 92400 67200 96600 metal1 -63000 46200 67200 50400 metal2 -63000 46200 71400 50400 metal3 -67200 46200 71400 50400 metal2 -67200 46200 71400 50400 metal1 -88200 37800 92400 42000 metal1 -88200 37800 92400 42000 metal2 -88200 37800 100800 42000 metal3 -96600 37800 100800 42000 metal2 -96600 33600 100800 42000 metal2 -96600 33600 100800 37800 metal1 -63000 46200 67200 63000 metal2 +84000 92400 88200 100800 metal1 +84000 96600 92400 100800 metal1 +67200 84000 71400 88200 metal1 +67200 84000 71400 92400 metal2 +67200 88200 71400 92400 metal1 +67200 88200 75600 92400 metal1 63000 58800 67200 63000 metal1 -50400 21000 54600 50400 metal2 -50400 21000 54600 25200 metal1 -50400 21000 71400 25200 metal1 -67200 21000 71400 25200 metal1 -67200 21000 71400 29400 metal2 -67200 25200 71400 29400 metal2 -67200 25200 100800 29400 metal3 -96600 25200 100800 29400 metal2 -96600 25200 100800 37800 metal2 -63000 84000 67200 96600 metal2 -63000 84000 67200 88200 metal1 -50400 46200 67200 50400 metal3 -71400 92400 75600 96600 metal1 -71400 92400 75600 100800 metal2 +63000 58800 67200 75600 metal2 +63000 71400 67200 75600 metal1 +63000 71400 71400 75600 metal1 +67200 71400 71400 75600 metal1 +67200 71400 71400 88200 metal2 +88200 42000 109200 46200 metal1 +88200 42000 92400 46200 metal1 +88200 37800 92400 46200 metal2 +88200 37800 92400 42000 metal1 +67200 46200 71400 50400 metal1 +67200 46200 71400 50400 metal2 +67200 46200 88200 50400 metal3 +84000 46200 88200 50400 metal2 +84000 42000 88200 50400 metal2 +84000 42000 88200 46200 metal1 +84000 42000 92400 46200 metal1 +63000 58800 71400 63000 metal1 +67200 58800 71400 63000 metal1 +67200 46200 71400 63000 metal2 +63000 84000 71400 88200 metal1 +71400 88200 75600 92400 metal1 +71400 88200 75600 100800 metal2 71400 96600 75600 100800 metal1 ) _245_ ( -96600 134400 105000 138600 metal1 -96600 134400 100800 138600 metal1 -96600 134400 100800 151200 metal2 -96600 147000 100800 151200 metal2 -96600 147000 109200 151200 metal3 -105000 147000 109200 151200 metal2 -105000 147000 109200 193200 metal2 -105000 189000 109200 193200 metal2 -105000 189000 121800 193200 metal3 -117600 189000 121800 193200 metal2 -117600 189000 121800 197400 metal2 -117600 193200 121800 197400 metal2 -117600 193200 147000 197400 metal3 -142800 193200 147000 197400 metal2 -142800 184800 147000 197400 metal2 -142800 184800 147000 189000 metal1 -142800 184800 155400 189000 metal1 -151200 184800 155400 189000 metal1 -151200 172200 155400 189000 metal2 -151200 172200 155400 176400 metal1 -151200 172200 159600 176400 metal1 -155400 172200 159600 176400 metal1 -155400 168000 159600 176400 metal2 -155400 168000 159600 172200 metal2 -155400 168000 163800 172200 metal3 -159600 168000 163800 172200 metal2 -159600 159600 163800 172200 metal2 -159600 159600 163800 163800 metal2 -159600 159600 176400 163800 metal3 -172200 159600 176400 163800 metal2 -172200 147000 176400 163800 metal2 -172200 147000 176400 151200 metal2 -172200 147000 180600 151200 metal3 -176400 147000 180600 151200 metal2 -176400 130200 180600 151200 metal2 -126000 113400 138600 117600 metal1 -134400 113400 138600 117600 metal1 134400 113400 138600 130200 metal2 134400 126000 138600 130200 metal1 -100800 134400 105000 138600 metal1 -100800 126000 105000 138600 metal2 -100800 126000 105000 130200 metal1 -134400 126000 142800 130200 metal1 -109200 84000 113400 88200 metal1 -109200 84000 113400 92400 metal2 -109200 88200 113400 92400 metal1 -100800 88200 113400 92400 metal1 -100800 88200 105000 92400 metal1 -100800 88200 105000 100800 metal2 100800 96600 105000 100800 metal1 -142800 75600 147000 84000 metal1 +100800 88200 105000 100800 metal2 +100800 88200 105000 92400 metal1 +100800 88200 113400 92400 metal1 +109200 88200 113400 92400 metal1 +109200 84000 113400 92400 metal2 +109200 84000 113400 88200 metal1 +134400 126000 142800 130200 metal1 +134400 126000 138600 138600 metal2 113400 79800 117600 84000 metal1 113400 79800 117600 84000 metal2 113400 79800 126000 84000 metal3 @@ -3121,48 +3020,65 @@ _245_ 121800 75600 134400 79800 metal3 130200 75600 134400 79800 metal2 130200 75600 134400 79800 metal1 -130200 75600 134400 84000 metal1 -142800 75600 147000 79800 metal1 -142800 75600 147000 79800 metal2 -142800 75600 180600 79800 metal3 -176400 75600 180600 79800 metal2 -176400 75600 180600 134400 metal2 -147000 113400 151200 126000 metal2 -147000 113400 151200 117600 metal1 -109200 79800 113400 88200 metal2 -109200 79800 113400 84000 metal2 -109200 79800 117600 84000 metal3 -130200 71400 134400 79800 metal2 -130200 71400 134400 75600 metal1 -130200 71400 147000 75600 metal1 -142800 71400 147000 75600 metal1 -142800 71400 147000 79800 metal2 -147000 121800 151200 130200 metal2 -147000 126000 151200 130200 metal1 -147000 126000 168000 130200 metal1 -163800 126000 168000 130200 metal1 -163800 126000 168000 134400 metal2 -163800 130200 168000 134400 metal2 -163800 130200 180600 134400 metal3 -176400 130200 180600 134400 metal2 130200 134400 134400 138600 metal1 130200 134400 134400 138600 metal2 130200 134400 138600 138600 metal3 134400 134400 138600 138600 metal2 -134400 126000 138600 138600 metal2 -138600 126000 142800 130200 metal1 -138600 121800 142800 130200 metal2 -138600 121800 142800 126000 metal2 -138600 121800 151200 126000 metal3 -147000 121800 151200 126000 metal2 +130200 75600 147000 79800 metal3 +142800 75600 147000 79800 metal2 +109200 84000 117600 88200 metal1 +113400 84000 117600 88200 metal1 +113400 79800 117600 88200 metal2 +126000 113400 138600 117600 metal1 +100800 134400 105000 138600 metal1 +100800 126000 105000 138600 metal2 +100800 126000 105000 130200 metal1 +134400 113400 138600 117600 metal1 +134400 113400 138600 117600 metal2 +134400 113400 151200 117600 metal3 +147000 113400 151200 117600 metal2 +147000 113400 151200 117600 metal1 +100800 134400 105000 151200 metal2 +100800 147000 105000 151200 metal1 +100800 147000 109200 151200 metal1 +105000 147000 109200 151200 metal1 +105000 147000 109200 155400 metal2 +105000 151200 109200 155400 metal2 +105000 151200 134400 155400 metal3 +130200 151200 134400 155400 metal2 +130200 147000 134400 155400 metal2 +130200 147000 134400 151200 metal2 +130200 147000 138600 151200 metal3 +134400 147000 138600 151200 metal2 +134400 147000 168000 151200 metal3 +163800 147000 168000 151200 metal2 +163800 142800 168000 151200 metal2 +163800 142800 168000 147000 metal2 +163800 142800 176400 147000 metal3 +172200 142800 176400 147000 metal2 +172200 134400 176400 147000 metal2 +172200 134400 176400 138600 metal2 +172200 134400 184800 138600 metal3 +180600 134400 184800 138600 metal2 +180600 130200 184800 138600 metal2 +180600 130200 184800 134400 metal2 +180600 130200 193200 134400 metal3 +189000 130200 193200 134400 metal2 +189000 75600 193200 134400 metal2 +189000 75600 193200 79800 metal2 +142800 75600 193200 79800 metal3 +134400 134400 138600 151200 metal2 +130200 75600 134400 84000 metal1 +142800 79800 147000 84000 metal1 +142800 75600 147000 84000 metal2 ) _246_ ( 138600 126000 142800 130200 metal1 -138600 126000 142800 130200 metal2 -138600 126000 147000 130200 metal3 -142800 126000 147000 130200 metal2 -142800 126000 147000 134400 metal2 +138600 126000 142800 134400 metal2 +138600 130200 142800 134400 metal2 +138600 130200 147000 134400 metal3 +142800 130200 147000 134400 metal2 142800 130200 147000 134400 metal1 ) _247_ @@ -3175,203 +3091,228 @@ _247_ ) _248_ ( -54600 63000 63000 67200 metal1 -29400 92400 33600 96600 metal1 -29400 92400 33600 100800 metal2 -29400 96600 33600 100800 metal2 -29400 96600 33600 105000 metal3 -25200 100800 33600 105000 metal3 -25200 100800 29400 105000 metal2 -25200 100800 29400 130200 metal2 -25200 126000 29400 130200 metal2 -25200 126000 33600 130200 metal3 -29400 126000 33600 130200 metal2 -29400 126000 33600 134400 metal2 -29400 130200 33600 134400 metal2 -29400 130200 42000 134400 metal3 -37800 130200 42000 134400 metal2 -37800 130200 42000 163800 metal2 -37800 159600 42000 163800 metal2 -37800 159600 50400 163800 metal3 -46200 159600 50400 163800 metal2 -46200 159600 50400 172200 metal2 -46200 168000 50400 172200 metal2 -46200 168000 117600 172200 metal3 -113400 163800 117600 172200 metal3 -113400 163800 126000 168000 metal3 -121800 163800 126000 168000 metal2 -121800 147000 126000 168000 metal2 -121800 147000 126000 151200 metal1 -121800 142800 126000 151200 metal1 -121800 142800 126000 147000 metal1 -121800 142800 130200 147000 metal2 -126000 117600 130200 147000 metal2 +42000 96600 46200 100800 metal2 +37800 96600 46200 100800 metal3 +37800 96600 42000 100800 metal2 +37800 96600 42000 155400 metal2 +37800 151200 42000 155400 metal2 +37800 151200 50400 155400 metal3 +46200 151200 50400 155400 metal2 +46200 151200 50400 189000 metal2 +46200 184800 50400 189000 metal2 +46200 184800 121800 189000 metal3 +117600 184800 121800 189000 metal2 +117600 184800 121800 193200 metal2 +117600 189000 121800 193200 metal2 +117600 189000 130200 193200 metal3 +126000 189000 130200 193200 metal2 +126000 117600 130200 193200 metal2 126000 117600 130200 121800 metal1 -92400 16800 96600 21000 metal2 -92400 16800 121800 21000 metal3 -117600 16800 121800 21000 metal2 -117600 16800 121800 25200 metal2 -117600 21000 121800 25200 metal1 -117600 21000 126000 25200 metal1 -121800 21000 126000 25200 metal1 -121800 21000 126000 46200 metal2 -121800 42000 126000 46200 metal2 -121800 42000 134400 46200 metal3 -130200 42000 134400 46200 metal2 -130200 42000 138600 46200 metal2 -134400 42000 138600 58800 metal2 -134400 54600 138600 58800 metal1 -134400 54600 138600 63000 metal1 -134400 58800 138600 63000 metal1 -130200 58800 138600 63000 metal2 -130200 58800 134400 75600 metal2 -130200 71400 134400 75600 metal1 -58800 63000 67200 67200 metal1 -58800 92400 67200 96600 metal1 -63000 92400 67200 96600 metal1 -63000 92400 67200 100800 metal2 -63000 96600 67200 100800 metal1 -63000 96600 71400 100800 metal1 -67200 96600 71400 100800 metal1 -67200 96600 71400 105000 metal2 -67200 100800 71400 105000 metal1 -67200 100800 79800 105000 metal1 -92400 16800 96600 29400 metal2 -92400 25200 96600 29400 metal1 -92400 25200 96600 33600 metal1 +88200 29400 96600 33600 metal1 92400 29400 96600 33600 metal1 -88200 29400 96600 33600 metal2 -88200 29400 92400 37800 metal2 -88200 33600 92400 37800 metal1 -54600 37800 58800 42000 metal1 -54600 37800 58800 67200 metal2 -54600 63000 58800 67200 metal1 +92400 25200 96600 33600 metal2 +92400 25200 96600 29400 metal1 +92400 25200 100800 29400 metal1 +96600 25200 100800 29400 metal1 +96600 21000 100800 29400 metal2 +96600 21000 100800 25200 metal1 +96600 21000 109200 25200 metal1 +105000 21000 109200 25200 metal1 +105000 0 109200 25200 metal2 +105000 0 109200 4200 metal2 +105000 0 126000 4200 metal3 +121800 0 126000 4200 metal2 +121800 0 126000 42000 metal2 +121800 37800 126000 42000 metal1 +121800 37800 130200 42000 metal1 +126000 37800 130200 42000 metal1 +126000 37800 130200 46200 metal2 +37800 54600 42000 67200 metal2 +37800 54600 42000 58800 metal1 +37800 54600 46200 58800 metal1 +42000 54600 46200 58800 metal1 +42000 37800 46200 58800 metal2 +42000 37800 46200 42000 metal2 +42000 37800 50400 42000 metal3 +46200 37800 50400 42000 metal2 +58800 63000 63000 79800 metal2 +58800 75600 63000 79800 metal1 121800 75600 126000 79800 metal1 121800 71400 126000 79800 metal2 -121800 71400 126000 75600 metal1 -121800 71400 134400 75600 metal1 -50400 37800 58800 42000 metal1 -50400 37800 54600 42000 metal1 -50400 12600 54600 42000 metal2 -50400 12600 54600 16800 metal2 -50400 12600 67200 16800 metal3 -63000 12600 67200 16800 metal2 -63000 12600 67200 21000 metal2 -63000 16800 67200 21000 metal1 -63000 16800 71400 21000 metal1 -67200 16800 71400 21000 metal1 -67200 12600 71400 21000 metal2 -67200 12600 71400 16800 metal2 -67200 12600 79800 16800 metal3 -75600 12600 79800 16800 metal2 -75600 12600 79800 21000 metal2 -75600 16800 79800 21000 metal2 -75600 16800 96600 21000 metal3 -109200 46200 113400 50400 metal1 -109200 46200 113400 50400 metal2 -109200 46200 126000 50400 metal3 -121800 46200 126000 50400 metal2 -121800 42000 126000 50400 metal2 -29400 92400 63000 96600 metal1 -29400 88200 33600 96600 metal2 -29400 88200 33600 92400 metal2 -25200 88200 33600 92400 metal3 -25200 88200 29400 92400 metal2 -25200 67200 29400 92400 metal2 -25200 67200 29400 71400 metal2 -25200 67200 46200 71400 metal3 -42000 67200 46200 71400 metal2 -42000 63000 46200 71400 metal2 -42000 63000 46200 67200 metal1 -42000 63000 58800 67200 metal1 -54600 37800 67200 42000 metal1 -63000 37800 67200 42000 metal1 -63000 37800 71400 42000 metal2 -67200 37800 71400 46200 metal2 +121800 71400 126000 75600 metal2 +121800 71400 134400 75600 metal3 +130200 71400 134400 75600 metal2 +130200 71400 134400 75600 metal1 +88200 33600 92400 37800 metal1 +88200 29400 92400 37800 metal2 +88200 29400 92400 33600 metal1 +37800 63000 42000 67200 metal2 +33600 63000 42000 67200 metal3 +33600 63000 37800 67200 metal2 +33600 63000 37800 84000 metal2 +33600 79800 37800 84000 metal2 +33600 79800 37800 88200 metal3 +33600 84000 42000 88200 metal3 +37800 84000 42000 92400 metal3 +37800 88200 42000 92400 metal2 +37800 88200 46200 92400 metal2 +42000 88200 46200 100800 metal2 +126000 42000 130200 46200 metal2 +126000 42000 142800 46200 metal3 +138600 42000 142800 46200 metal2 +138600 42000 142800 58800 metal2 +138600 54600 142800 58800 metal1 +138600 54600 142800 63000 metal1 +134400 58800 142800 63000 metal1 +134400 58800 138600 63000 metal1 +130200 58800 138600 63000 metal2 +130200 58800 134400 75600 metal2 +46200 29400 50400 42000 metal2 +46200 29400 50400 33600 metal2 +46200 29400 54600 33600 metal3 +50400 29400 54600 33600 metal2 +50400 25200 54600 33600 metal2 +50400 25200 54600 29400 metal2 +50400 25200 92400 29400 metal3 +88200 25200 92400 29400 metal2 +88200 25200 92400 33600 metal2 +109200 46200 121800 50400 metal1 +117600 46200 121800 50400 metal1 +117600 42000 121800 50400 metal2 +117600 42000 121800 46200 metal2 +117600 42000 130200 46200 metal3 +58800 92400 63000 100800 metal2 +58800 96600 63000 100800 metal1 +58800 96600 75600 100800 metal1 +71400 96600 75600 100800 metal1 +71400 96600 75600 105000 metal2 +71400 100800 75600 105000 metal1 +71400 100800 79800 105000 metal1 +58800 63000 63000 67200 metal2 +58800 63000 67200 67200 metal3 +63000 63000 67200 67200 metal2 +63000 63000 67200 67200 metal1 +46200 37800 50400 46200 metal2 +46200 42000 50400 46200 metal2 +46200 42000 71400 46200 metal3 +67200 42000 71400 46200 metal2 67200 42000 71400 46200 metal1 -58800 63000 63000 67200 metal1 -58800 63000 63000 79800 metal2 -58800 75600 63000 79800 metal1 +37800 63000 63000 67200 metal3 +42000 96600 54600 100800 metal3 +50400 96600 54600 100800 metal2 +50400 92400 54600 100800 metal2 +50400 92400 54600 96600 metal2 +50400 92400 63000 96600 metal3 +58800 92400 63000 96600 metal2 +58800 92400 63000 96600 metal1 ) _249_ ( -142800 63000 147000 75600 metal2 -142800 63000 147000 67200 metal2 -142800 63000 155400 67200 metal3 -151200 63000 155400 67200 metal2 -151200 63000 155400 71400 metal2 -151200 67200 155400 71400 metal2 -151200 67200 172200 71400 metal3 -168000 67200 172200 71400 metal2 -168000 67200 172200 88200 metal2 -168000 84000 172200 88200 metal2 -163800 84000 172200 88200 metal3 -163800 84000 168000 88200 metal2 -163800 84000 168000 96600 metal2 -163800 92400 168000 96600 metal2 -159600 92400 168000 96600 metal3 -159600 92400 163800 96600 metal2 -159600 92400 163800 117600 metal2 +142800 130200 147000 134400 metal1 +142800 130200 147000 134400 metal2 +142800 130200 155400 134400 metal3 +151200 130200 155400 134400 metal2 +151200 130200 155400 147000 metal2 92400 130200 96600 134400 metal1 92400 130200 96600 142800 metal2 -92400 138600 96600 142800 metal1 -92400 138600 100800 142800 metal1 -96600 138600 100800 142800 metal1 -96600 138600 100800 155400 metal2 -96600 151200 100800 155400 metal2 -96600 151200 130200 155400 metal3 -126000 151200 130200 155400 metal2 -126000 151200 159600 155400 metal3 -155400 151200 159600 155400 metal2 -155400 138600 159600 155400 metal2 -121800 71400 126000 75600 metal1 -121800 71400 126000 75600 metal2 -121800 71400 147000 75600 metal3 -142800 71400 147000 75600 metal2 -147000 113400 151200 117600 metal1 -147000 113400 151200 117600 metal2 -147000 113400 163800 117600 metal3 -159600 113400 163800 117600 metal2 +92400 138600 96600 151200 metal2 +92400 147000 96600 151200 metal2 +92400 147000 100800 151200 metal3 +96600 147000 100800 151200 metal2 +96600 147000 100800 163800 metal2 +96600 159600 100800 163800 metal2 +96600 159600 109200 163800 metal3 +105000 159600 109200 163800 metal2 +105000 159600 109200 168000 metal2 +105000 163800 109200 168000 metal2 +105000 163800 121800 168000 metal3 +117600 163800 121800 168000 metal2 +117600 163800 121800 172200 metal2 +117600 168000 121800 172200 metal2 +117600 168000 138600 172200 metal3 +134400 168000 138600 172200 metal2 +134400 142800 138600 172200 metal2 +126000 138600 130200 142800 metal1 +126000 138600 130200 142800 metal2 +126000 138600 134400 142800 metal3 +130200 138600 134400 142800 metal2 +130200 138600 134400 147000 metal2 +130200 142800 134400 147000 metal2 +130200 142800 138600 147000 metal3 +134400 142800 138600 147000 metal2 117600 75600 121800 79800 metal1 117600 75600 121800 79800 metal2 117600 75600 126000 79800 metal3 121800 75600 126000 79800 metal2 121800 75600 126000 79800 metal1 -105000 79800 109200 84000 metal1 -105000 79800 109200 84000 metal2 -105000 79800 117600 84000 metal3 -113400 79800 117600 84000 metal2 -113400 75600 117600 84000 metal2 -113400 75600 117600 79800 metal2 -113400 75600 121800 79800 metal3 +147000 113400 151200 117600 metal1 +147000 113400 151200 117600 metal2 +147000 113400 172200 117600 metal3 +168000 113400 172200 117600 metal2 121800 71400 126000 79800 metal2 +117600 71400 121800 75600 metal1 +117600 71400 121800 75600 metal2 +117600 71400 126000 75600 metal3 +121800 71400 126000 75600 metal2 +105000 79800 113400 84000 metal1 +109200 79800 113400 84000 metal1 +109200 75600 113400 84000 metal2 +109200 75600 113400 79800 metal2 +109200 75600 121800 79800 metal3 100800 84000 109200 88200 metal1 105000 84000 109200 88200 metal1 105000 79800 109200 88200 metal2 -155400 138600 159600 142800 metal2 -155400 138600 163800 142800 metal3 +105000 79800 109200 84000 metal1 +134400 142800 155400 147000 metal3 +151200 142800 155400 147000 metal2 +151200 142800 163800 147000 metal3 +159600 142800 163800 147000 metal2 +159600 138600 163800 147000 metal2 159600 138600 163800 142800 metal2 -159600 113400 163800 142800 metal2 -96600 138600 105000 142800 metal1 -126000 138600 130200 142800 metal1 -126000 138600 130200 155400 metal2 +159600 138600 168000 142800 metal3 +163800 138600 168000 142800 metal2 +163800 126000 168000 142800 metal2 +163800 126000 168000 130200 metal1 +163800 126000 176400 130200 metal1 +172200 126000 176400 130200 metal1 +172200 113400 176400 130200 metal2 +172200 113400 176400 117600 metal2 +168000 113400 176400 117600 metal3 +92400 138600 96600 142800 metal2 +92400 138600 105000 142800 metal3 +100800 138600 105000 142800 metal2 +100800 138600 105000 142800 metal1 +121800 67200 126000 75600 metal2 +121800 67200 126000 71400 metal2 +121800 67200 147000 71400 metal3 +142800 67200 147000 71400 metal2 142800 75600 147000 79800 metal1 -142800 71400 147000 79800 metal2 -142800 130200 155400 134400 metal1 -151200 130200 155400 134400 metal1 -151200 130200 155400 142800 metal2 -151200 138600 155400 142800 metal2 -151200 138600 159600 142800 metal3 -117600 71400 126000 75600 metal1 +142800 67200 147000 79800 metal2 +142800 67200 168000 71400 metal3 +163800 67200 168000 71400 metal2 +163800 67200 168000 88200 metal2 +163800 84000 168000 88200 metal2 +163800 84000 176400 88200 metal3 +172200 84000 176400 88200 metal2 +172200 84000 176400 92400 metal2 +172200 88200 176400 92400 metal1 +172200 88200 180600 92400 metal1 +176400 88200 180600 92400 metal1 +176400 88200 180600 109200 metal2 +176400 105000 180600 109200 metal2 +172200 105000 180600 109200 metal3 +172200 105000 176400 109200 metal2 +172200 105000 176400 113400 metal2 +172200 109200 176400 113400 metal2 +168000 109200 176400 113400 metal3 +168000 109200 172200 113400 metal2 +168000 109200 172200 117600 metal2 ) _250_ ( -100800 126000 105000 130200 metal1 -100800 121800 105000 130200 metal2 -100800 121800 105000 126000 metal1 -100800 121800 109200 126000 metal1 -105000 121800 109200 126000 metal1 -105000 117600 109200 126000 metal2 +100800 126000 109200 130200 metal1 +105000 126000 109200 130200 metal1 +105000 117600 109200 130200 metal2 105000 117600 109200 121800 metal1 105000 117600 113400 121800 metal1 109200 117600 113400 121800 metal1 @@ -3386,126 +3327,136 @@ _251_ ) _252_ ( -79800 92400 84000 96600 metal1 -79800 92400 84000 96600 metal2 -79800 92400 96600 96600 metal3 -92400 92400 96600 96600 metal2 -92400 92400 96600 100800 metal2 +84000 92400 92400 96600 metal2 +88200 92400 92400 100800 metal2 +88200 96600 96600 100800 metal2 92400 96600 96600 100800 metal1 75600 79800 84000 84000 metal1 79800 79800 84000 84000 metal1 -79800 79800 84000 96600 metal2 -67200 67200 75600 71400 metal1 -92400 25200 96600 37800 metal2 -92400 25200 96600 29400 metal2 -92400 25200 100800 29400 metal3 -96600 25200 100800 29400 metal2 -96600 21000 100800 29400 metal2 -96600 21000 100800 25200 metal2 -96600 21000 105000 25200 metal3 -100800 21000 105000 25200 metal2 -100800 21000 105000 29400 metal2 -100800 25200 105000 29400 metal1 -100800 25200 109200 29400 metal1 -105000 25200 109200 29400 metal1 -105000 25200 109200 50400 metal2 +79800 79800 84000 88200 metal2 +79800 84000 84000 88200 metal2 +79800 84000 88200 88200 metal3 +84000 84000 88200 88200 metal2 +84000 84000 88200 96600 metal2 +67200 67200 71400 71400 metal1 +67200 67200 71400 71400 metal2 +67200 67200 75600 71400 metal3 +71400 67200 75600 71400 metal2 +92400 29400 96600 37800 metal2 +92400 29400 96600 33600 metal1 +92400 29400 105000 33600 metal1 +100800 29400 105000 33600 metal1 +100800 29400 105000 37800 metal2 +100800 33600 105000 37800 metal1 +100800 33600 109200 37800 metal1 +105000 33600 109200 37800 metal1 +105000 33600 109200 50400 metal2 105000 46200 109200 50400 metal1 100800 46200 109200 50400 metal1 -71400 67200 75600 71400 metal1 -71400 42000 75600 71400 metal2 -71400 42000 75600 46200 metal1 -71400 42000 79800 46200 metal1 +71400 58800 75600 71400 metal2 +71400 58800 75600 63000 metal2 +71400 58800 79800 63000 metal3 +75600 58800 79800 63000 metal2 +75600 42000 79800 63000 metal2 +75600 42000 79800 46200 metal1 71400 67200 79800 71400 metal2 75600 67200 79800 84000 metal2 75600 79800 79800 84000 metal1 -75600 42000 79800 46200 metal1 -75600 33600 79800 46200 metal2 -75600 33600 79800 37800 metal2 -75600 33600 96600 37800 metal3 +75600 37800 79800 46200 metal2 +75600 37800 79800 42000 metal1 +75600 37800 84000 42000 metal1 +79800 37800 84000 42000 metal1 +79800 33600 84000 42000 metal2 +79800 33600 84000 37800 metal2 +79800 33600 96600 37800 metal3 92400 33600 96600 37800 metal2 92400 33600 96600 37800 metal1 +79800 92400 84000 96600 metal1 +79800 92400 84000 96600 metal2 +79800 92400 88200 96600 metal3 +84000 92400 88200 96600 metal2 ) _253_ ( -96600 130200 100800 134400 metal1 -96600 130200 100800 180600 metal2 -96600 176400 100800 180600 metal2 -96600 176400 142800 180600 metal3 -138600 176400 142800 180600 metal2 -138600 159600 142800 180600 metal2 -138600 159600 142800 163800 metal1 -138600 159600 147000 163800 metal1 -142800 159600 147000 163800 metal1 -142800 155400 147000 163800 metal2 -142800 155400 147000 159600 metal1 -142800 155400 151200 159600 metal1 -147000 155400 151200 159600 metal1 -147000 151200 151200 159600 metal2 -126000 117600 130200 121800 metal1 -126000 117600 130200 126000 metal2 -126000 121800 130200 126000 metal1 -126000 121800 134400 126000 metal1 -130200 121800 134400 126000 metal1 -130200 121800 134400 134400 metal2 130200 130200 134400 134400 metal1 -147000 151200 151200 155400 metal2 -147000 151200 180600 155400 metal3 -176400 151200 180600 155400 metal2 -176400 130200 180600 155400 metal2 -176400 130200 180600 134400 metal1 -172200 130200 180600 134400 metal1 -172200 130200 176400 134400 metal1 -172200 113400 176400 134400 metal2 -172200 113400 176400 117600 metal2 -163800 113400 176400 117600 metal3 -163800 113400 168000 117600 metal2 -163800 109200 168000 117600 metal2 -96600 130200 105000 134400 metal1 -130200 130200 134400 147000 metal2 -130200 142800 134400 147000 metal2 -130200 142800 151200 147000 metal3 -147000 142800 151200 147000 metal2 -147000 142800 151200 155400 metal2 -138600 79800 142800 88200 metal1 +130200 130200 134400 134400 metal2 +130200 130200 172200 134400 metal3 +168000 130200 172200 134400 metal2 +117600 75600 121800 79800 metal1 +117600 75600 121800 79800 metal2 +96600 75600 121800 79800 metal3 +96600 75600 100800 79800 metal2 +96600 75600 100800 79800 metal1 +75600 126000 79800 130200 metal2 +71400 126000 79800 130200 metal3 +71400 126000 75600 130200 metal2 +71400 126000 75600 142800 metal2 +71400 138600 75600 142800 metal1 +67200 138600 75600 142800 metal1 +67200 138600 71400 142800 metal1 +67200 138600 71400 151200 metal2 +67200 147000 71400 151200 metal2 +67200 147000 79800 151200 metal3 +75600 147000 79800 151200 metal2 +75600 147000 79800 159600 metal2 +75600 155400 79800 159600 metal2 +75600 155400 92400 159600 metal3 +88200 155400 92400 159600 metal2 +88200 155400 92400 180600 metal2 +88200 176400 92400 180600 metal2 +88200 176400 96600 180600 metal3 +92400 176400 96600 180600 metal2 +92400 176400 96600 184800 metal2 +92400 180600 96600 184800 metal2 +92400 180600 155400 184800 metal3 +151200 180600 155400 184800 metal2 +151200 172200 155400 184800 metal2 +151200 172200 155400 176400 metal1 +151200 172200 168000 176400 metal1 +163800 172200 168000 176400 metal1 +163800 168000 168000 176400 metal2 +163800 168000 168000 172200 metal2 +163800 168000 172200 172200 metal3 +168000 168000 172200 172200 metal2 +168000 130200 172200 172200 metal2 +117600 75600 134400 79800 metal1 +126000 117600 134400 121800 metal1 +130200 117600 134400 121800 metal1 +130200 117600 134400 134400 metal2 +75600 126000 88200 130200 metal3 +84000 126000 88200 130200 metal2 +84000 126000 92400 130200 metal2 +88200 126000 92400 130200 metal1 +88200 126000 92400 134400 metal1 +88200 130200 100800 134400 metal1 147000 109200 151200 113400 metal1 147000 109200 151200 113400 metal2 -147000 109200 168000 113400 metal3 -163800 109200 168000 113400 metal2 +147000 109200 172200 113400 metal3 +168000 109200 172200 113400 metal2 +130200 75600 134400 84000 metal1 +130200 75600 138600 79800 metal1 75600 96600 79800 100800 metal1 -75600 96600 79800 100800 metal2 -75600 96600 84000 100800 metal3 -79800 96600 84000 100800 metal2 +75600 96600 79800 130200 metal2 +168000 109200 172200 134400 metal2 +134400 79800 142800 84000 metal1 +134400 79800 138600 84000 metal1 +134400 75600 138600 84000 metal2 +134400 75600 138600 79800 metal1 +96600 130200 100800 134400 metal1 +96600 130200 100800 134400 metal2 +96600 130200 105000 134400 metal3 +100800 130200 105000 134400 metal2 +100800 130200 105000 134400 metal1 +75600 96600 84000 100800 metal1 +79800 96600 84000 100800 metal1 79800 92400 84000 100800 metal2 79800 92400 84000 96600 metal1 -79800 84000 84000 96600 metal2 -79800 84000 84000 88200 metal2 -79800 84000 96600 88200 metal3 -92400 84000 96600 88200 metal2 -92400 79800 96600 88200 metal2 -92400 79800 96600 84000 metal2 -92400 79800 100800 84000 metal3 -96600 79800 100800 84000 metal2 -130200 79800 134400 84000 metal1 -130200 79800 134400 88200 metal2 -130200 84000 134400 88200 metal1 -130200 84000 142800 88200 metal1 -117600 79800 134400 84000 metal1 -138600 84000 142800 88200 metal1 -138600 84000 142800 88200 metal2 -138600 84000 163800 88200 metal3 -159600 84000 163800 88200 metal2 -159600 84000 163800 92400 metal2 -159600 88200 163800 92400 metal2 -159600 88200 172200 92400 metal3 -168000 88200 172200 92400 metal2 -168000 88200 172200 113400 metal2 -168000 109200 172200 113400 metal2 -163800 109200 172200 113400 metal3 -96600 75600 100800 84000 metal2 -96600 75600 100800 79800 metal1 -96600 79800 121800 84000 metal3 -117600 79800 121800 84000 metal2 -117600 79800 121800 84000 metal1 +117600 75600 121800 84000 metal1 +134400 54600 138600 79800 metal2 +134400 54600 138600 58800 metal2 +134400 54600 172200 58800 metal3 +168000 54600 172200 58800 metal2 +168000 54600 172200 113400 metal2 ) _254_ ( @@ -3534,26 +3485,29 @@ _256_ _257_ ( 88200 138600 92400 142800 metal1 -88200 138600 92400 142800 metal2 -88200 138600 105000 142800 metal3 -100800 138600 105000 142800 metal2 -100800 134400 105000 142800 metal2 +88200 138600 92400 147000 metal2 +88200 142800 92400 147000 metal2 +88200 142800 100800 147000 metal3 +96600 142800 100800 147000 metal2 +96600 134400 100800 147000 metal2 +96600 134400 100800 138600 metal2 +96600 134400 105000 138600 metal3 +100800 134400 105000 138600 metal2 100800 134400 105000 138600 metal1 ) _258_ ( -105000 130200 109200 134400 metal1 +100800 121800 105000 134400 metal2 +100800 130200 105000 134400 metal2 +100800 130200 109200 134400 metal3 105000 130200 109200 134400 metal2 -105000 130200 113400 134400 metal3 -109200 130200 113400 134400 metal2 -109200 126000 113400 134400 metal2 +105000 130200 109200 134400 metal1 +100800 121800 105000 126000 metal2 +100800 121800 113400 126000 metal3 +109200 121800 113400 126000 metal2 109200 121800 113400 126000 metal1 -109200 121800 113400 130200 metal2 100800 117600 105000 121800 metal1 -100800 117600 105000 130200 metal2 -100800 126000 105000 130200 metal2 -100800 126000 113400 130200 metal3 -109200 126000 113400 130200 metal2 +100800 117600 105000 126000 metal2 ) _259_ ( @@ -3579,12 +3533,15 @@ _262_ ( 109200 121800 113400 126000 metal1 109200 121800 113400 134400 metal2 -109200 130200 113400 134400 metal1 -109200 130200 117600 134400 metal1 -109200 113400 113400 126000 metal2 -109200 113400 113400 117600 metal2 -109200 113400 117600 117600 metal3 -113400 113400 117600 117600 metal2 +109200 130200 113400 134400 metal2 +109200 130200 117600 134400 metal3 +113400 130200 117600 134400 metal2 +113400 130200 117600 134400 metal1 +109200 117600 113400 126000 metal2 +109200 117600 113400 121800 metal1 +109200 117600 117600 121800 metal1 +113400 117600 117600 121800 metal1 +113400 113400 117600 121800 metal2 113400 113400 117600 117600 metal1 ) _263_ @@ -3651,23 +3608,24 @@ _271_ ) _272_ ( -138600 88200 142800 92400 metal1 138600 84000 142800 92400 metal2 138600 84000 142800 88200 metal1 +134400 96600 138600 100800 metal1 +134400 92400 138600 100800 metal2 134400 96600 142800 100800 metal1 +134400 92400 138600 96600 metal2 +134400 88200 138600 96600 metal3 +134400 88200 142800 92400 metal3 +138600 88200 142800 92400 metal2 +138600 88200 142800 92400 metal1 +117600 113400 121800 117600 metal1 +117600 96600 121800 117600 metal2 +117600 96600 121800 100800 metal1 117600 96600 130200 100800 metal1 126000 96600 130200 100800 metal1 126000 92400 130200 100800 metal2 126000 92400 130200 96600 metal2 126000 92400 138600 96600 metal3 -134400 92400 138600 96600 metal2 -117600 113400 121800 117600 metal1 -117600 96600 121800 117600 metal2 -117600 96600 121800 100800 metal1 -134400 88200 138600 96600 metal2 -134400 88200 142800 92400 metal2 -134400 92400 138600 100800 metal2 -134400 96600 138600 100800 metal1 ) _273_ ( @@ -3785,12 +3743,16 @@ _286_ ) _287_ ( -92400 113400 96600 117600 metal1 -92400 109200 96600 117600 metal2 -92400 109200 96600 113400 metal2 -92400 109200 130200 113400 metal3 -126000 109200 130200 113400 metal2 -126000 109200 130200 117600 metal2 +92400 113400 100800 117600 metal1 +96600 113400 100800 117600 metal1 +96600 109200 100800 117600 metal2 +96600 109200 100800 113400 metal2 +96600 109200 126000 113400 metal3 +121800 109200 126000 113400 metal2 +121800 109200 126000 117600 metal2 +121800 113400 126000 117600 metal2 +121800 113400 130200 117600 metal3 +126000 113400 130200 117600 metal2 126000 113400 130200 117600 metal1 ) _288_ @@ -3870,23 +3832,24 @@ _297_ ) _298_ ( -75600 88200 79800 100800 metal2 +79800 88200 84000 92400 metal1 +79800 88200 84000 100800 metal2 +79800 96600 84000 100800 metal2 +75600 96600 84000 100800 metal3 +75600 96600 79800 100800 metal2 75600 96600 79800 100800 metal1 +75600 88200 79800 92400 metal1 75600 84000 79800 92400 metal2 75600 84000 79800 88200 metal1 -75600 88200 79800 92400 metal1 -75600 88200 79800 92400 metal2 -75600 88200 92400 92400 metal3 -88200 88200 92400 92400 metal2 +79800 88200 92400 92400 metal1 88200 88200 92400 92400 metal1 -88200 88200 113400 92400 metal3 -109200 88200 113400 92400 metal2 -109200 88200 113400 96600 metal2 -109200 92400 113400 96600 metal2 -109200 92400 117600 96600 metal3 +88200 88200 92400 96600 metal2 +88200 92400 92400 96600 metal2 +88200 92400 117600 96600 metal3 113400 92400 117600 96600 metal2 113400 92400 117600 100800 metal2 113400 96600 117600 100800 metal1 +75600 88200 84000 92400 metal1 ) _299_ ( @@ -3915,12 +3878,13 @@ _302_ 75600 88200 79800 92400 metal1 75600 84000 79800 92400 metal2 75600 84000 79800 88200 metal1 -71400 71400 79800 75600 metal1 -75600 71400 79800 75600 metal1 -75600 71400 79800 79800 metal2 -75600 75600 79800 79800 metal1 +71400 71400 75600 75600 metal1 +71400 71400 75600 79800 metal2 +71400 75600 75600 79800 metal1 +71400 75600 79800 79800 metal1 75600 75600 84000 79800 metal1 75600 75600 79800 88200 metal2 +75600 75600 79800 79800 metal1 ) _303_ ( @@ -3954,9 +3918,12 @@ _305_ _306_ ( 63000 84000 67200 88200 metal1 -63000 79800 67200 88200 metal2 -63000 79800 67200 84000 metal1 -63000 79800 79800 84000 metal1 +63000 84000 67200 88200 metal2 +63000 84000 71400 88200 metal3 +67200 84000 71400 88200 metal2 +67200 79800 71400 88200 metal2 +67200 79800 71400 84000 metal1 +67200 79800 79800 84000 metal1 ) _307_ ( @@ -3976,10 +3943,8 @@ _308_ ) _309_ ( -67200 75600 71400 79800 metal1 -67200 75600 71400 79800 metal2 -67200 75600 75600 79800 metal3 -71400 75600 75600 79800 metal2 +67200 75600 75600 79800 metal1 +71400 75600 75600 79800 metal1 71400 75600 75600 84000 metal2 71400 79800 75600 84000 metal1 ) @@ -3998,10 +3963,9 @@ _311_ 71400 75600 84000 79800 metal3 79800 75600 84000 79800 metal2 79800 75600 84000 79800 metal1 -79800 75600 88200 79800 metal3 -84000 75600 88200 79800 metal2 -84000 75600 88200 84000 metal2 -84000 79800 88200 84000 metal1 +79800 75600 84000 84000 metal2 +79800 79800 84000 84000 metal1 +79800 79800 88200 84000 metal1 ) _312_ ( @@ -4037,8 +4001,10 @@ _316_ ) _317_ ( -79800 75600 88200 79800 metal1 -84000 75600 88200 79800 metal1 +79800 75600 84000 79800 metal1 +79800 75600 84000 79800 metal2 +79800 75600 88200 79800 metal3 +84000 75600 88200 79800 metal2 84000 67200 88200 79800 metal2 84000 67200 88200 71400 metal1 84000 67200 96600 71400 metal1 @@ -4114,20 +4080,21 @@ _326_ ) _327_ ( -96600 46200 109200 50400 metal1 +96600 46200 100800 50400 metal1 +96600 46200 100800 50400 metal2 +96600 46200 109200 50400 metal3 +105000 46200 109200 50400 metal2 +105000 46200 109200 50400 metal1 92400 50400 96600 54600 metal1 92400 46200 96600 54600 metal2 -92400 46200 96600 50400 metal1 -92400 46200 100800 50400 metal1 -84000 79800 92400 84000 metal1 -84000 79800 88200 84000 metal1 -84000 58800 88200 84000 metal2 -84000 58800 88200 63000 metal2 -84000 58800 92400 63000 metal3 -88200 58800 92400 63000 metal2 -88200 50400 92400 63000 metal2 -88200 50400 92400 54600 metal1 -88200 50400 96600 54600 metal1 +92400 46200 96600 50400 metal2 +92400 46200 100800 50400 metal3 +88200 79800 92400 84000 metal1 +88200 75600 92400 84000 metal2 +88200 75600 92400 79800 metal1 +88200 75600 96600 79800 metal1 +92400 75600 96600 79800 metal1 +92400 50400 96600 79800 metal2 ) _328_ ( @@ -4146,10 +4113,10 @@ _329_ _330_ ( 105000 42000 109200 46200 metal1 -105000 42000 109200 46200 metal2 -105000 42000 113400 46200 metal3 -109200 42000 113400 46200 metal2 -109200 42000 113400 50400 metal2 +105000 42000 109200 50400 metal2 +105000 46200 109200 50400 metal2 +105000 46200 113400 50400 metal3 +109200 46200 113400 50400 metal2 109200 46200 113400 50400 metal1 ) _331_ @@ -4162,20 +4129,23 @@ _331_ ) _332_ ( -100800 46200 105000 50400 metal1 -100800 46200 105000 58800 metal2 100800 54600 105000 58800 metal1 -96600 42000 105000 46200 metal1 -100800 42000 105000 46200 metal1 -100800 42000 105000 50400 metal2 +100800 50400 105000 58800 metal2 +100800 50400 105000 54600 metal1 +96600 42000 100800 46200 metal1 +96600 42000 100800 54600 metal2 +96600 50400 100800 54600 metal1 +96600 50400 105000 54600 metal1 +100800 46200 105000 54600 metal2 +100800 46200 105000 50400 metal1 ) _333_ ( 96600 37800 100800 42000 metal1 -96600 37800 100800 46200 metal2 -96600 42000 100800 46200 metal2 -96600 42000 105000 46200 metal3 -100800 42000 105000 46200 metal2 +96600 37800 100800 42000 metal2 +96600 37800 105000 42000 metal3 +100800 37800 105000 42000 metal2 +100800 37800 105000 46200 metal2 100800 42000 105000 46200 metal1 ) _334_ @@ -4203,19 +4173,13 @@ _336_ ) _337_ ( -88200 50400 92400 54600 metal2 -88200 50400 96600 54600 metal3 -92400 50400 96600 54600 metal2 -92400 50400 96600 54600 metal1 -84000 46200 88200 50400 metal1 -84000 46200 88200 50400 metal2 -79800 46200 88200 50400 metal3 -79800 46200 84000 50400 metal2 -79800 46200 84000 54600 metal2 -79800 50400 84000 54600 metal2 -79800 50400 92400 54600 metal3 -88200 46200 92400 54600 metal2 88200 46200 92400 50400 metal1 +88200 46200 92400 50400 metal2 +88200 46200 96600 50400 metal3 +92400 46200 96600 50400 metal2 +92400 46200 96600 54600 metal2 +92400 50400 96600 54600 metal1 +84000 46200 92400 50400 metal1 ) _338_ ( @@ -4230,10 +4194,8 @@ _338_ ) _339_ ( -88200 46200 92400 50400 metal1 -88200 46200 92400 50400 metal2 -88200 46200 96600 50400 metal3 -92400 46200 96600 50400 metal2 +88200 46200 96600 50400 metal1 +92400 46200 96600 50400 metal1 92400 42000 96600 50400 metal2 92400 42000 96600 46200 metal1 84000 46200 92400 50400 metal1 @@ -4254,10 +4216,11 @@ _341_ ) _342_ ( -67200 46200 71400 50400 metal1 -67200 42000 71400 50400 metal2 -67200 42000 71400 46200 metal2 -67200 42000 79800 46200 metal3 +67200 46200 75600 50400 metal1 +71400 46200 75600 50400 metal1 +71400 42000 75600 50400 metal2 +71400 42000 75600 46200 metal2 +71400 42000 79800 46200 metal3 75600 42000 79800 46200 metal2 75600 42000 79800 46200 metal1 ) @@ -4265,11 +4228,10 @@ _343_ ( 63000 50400 67200 54600 metal1 63000 50400 67200 54600 metal2 -63000 50400 71400 54600 metal3 -67200 50400 71400 54600 metal2 -67200 46200 71400 54600 metal2 -67200 46200 71400 50400 metal1 -67200 46200 75600 50400 metal1 +63000 50400 75600 54600 metal3 +71400 50400 75600 54600 metal2 +71400 46200 75600 54600 metal2 +71400 46200 75600 50400 metal1 ) _344_ ( @@ -4295,13 +4257,14 @@ _346_ 88200 58800 92400 63000 metal1 ) _347_ -( -96600 75600 100800 79800 metal1 -96600 75600 100800 84000 metal2 -96600 79800 100800 84000 metal2 -96600 79800 109200 84000 metal3 -105000 79800 109200 84000 metal2 -105000 79800 109200 84000 metal1 +( +96600 75600 100800 79800 metal1 +96600 75600 100800 79800 metal2 +96600 75600 105000 79800 metal3 +100800 75600 105000 79800 metal2 +100800 75600 105000 84000 metal2 +100800 79800 105000 84000 metal1 +100800 79800 109200 84000 metal1 ) _348_ ( @@ -4310,15 +4273,15 @@ _348_ 109200 92400 113400 96600 metal2 109200 92400 121800 96600 metal3 117600 92400 121800 96600 metal2 -117600 92400 121800 105000 metal2 -117600 100800 121800 105000 metal1 -117600 100800 126000 105000 metal1 -121800 100800 126000 105000 metal1 -121800 100800 126000 134400 metal2 -121800 130200 126000 134400 metal1 -117600 130200 126000 134400 metal1 -117600 130200 121800 134400 metal1 -117600 130200 121800 138600 metal2 +117600 92400 121800 113400 metal2 +117600 109200 121800 113400 metal1 +117600 109200 126000 113400 metal1 +121800 109200 126000 113400 metal1 +121800 109200 126000 130200 metal2 +121800 126000 126000 130200 metal1 +117600 126000 126000 130200 metal1 +117600 126000 121800 130200 metal1 +117600 126000 121800 138600 metal2 117600 134400 121800 138600 metal2 113400 134400 121800 138600 metal3 113400 134400 117600 138600 metal2 @@ -4350,157 +4313,129 @@ _351_ ) _352_ ( -109200 58800 113400 63000 metal1 -109200 54600 113400 63000 metal2 -109200 54600 113400 58800 metal1 -109200 54600 126000 58800 metal1 -121800 54600 126000 58800 metal1 -121800 42000 126000 58800 metal2 -79800 46200 84000 50400 metal1 -79800 25200 84000 50400 metal2 -79800 25200 84000 29400 metal2 -79800 25200 96600 29400 metal3 -92400 25200 96600 29400 metal2 -92400 21000 96600 29400 metal2 -92400 21000 96600 25200 metal2 -92400 21000 121800 25200 metal3 -117600 21000 121800 25200 metal2 -117600 21000 121800 29400 metal2 -117600 25200 121800 29400 metal2 -117600 25200 130200 29400 metal3 -126000 25200 130200 29400 metal2 -126000 25200 130200 46200 metal2 -126000 42000 130200 46200 metal2 -121800 42000 130200 46200 metal3 -121800 42000 126000 46200 metal2 +88200 84000 92400 96600 metal2 +88200 84000 92400 88200 metal2 +88200 84000 96600 88200 metal3 +92400 84000 96600 88200 metal2 +92400 79800 96600 88200 metal2 +92400 79800 96600 84000 metal1 +92400 79800 105000 84000 metal1 +109200 67200 113400 71400 metal1 +109200 67200 113400 84000 metal2 +109200 79800 113400 84000 metal2 +100800 79800 113400 84000 metal3 +100800 79800 105000 84000 metal2 100800 79800 105000 84000 metal1 -100800 75600 105000 84000 metal2 -100800 75600 105000 79800 metal1 -100800 75600 109200 79800 metal1 -105000 75600 109200 79800 metal1 -105000 67200 109200 79800 metal2 -88200 92400 105000 96600 metal1 -100800 92400 105000 96600 metal1 -100800 79800 105000 96600 metal2 -75600 46200 84000 50400 metal1 +79800 50400 84000 54600 metal1 +79800 50400 84000 54600 metal2 +79800 50400 105000 54600 metal3 +100800 50400 105000 54600 metal2 +100800 46200 105000 54600 metal2 +100800 46200 105000 50400 metal1 +100800 46200 109200 50400 metal1 +105000 37800 109200 42000 metal1 +105000 37800 109200 50400 metal2 +105000 46200 109200 50400 metal1 +79800 63000 84000 67200 metal1 +79800 50400 84000 67200 metal2 84000 96600 88200 100800 metal1 84000 92400 88200 100800 metal2 -84000 92400 88200 96600 metal1 -84000 92400 92400 96600 metal1 -105000 67200 109200 71400 metal1 -105000 67200 109200 71400 metal2 -105000 67200 113400 71400 metal3 -109200 67200 113400 71400 metal2 +84000 92400 88200 96600 metal2 +84000 92400 92400 96600 metal3 +88200 92400 92400 96600 metal2 +88200 92400 92400 96600 metal1 +109200 58800 113400 63000 metal1 109200 58800 113400 71400 metal2 -105000 37800 109200 42000 metal1 -105000 37800 109200 42000 metal2 -105000 37800 121800 42000 metal3 -117600 37800 121800 42000 metal2 -117600 37800 121800 46200 metal2 -117600 42000 121800 46200 metal2 -117600 42000 126000 46200 metal3 -79800 46200 84000 54600 metal1 -79800 50400 84000 54600 metal1 -75600 50400 84000 54600 metal2 -75600 50400 79800 63000 metal2 -75600 58800 84000 63000 metal2 -79800 58800 84000 67200 metal2 -79800 63000 84000 67200 metal1 +105000 67200 113400 71400 metal1 +75600 46200 79800 50400 metal1 +75600 46200 79800 54600 metal2 +75600 50400 79800 54600 metal1 +75600 50400 84000 54600 metal1 +105000 46200 113400 50400 metal2 +109200 46200 113400 63000 metal2 ) _353_ ( -113400 142800 121800 147000 metal1 -117600 138600 121800 142800 metal1 -117600 138600 121800 147000 metal2 -117600 142800 121800 147000 metal1 -142800 147000 147000 151200 metal2 -142800 147000 168000 151200 metal3 -163800 147000 168000 151200 metal2 -163800 130200 168000 151200 metal2 -163800 130200 168000 134400 metal1 -159600 130200 168000 134400 metal1 -159600 130200 163800 134400 metal1 -159600 113400 163800 134400 metal2 -159600 113400 163800 117600 metal1 -155400 113400 163800 117600 metal1 -155400 113400 159600 117600 metal1 -155400 109200 159600 117600 metal2 -155400 109200 159600 113400 metal2 -151200 109200 159600 113400 metal3 -151200 109200 155400 113400 metal2 -121800 147000 126000 163800 metal2 -121800 147000 126000 151200 metal1 -117600 147000 126000 151200 metal1 -117600 147000 121800 151200 metal1 -117600 142800 121800 151200 metal2 +138600 117600 142800 121800 metal1 +138600 117600 142800 138600 metal2 138600 134400 142800 138600 metal1 -138600 134400 142800 151200 metal2 -138600 147000 142800 151200 metal2 -138600 147000 147000 151200 metal3 -151200 100800 155400 105000 metal1 -151200 92400 155400 105000 metal2 -151200 92400 155400 96600 metal1 -63000 147000 67200 163800 metal2 -63000 159600 67200 163800 metal2 -63000 159600 126000 163800 metal3 -121800 159600 126000 163800 metal2 -121800 159600 126000 163800 metal1 -63000 142800 67200 151200 metal2 -63000 142800 67200 147000 metal2 -63000 142800 75600 147000 metal3 -71400 142800 75600 147000 metal2 -71400 138600 75600 147000 metal2 -71400 138600 75600 142800 metal2 -71400 138600 79800 142800 metal3 -75600 138600 79800 142800 metal2 -75600 130200 79800 142800 metal2 -75600 130200 79800 134400 metal1 -75600 126000 79800 134400 metal1 -75600 126000 79800 130200 metal1 -75600 126000 84000 130200 metal2 -79800 126000 84000 130200 metal1 -79800 121800 84000 130200 metal1 -79800 121800 88200 126000 metal1 -84000 121800 88200 126000 metal1 -84000 121800 92400 126000 metal2 -88200 117600 92400 126000 metal2 88200 117600 92400 121800 metal1 -54600 92400 58800 100800 metal2 -54600 92400 58800 96600 metal1 -54600 92400 63000 96600 metal1 -58800 92400 63000 96600 metal1 -58800 84000 63000 96600 metal2 -58800 84000 63000 88200 metal1 -151200 100800 155400 113400 metal2 88200 92400 92400 121800 metal2 88200 92400 92400 96600 metal1 +117600 138600 121800 142800 metal1 +117600 138600 121800 147000 metal2 54600 96600 58800 100800 metal1 -54600 96600 58800 100800 metal2 -46200 96600 58800 100800 metal3 -46200 96600 50400 100800 metal2 -46200 96600 50400 151200 metal2 -46200 147000 50400 151200 metal2 -46200 147000 67200 151200 metal3 -63000 147000 67200 151200 metal2 -121800 159600 138600 163800 metal1 -134400 159600 138600 163800 metal1 -134400 159600 142800 163800 metal2 -138600 159600 142800 163800 metal1 -138600 155400 142800 163800 metal1 -138600 155400 142800 159600 metal1 -138600 155400 147000 159600 metal2 -142800 147000 147000 159600 metal2 -138600 117600 142800 121800 metal1 -138600 117600 142800 121800 metal2 -138600 117600 147000 121800 metal3 -142800 117600 147000 121800 metal2 -142800 109200 147000 121800 metal2 -142800 109200 147000 113400 metal2 -142800 109200 155400 113400 metal3 -121800 88200 126000 92400 metal1 -121800 88200 126000 96600 metal2 -121800 92400 126000 96600 metal1 -88200 92400 126000 96600 metal1 +54600 88200 58800 100800 metal2 +54600 88200 58800 92400 metal1 +54600 88200 63000 92400 metal1 +58800 88200 63000 92400 metal1 +58800 84000 63000 92400 metal2 +58800 84000 63000 88200 metal1 +151200 92400 155400 96600 metal1 +151200 92400 155400 105000 metal2 +151200 100800 155400 105000 metal1 +63000 130200 67200 163800 metal2 +63000 159600 67200 163800 metal2 +63000 159600 96600 163800 metal3 +92400 159600 96600 163800 metal2 +92400 155400 96600 163800 metal2 +92400 155400 96600 159600 metal2 +92400 155400 121800 159600 metal3 +117600 155400 121800 159600 metal2 +117600 155400 121800 159600 metal1 +142800 142800 147000 147000 metal1 +142800 142800 147000 147000 metal2 +142800 142800 168000 147000 metal3 +163800 142800 168000 147000 metal2 +163800 100800 168000 147000 metal2 +163800 100800 168000 105000 metal1 +151200 100800 168000 105000 metal1 +121800 88200 138600 92400 metal1 +134400 88200 138600 92400 metal1 +134400 84000 138600 92400 metal2 +134400 84000 138600 88200 metal1 +134400 84000 147000 88200 metal1 +142800 84000 147000 88200 metal1 +142800 84000 147000 92400 metal2 +142800 88200 147000 92400 metal1 +142800 88200 155400 92400 metal1 +151200 88200 155400 92400 metal1 +151200 88200 155400 96600 metal2 +50400 96600 58800 100800 metal1 +50400 96600 54600 100800 metal1 +50400 96600 54600 130200 metal2 +50400 126000 54600 130200 metal2 +50400 126000 67200 130200 metal3 +63000 126000 67200 130200 metal2 +63000 126000 67200 134400 metal2 +138600 134400 142800 147000 metal2 +138600 142800 142800 147000 metal1 +138600 142800 147000 147000 metal1 +63000 130200 67200 134400 metal2 +63000 130200 71400 134400 metal3 +67200 130200 71400 134400 metal2 +67200 126000 71400 134400 metal2 +67200 126000 71400 130200 metal2 +67200 126000 84000 130200 metal3 +79800 126000 84000 130200 metal2 +79800 126000 88200 130200 metal2 +84000 121800 88200 130200 metal2 +84000 121800 88200 126000 metal1 +84000 117600 88200 126000 metal1 +84000 117600 92400 121800 metal1 +113400 142800 117600 147000 metal1 +113400 142800 117600 147000 metal2 +113400 142800 121800 147000 metal3 +117600 142800 121800 147000 metal2 +117600 142800 121800 159600 metal2 +117600 155400 130200 159600 metal1 +126000 155400 130200 159600 metal1 +126000 155400 134400 159600 metal2 +130200 155400 134400 168000 metal2 +130200 163800 134400 168000 metal2 +130200 163800 147000 168000 metal3 +142800 163800 147000 168000 metal2 +142800 142800 147000 168000 metal2 ) _354_ ( @@ -4548,10 +4483,10 @@ _359_ _360_ ( 138600 117600 142800 121800 metal1 -138600 117600 142800 126000 metal2 -138600 121800 142800 126000 metal2 -138600 121800 147000 126000 metal3 -142800 121800 147000 126000 metal2 +138600 117600 142800 121800 metal2 +138600 117600 147000 121800 metal3 +142800 117600 147000 121800 metal2 +142800 117600 147000 126000 metal2 142800 121800 147000 126000 metal1 ) _361_ @@ -4565,13 +4500,10 @@ _361_ ) _362_ ( -54600 75600 58800 79800 metal1 -54600 75600 58800 79800 metal2 -50400 75600 58800 79800 metal3 -50400 75600 54600 79800 metal2 -50400 75600 54600 88200 metal2 -50400 84000 54600 88200 metal1 -50400 84000 63000 88200 metal1 +54600 75600 63000 79800 metal1 +58800 75600 63000 79800 metal1 +58800 75600 63000 88200 metal2 +58800 84000 63000 88200 metal1 ) _363_ ( @@ -4628,21 +4560,25 @@ _369_ ) _370_ ( -54600 63000 88200 67200 metal1 -54600 63000 58800 67200 metal1 -54600 58800 58800 67200 metal2 -54600 58800 58800 63000 metal2 -12600 58800 58800 63000 metal3 -12600 58800 16800 63000 metal2 -12600 58800 16800 151200 metal2 -12600 147000 16800 151200 metal2 -12600 147000 50400 151200 metal3 -46200 147000 50400 151200 metal2 -46200 147000 50400 163800 metal2 -46200 159600 50400 163800 metal2 -46200 159600 63000 163800 metal3 -58800 159600 63000 163800 metal2 -58800 159600 63000 176400 metal2 +79800 63000 88200 67200 metal1 +79800 63000 84000 67200 metal1 +79800 58800 84000 67200 metal2 +79800 58800 84000 63000 metal2 +29400 58800 84000 63000 metal3 +29400 58800 33600 63000 metal2 +29400 58800 33600 84000 metal2 +29400 79800 33600 84000 metal1 +25200 79800 33600 84000 metal1 +25200 79800 29400 84000 metal1 +25200 79800 29400 96600 metal2 +25200 92400 29400 96600 metal2 +25200 92400 33600 96600 metal3 +29400 92400 33600 96600 metal2 +29400 92400 33600 151200 metal2 +29400 147000 33600 151200 metal2 +29400 147000 63000 151200 metal3 +58800 147000 63000 151200 metal2 +58800 147000 63000 176400 metal2 58800 172200 63000 176400 metal2 58800 172200 121800 176400 metal3 117600 172200 121800 176400 metal2 @@ -4654,66 +4590,44 @@ _371_ 105000 25200 109200 29400 metal2 105000 25200 117600 29400 metal3 113400 25200 117600 29400 metal2 -113400 25200 117600 33600 metal2 -113400 29400 117600 33600 metal2 -113400 29400 138600 33600 metal3 -134400 29400 138600 33600 metal2 -134400 29400 138600 46200 metal2 -134400 42000 138600 46200 metal2 -130200 42000 138600 46200 metal3 -130200 42000 134400 46200 metal2 -130200 42000 134400 54600 metal2 -130200 50400 134400 54600 metal2 -126000 50400 134400 54600 metal3 -126000 50400 130200 54600 metal2 -126000 50400 130200 58800 metal2 -126000 54600 130200 58800 metal2 -105000 54600 130200 58800 metal3 -105000 54600 109200 58800 metal2 -105000 54600 109200 67200 metal2 +113400 25200 117600 42000 metal2 +113400 37800 117600 42000 metal1 +113400 37800 121800 42000 metal1 +117600 37800 121800 42000 metal1 +117600 37800 121800 63000 metal2 +117600 58800 121800 63000 metal2 +105000 58800 121800 63000 metal3 +105000 58800 109200 63000 metal2 +105000 58800 109200 67200 metal2 105000 63000 109200 67200 metal1 ) _372_ ( -113400 63000 126000 67200 metal1 -121800 63000 126000 67200 metal1 -121800 58800 126000 67200 metal2 -121800 58800 126000 63000 metal1 -121800 58800 130200 63000 metal1 -126000 58800 130200 63000 metal1 -126000 50400 130200 63000 metal2 -126000 50400 130200 54600 metal2 -126000 50400 142800 54600 metal3 -138600 50400 142800 54600 metal2 -138600 46200 142800 54600 metal2 -138600 46200 142800 50400 metal2 -138600 46200 163800 50400 metal3 -159600 46200 163800 50400 metal2 -159600 46200 163800 58800 metal2 -159600 54600 163800 58800 metal2 -159600 54600 180600 58800 metal3 -176400 54600 180600 58800 metal2 -176400 54600 180600 67200 metal2 -176400 63000 180600 67200 metal2 -176400 63000 184800 67200 metal3 -180600 63000 184800 67200 metal2 -180600 63000 184800 117600 metal2 -180600 113400 184800 117600 metal1 -176400 113400 184800 117600 metal1 -176400 113400 180600 117600 metal1 -176400 113400 180600 126000 metal2 -176400 121800 180600 126000 metal2 -176400 121800 184800 126000 metal3 -180600 121800 184800 126000 metal2 -180600 121800 184800 163800 metal2 -180600 159600 184800 163800 metal2 -172200 159600 184800 163800 metal3 -172200 159600 176400 163800 metal2 -172200 159600 176400 168000 metal2 -172200 163800 176400 168000 metal2 -117600 163800 176400 168000 metal3 -117600 163800 121800 168000 metal2 -117600 163800 121800 168000 metal1 +113400 63000 134400 67200 metal1 +130200 63000 134400 67200 metal1 +130200 58800 134400 67200 metal2 +130200 58800 134400 63000 metal1 +130200 58800 159600 63000 metal1 +155400 58800 159600 63000 metal1 +155400 58800 159600 67200 metal2 +155400 63000 159600 67200 metal2 +155400 63000 189000 67200 metal3 +184800 63000 189000 67200 metal2 +184800 63000 189000 113400 metal2 +184800 109200 189000 113400 metal1 +180600 109200 189000 113400 metal1 +180600 109200 184800 113400 metal1 +180600 109200 184800 168000 metal2 +180600 163800 184800 168000 metal2 +159600 163800 184800 168000 metal3 +159600 163800 163800 168000 metal2 +159600 163800 163800 172200 metal2 +159600 168000 163800 172200 metal2 +121800 168000 163800 172200 metal3 +121800 168000 126000 172200 metal2 +121800 163800 126000 172200 metal2 +121800 163800 126000 168000 metal1 +117600 163800 126000 168000 metal1 ) _373_ ( @@ -4736,22 +4650,28 @@ _375_ ( 21000 84000 25200 88200 metal1 21000 84000 25200 88200 metal2 -21000 84000 33600 88200 metal3 -29400 84000 33600 88200 metal2 -29400 84000 33600 92400 metal2 -29400 88200 33600 92400 metal2 -29400 88200 84000 92400 metal3 -79800 88200 84000 92400 metal2 -79800 84000 84000 92400 metal2 -79800 84000 84000 88200 metal1 -79800 84000 96600 88200 metal1 +21000 84000 29400 88200 metal3 +25200 84000 29400 88200 metal2 +25200 84000 29400 92400 metal2 +25200 88200 29400 92400 metal2 +25200 88200 88200 92400 metal3 +84000 88200 88200 92400 metal2 +84000 84000 88200 92400 metal2 +84000 84000 88200 88200 metal2 +84000 84000 96600 88200 metal3 +92400 84000 96600 88200 metal2 +92400 84000 96600 88200 metal1 ) _376_ ( 142800 134400 147000 138600 metal1 -142800 134400 147000 176400 metal2 -142800 172200 147000 176400 metal2 -142800 172200 155400 176400 metal3 +142800 134400 147000 147000 metal2 +142800 142800 147000 147000 metal2 +142800 142800 151200 147000 metal3 +147000 142800 151200 147000 metal2 +147000 142800 151200 176400 metal2 +147000 172200 151200 176400 metal2 +147000 172200 155400 176400 metal3 151200 172200 155400 176400 metal2 151200 172200 155400 176400 metal1 ) @@ -4759,68 +4679,71 @@ _377_ ( 109200 100800 113400 105000 metal1 109200 92400 113400 105000 metal2 -109200 92400 113400 96600 metal1 -109200 92400 126000 96600 metal1 -121800 92400 126000 96600 metal1 -121800 67200 126000 96600 metal2 -121800 67200 126000 71400 metal2 -121800 67200 142800 71400 metal3 -138600 67200 142800 71400 metal2 -138600 63000 142800 71400 metal2 -138600 63000 142800 67200 metal2 -138600 63000 176400 67200 metal3 -172200 63000 176400 67200 metal2 -172200 63000 176400 96600 metal2 +109200 92400 113400 96600 metal2 +109200 92400 130200 96600 metal3 +126000 92400 130200 96600 metal2 +126000 88200 130200 96600 metal2 +126000 88200 130200 92400 metal1 +126000 88200 138600 92400 metal1 +134400 88200 138600 92400 metal1 +134400 84000 138600 92400 metal2 +134400 84000 138600 88200 metal1 +134400 84000 168000 88200 metal1 +163800 84000 168000 88200 metal1 +163800 84000 168000 96600 metal2 +163800 92400 168000 96600 metal2 +163800 92400 176400 96600 metal3 +172200 92400 176400 96600 metal2 172200 92400 176400 96600 metal1 ) _378_ ( 71400 142800 75600 147000 metal1 -71400 142800 75600 147000 metal2 -71400 142800 96600 147000 metal3 -92400 142800 96600 147000 metal2 -92400 134400 96600 147000 metal2 -92400 134400 96600 138600 metal1 +71400 138600 75600 147000 metal2 +71400 138600 75600 142800 metal2 +71400 138600 92400 142800 metal3 +88200 138600 92400 142800 metal2 +88200 134400 92400 142800 metal2 +88200 134400 92400 138600 metal1 +88200 134400 96600 138600 metal1 ) _379_ ( 134400 134400 138600 138600 metal1 -134400 134400 138600 142800 metal2 -134400 138600 138600 142800 metal1 -134400 138600 142800 142800 metal1 -138600 138600 142800 142800 metal1 -138600 138600 142800 151200 metal2 +134400 134400 138600 147000 metal2 +134400 142800 138600 147000 metal2 +134400 142800 142800 147000 metal3 +138600 142800 142800 147000 metal2 +138600 142800 142800 151200 metal2 138600 147000 142800 151200 metal1 ) _380_ ( -79800 25200 84000 29400 metal1 -79800 25200 84000 29400 metal2 -46200 25200 84000 29400 metal3 -46200 25200 50400 29400 metal2 -46200 25200 50400 33600 metal2 -46200 29400 50400 33600 metal2 -42000 29400 50400 33600 metal3 -42000 29400 46200 33600 metal2 -42000 29400 46200 42000 metal2 -42000 37800 46200 42000 metal2 -33600 37800 46200 42000 metal3 -33600 37800 37800 42000 metal2 -33600 37800 37800 50400 metal2 -33600 46200 37800 50400 metal2 -16800 46200 37800 50400 metal3 -16800 46200 21000 50400 metal2 -16800 46200 21000 100800 metal2 -16800 96600 21000 100800 metal2 -16800 96600 33600 100800 metal3 -29400 96600 33600 100800 metal2 -29400 96600 33600 105000 metal2 -29400 100800 33600 105000 metal2 -29400 100800 42000 105000 metal3 -37800 100800 42000 105000 metal2 -37800 100800 42000 130200 metal2 -37800 126000 42000 130200 metal2 -37800 126000 88200 130200 metal3 +71400 25200 84000 29400 metal1 +71400 25200 75600 29400 metal1 +71400 21000 75600 29400 metal2 +71400 21000 75600 25200 metal2 +33600 21000 75600 25200 metal3 +33600 21000 37800 25200 metal2 +33600 21000 37800 29400 metal2 +33600 25200 37800 29400 metal2 +21000 25200 37800 29400 metal3 +21000 25200 25200 29400 metal2 +21000 25200 25200 37800 metal2 +21000 33600 25200 37800 metal2 +12600 33600 25200 37800 metal3 +12600 33600 16800 37800 metal2 +12600 33600 16800 92400 metal2 +12600 88200 16800 92400 metal1 +12600 88200 21000 92400 metal1 +16800 88200 21000 92400 metal1 +16800 88200 21000 113400 metal2 +16800 109200 21000 113400 metal2 +16800 109200 25200 113400 metal3 +21000 109200 25200 113400 metal2 +21000 109200 25200 130200 metal2 +21000 126000 25200 130200 metal2 +21000 126000 88200 130200 metal3 84000 126000 88200 130200 metal2 84000 113400 88200 130200 metal2 84000 113400 88200 117600 metal1 @@ -4829,35 +4752,23 @@ _380_ _381_ ( 33600 71400 37800 75600 metal1 -33600 46200 37800 75600 metal2 -33600 46200 37800 50400 metal2 -33600 46200 46200 50400 metal3 -42000 46200 46200 50400 metal2 -42000 33600 46200 50400 metal2 -42000 33600 46200 37800 metal2 -42000 33600 58800 37800 metal3 -54600 33600 58800 37800 metal2 -54600 8400 58800 37800 metal2 -54600 8400 58800 12600 metal2 -54600 8400 100800 12600 metal3 -96600 8400 100800 12600 metal2 -96600 4200 100800 12600 metal2 -96600 4200 100800 8400 metal1 -96600 4200 113400 8400 metal1 -109200 4200 113400 8400 metal1 -109200 4200 113400 12600 metal2 -109200 8400 113400 12600 metal1 -109200 8400 117600 12600 metal1 -113400 8400 117600 12600 metal1 -113400 4200 117600 12600 metal2 -113400 4200 117600 8400 metal2 -113400 4200 126000 8400 metal3 -121800 4200 126000 8400 metal2 -121800 4200 126000 12600 metal2 -121800 8400 126000 12600 metal2 -121800 8400 147000 12600 metal3 -142800 8400 147000 12600 metal2 -142800 8400 147000 29400 metal2 +33600 67200 37800 75600 metal2 +33600 67200 37800 71400 metal2 +33600 67200 42000 71400 metal3 +37800 67200 42000 71400 metal2 +37800 25200 42000 71400 metal2 +37800 25200 42000 29400 metal2 +37800 25200 54600 29400 metal3 +50400 25200 54600 29400 metal2 +50400 16800 54600 29400 metal2 +50400 16800 54600 21000 metal2 +50400 16800 67200 21000 metal3 +63000 16800 67200 21000 metal2 +63000 0 67200 21000 metal2 +63000 0 67200 4200 metal2 +63000 0 147000 4200 metal3 +142800 0 147000 4200 metal2 +142800 0 147000 29400 metal2 142800 25200 147000 29400 metal2 142800 25200 151200 29400 metal3 147000 25200 151200 29400 metal2 @@ -4871,10 +4782,11 @@ _381_ _382_ ( 147000 117600 151200 121800 metal1 -147000 117600 151200 121800 metal2 -147000 117600 168000 121800 metal3 -163800 117600 168000 121800 metal2 -163800 117600 168000 126000 metal2 +147000 117600 151200 130200 metal2 +147000 126000 151200 130200 metal2 +147000 126000 168000 130200 metal3 +163800 126000 168000 130200 metal2 +163800 121800 168000 130200 metal2 163800 121800 168000 126000 metal2 163800 121800 176400 126000 metal3 172200 121800 176400 126000 metal2 @@ -4883,88 +4795,68 @@ _382_ _383_ ( 138600 75600 142800 79800 metal1 -138600 67200 142800 79800 metal2 -138600 67200 142800 71400 metal2 -138600 67200 147000 71400 metal3 -142800 67200 147000 71400 metal2 +138600 71400 142800 79800 metal2 +138600 71400 142800 75600 metal2 +138600 71400 147000 75600 metal3 +142800 71400 147000 75600 metal2 +142800 67200 147000 75600 metal2 142800 67200 147000 71400 metal1 ) _384_ ( 84000 172200 88200 176400 metal1 -84000 126000 88200 176400 metal2 -84000 126000 88200 130200 metal1 -84000 126000 92400 130200 metal1 -88200 126000 92400 130200 metal1 -88200 121800 92400 130200 metal2 -88200 121800 92400 126000 metal1 -88200 121800 96600 126000 metal1 -92400 121800 96600 126000 metal1 -92400 113400 96600 126000 metal2 +84000 113400 88200 176400 metal2 +84000 113400 88200 117600 metal2 +84000 113400 96600 117600 metal3 +92400 113400 96600 117600 metal2 92400 113400 96600 117600 metal1 ) _385_ ( -71400 96600 84000 100800 metal1 -71400 96600 75600 100800 metal1 -71400 96600 75600 105000 metal2 -71400 100800 75600 105000 metal1 -58800 100800 75600 105000 metal1 -58800 100800 63000 105000 metal1 -58800 100800 63000 126000 metal2 -58800 121800 63000 126000 metal1 -54600 121800 63000 126000 metal1 -54600 121800 58800 126000 metal1 -54600 121800 58800 151200 metal2 -54600 147000 58800 151200 metal2 -54600 147000 71400 151200 metal3 -67200 147000 71400 151200 metal2 -67200 147000 71400 184800 metal2 -67200 180600 71400 184800 metal2 -67200 180600 88200 184800 metal3 -84000 180600 88200 184800 metal2 -84000 180600 88200 189000 metal2 -84000 184800 88200 189000 metal2 -84000 184800 138600 189000 metal3 -134400 184800 138600 189000 metal2 -134400 180600 138600 189000 metal2 -134400 180600 138600 184800 metal1 -134400 180600 163800 184800 metal1 -159600 180600 163800 184800 metal1 -159600 176400 163800 184800 metal2 -159600 176400 163800 180600 metal1 -159600 176400 168000 180600 metal1 -163800 176400 168000 180600 metal1 -163800 168000 168000 180600 metal2 -163800 168000 168000 172200 metal2 -163800 168000 176400 172200 metal3 -172200 168000 176400 172200 metal2 -172200 163800 176400 172200 metal2 -172200 163800 176400 168000 metal2 -172200 163800 189000 168000 metal3 -184800 163800 189000 168000 metal2 -184800 117600 189000 168000 metal2 -184800 117600 189000 121800 metal2 -180600 117600 189000 121800 metal3 -180600 117600 184800 121800 metal2 -180600 100800 184800 121800 metal2 -180600 100800 184800 105000 metal2 -172200 100800 184800 105000 metal3 -172200 100800 176400 105000 metal2 -172200 96600 176400 105000 metal2 +79800 96600 84000 100800 metal1 +79800 96600 84000 105000 metal2 +79800 100800 84000 105000 metal1 +75600 100800 84000 105000 metal1 +75600 100800 79800 105000 metal1 +75600 100800 79800 109200 metal2 +75600 105000 79800 109200 metal2 +71400 105000 79800 109200 metal3 +71400 105000 75600 109200 metal2 +71400 105000 75600 126000 metal2 +71400 121800 75600 126000 metal1 +67200 121800 75600 126000 metal1 +67200 121800 71400 126000 metal1 +67200 121800 71400 138600 metal2 +67200 134400 71400 138600 metal2 +63000 134400 71400 138600 metal3 +63000 134400 67200 138600 metal2 +63000 134400 67200 172200 metal2 +63000 168000 67200 172200 metal2 +63000 168000 75600 172200 metal3 +71400 168000 75600 172200 metal2 +71400 168000 75600 197400 metal2 +71400 193200 75600 197400 metal2 +71400 193200 163800 197400 metal3 +159600 193200 163800 197400 metal2 +159600 180600 163800 197400 metal2 +159600 180600 163800 184800 metal2 +159600 180600 189000 184800 metal3 +184800 180600 189000 184800 metal2 +184800 96600 189000 184800 metal2 +184800 96600 189000 100800 metal2 +172200 96600 189000 100800 metal3 +172200 96600 176400 100800 metal2 172200 96600 176400 100800 metal1 ) _386_ ( 54600 113400 58800 117600 metal1 54600 113400 58800 117600 metal2 -46200 113400 58800 117600 metal3 -46200 113400 50400 117600 metal2 -46200 84000 50400 117600 metal2 -46200 84000 50400 88200 metal2 -46200 84000 67200 88200 metal3 -63000 84000 67200 88200 metal2 -63000 84000 67200 88200 metal1 +54600 113400 63000 117600 metal3 +58800 113400 63000 117600 metal2 +58800 84000 63000 117600 metal2 +58800 84000 63000 88200 metal1 +58800 84000 67200 88200 metal1 ) _387_ ( @@ -4978,88 +4870,95 @@ _387_ _388_ ( 113400 172200 117600 176400 metal1 -113400 172200 117600 197400 metal2 -113400 193200 117600 197400 metal2 -113400 193200 134400 197400 metal3 -130200 193200 134400 197400 metal2 -130200 189000 134400 197400 metal2 -130200 189000 134400 193200 metal2 -130200 189000 193200 193200 metal3 +113400 172200 117600 193200 metal2 +113400 189000 117600 193200 metal2 +113400 189000 121800 193200 metal3 +117600 189000 121800 193200 metal2 +117600 189000 121800 201600 metal2 +117600 197400 121800 201600 metal2 +117600 197400 147000 201600 metal3 +142800 197400 147000 201600 metal2 +142800 189000 147000 201600 metal2 +142800 189000 147000 193200 metal2 +142800 189000 193200 193200 metal3 189000 189000 193200 193200 metal2 189000 58800 193200 193200 metal2 189000 58800 193200 63000 metal2 -168000 58800 193200 63000 metal3 -168000 58800 172200 63000 metal2 -168000 54600 172200 63000 metal2 -168000 54600 172200 58800 metal2 -138600 54600 172200 58800 metal3 -138600 54600 142800 58800 metal2 -138600 54600 142800 63000 metal2 -138600 58800 142800 63000 metal2 -121800 58800 142800 63000 metal3 -121800 58800 126000 63000 metal2 -121800 58800 126000 67200 metal2 -121800 63000 126000 67200 metal1 -113400 63000 126000 67200 metal1 -113400 63000 117600 67200 metal1 -113400 63000 117600 88200 metal2 +113400 58800 193200 63000 metal3 +113400 58800 117600 63000 metal2 +113400 58800 117600 88200 metal2 113400 84000 117600 88200 metal1 ) _389_ ( 21000 33600 25200 37800 metal1 -21000 33600 25200 37800 metal2 -21000 33600 42000 37800 metal3 -37800 33600 42000 37800 metal2 -37800 33600 42000 46200 metal2 -37800 42000 42000 46200 metal2 -37800 42000 71400 46200 metal3 -67200 42000 71400 46200 metal2 -67200 42000 71400 50400 metal2 -67200 46200 71400 50400 metal1 -67200 46200 88200 50400 metal1 -84000 46200 88200 50400 metal1 +21000 33600 25200 46200 metal2 +21000 42000 25200 46200 metal2 +21000 42000 67200 46200 metal3 +63000 42000 67200 46200 metal2 +63000 42000 67200 50400 metal2 +63000 46200 67200 50400 metal2 +63000 46200 88200 50400 metal3 +84000 46200 88200 50400 metal2 84000 42000 88200 50400 metal2 84000 42000 88200 46200 metal1 ) _390_ ( 84000 29400 88200 33600 metal1 -84000 29400 88200 42000 metal2 +84000 29400 88200 33600 metal2 +79800 29400 88200 33600 metal3 +79800 29400 84000 33600 metal2 +79800 29400 84000 42000 metal2 +79800 37800 84000 42000 metal2 +79800 37800 88200 42000 metal3 +84000 37800 88200 42000 metal2 84000 37800 88200 42000 metal1 ) _391_ ( 113400 147000 117600 151200 metal1 113400 147000 117600 151200 metal2 -113400 147000 142800 151200 metal3 -138600 147000 142800 151200 metal2 -138600 147000 142800 159600 metal2 -138600 155400 142800 159600 metal2 -138600 155400 168000 159600 metal3 -163800 155400 168000 159600 metal2 -163800 151200 168000 159600 metal2 +113400 147000 130200 151200 metal3 +126000 147000 130200 151200 metal2 +126000 147000 130200 155400 metal2 +126000 151200 130200 155400 metal2 +126000 151200 168000 155400 metal3 +163800 151200 168000 155400 metal2 163800 151200 168000 155400 metal1 ) _392_ ( 42000 172200 46200 176400 metal1 -42000 168000 46200 176400 metal2 -42000 168000 46200 172200 metal2 -8400 168000 46200 172200 metal3 +42000 172200 46200 176400 metal2 +16800 172200 46200 176400 metal3 +16800 172200 21000 176400 metal2 +16800 168000 21000 176400 metal2 +16800 168000 21000 172200 metal2 +8400 168000 21000 172200 metal3 8400 168000 12600 172200 metal2 -8400 50400 12600 172200 metal2 -8400 50400 12600 54600 metal2 -8400 50400 67200 54600 metal3 -63000 50400 67200 54600 metal2 -63000 50400 67200 54600 metal1 +8400 109200 12600 172200 metal2 +8400 109200 12600 113400 metal2 +4200 109200 12600 113400 metal3 +4200 109200 8400 113400 metal2 +4200 46200 8400 113400 metal2 +4200 46200 8400 50400 metal2 +4200 46200 63000 50400 metal3 +58800 46200 63000 50400 metal2 +58800 46200 63000 54600 metal2 +58800 50400 63000 54600 metal1 +58800 50400 67200 54600 metal1 ) _393_ ( 113400 134400 117600 138600 metal1 -113400 134400 117600 172200 metal2 -113400 168000 117600 172200 metal2 -113400 168000 121800 172200 metal3 +113400 134400 117600 147000 metal2 +113400 142800 117600 147000 metal1 +109200 142800 117600 147000 metal1 +109200 142800 113400 147000 metal1 +109200 142800 113400 172200 metal2 +109200 168000 113400 172200 metal2 +109200 168000 121800 172200 metal3 117600 168000 121800 172200 metal2 117600 168000 121800 176400 metal2 117600 172200 121800 176400 metal1 @@ -5069,9 +4968,13 @@ _394_ 21000 168000 25200 172200 metal1 21000 163800 25200 172200 metal2 21000 163800 25200 168000 metal2 -21000 163800 121800 168000 metal3 -117600 163800 121800 168000 metal2 -117600 142800 121800 168000 metal2 +21000 163800 96600 168000 metal3 +92400 163800 96600 168000 metal2 +92400 159600 96600 168000 metal2 +92400 159600 96600 163800 metal2 +92400 159600 121800 163800 metal3 +117600 159600 121800 163800 metal2 +117600 142800 121800 163800 metal2 117600 142800 121800 147000 metal1 ) _395_ @@ -5086,11 +4989,15 @@ _395_ _396_ ( 155400 96600 159600 100800 metal1 -155400 84000 159600 100800 metal2 -155400 84000 159600 88200 metal1 -155400 84000 168000 88200 metal1 -163800 84000 168000 88200 metal1 -163800 25200 168000 88200 metal2 +155400 88200 159600 100800 metal2 +155400 88200 159600 92400 metal2 +155400 88200 163800 92400 metal3 +159600 88200 163800 92400 metal2 +159600 46200 163800 92400 metal2 +159600 46200 163800 50400 metal2 +159600 46200 168000 50400 metal3 +163800 46200 168000 50400 metal2 +163800 25200 168000 50400 metal2 163800 25200 168000 29400 metal1 ) _397_ @@ -5099,27 +5006,47 @@ _397_ 21000 63000 25200 67200 metal2 21000 63000 29400 67200 metal3 25200 63000 29400 67200 metal2 -25200 25200 29400 67200 metal2 -25200 25200 29400 29400 metal2 -25200 25200 42000 29400 metal3 -37800 25200 42000 29400 metal2 -37800 4200 42000 29400 metal2 -37800 4200 42000 8400 metal2 -37800 4200 109200 8400 metal3 -105000 4200 109200 8400 metal2 -105000 0 109200 8400 metal2 -105000 0 109200 4200 metal2 -105000 0 117600 4200 metal3 -113400 0 117600 4200 metal2 -113400 0 117600 8400 metal2 -113400 4200 117600 8400 metal2 -113400 4200 130200 8400 metal3 -126000 4200 130200 8400 metal2 -126000 4200 130200 71400 metal2 -126000 67200 130200 71400 metal1 -121800 67200 130200 71400 metal1 -121800 67200 126000 71400 metal1 -121800 67200 126000 84000 metal2 +25200 29400 29400 67200 metal2 +25200 29400 29400 33600 metal2 +25200 29400 50400 33600 metal3 +46200 29400 50400 33600 metal2 +46200 16800 50400 33600 metal2 +46200 16800 50400 21000 metal2 +46200 16800 79800 21000 metal3 +75600 16800 79800 21000 metal2 +75600 16800 79800 25200 metal2 +75600 21000 79800 25200 metal2 +75600 21000 88200 25200 metal3 +84000 21000 88200 25200 metal2 +84000 12600 88200 25200 metal2 +84000 12600 88200 16800 metal2 +84000 12600 96600 16800 metal3 +92400 12600 96600 16800 metal2 +92400 12600 96600 21000 metal2 +92400 16800 96600 21000 metal1 +92400 16800 100800 21000 metal1 +96600 16800 100800 21000 metal1 +96600 12600 100800 21000 metal2 +96600 12600 100800 16800 metal2 +96600 12600 113400 16800 metal3 +109200 12600 113400 16800 metal2 +109200 8400 113400 16800 metal2 +109200 8400 113400 12600 metal2 +109200 8400 130200 12600 metal3 +126000 8400 130200 12600 metal2 +126000 8400 130200 37800 metal2 +126000 33600 130200 37800 metal1 +126000 33600 134400 37800 metal1 +130200 33600 134400 37800 metal1 +130200 33600 134400 50400 metal2 +130200 46200 134400 50400 metal1 +126000 46200 134400 50400 metal1 +126000 46200 130200 50400 metal1 +126000 46200 130200 58800 metal2 +126000 54600 130200 58800 metal2 +121800 54600 130200 58800 metal3 +121800 54600 126000 58800 metal2 +121800 54600 126000 84000 metal2 121800 79800 126000 84000 metal1 117600 79800 126000 84000 metal1 117600 79800 121800 84000 metal1 @@ -5148,99 +5075,92 @@ _400_ ( 21000 75600 25200 79800 metal1 21000 75600 25200 79800 metal2 -21000 75600 33600 79800 metal3 -29400 75600 33600 79800 metal2 -29400 75600 33600 84000 metal2 -29400 79800 33600 84000 metal2 -29400 79800 58800 84000 metal3 -54600 79800 58800 84000 metal2 +21000 75600 58800 79800 metal3 +54600 75600 58800 79800 metal2 +54600 75600 58800 84000 metal2 54600 79800 58800 84000 metal1 ) _401_ ( -109200 25200 113400 29400 metal2 -109200 25200 121800 29400 metal3 -117600 25200 121800 29400 metal2 -117600 25200 121800 33600 metal2 -117600 29400 126000 33600 metal2 -121800 29400 126000 50400 metal2 -121800 46200 126000 50400 metal2 -121800 46200 126000 54600 metal3 -117600 50400 126000 54600 metal3 -117600 50400 121800 54600 metal2 -117600 50400 121800 67200 metal2 -117600 63000 121800 67200 metal2 -113400 63000 121800 67200 metal3 -113400 63000 117600 67200 metal2 -113400 63000 117600 67200 metal1 -54600 71400 58800 84000 metal2 +92400 92400 113400 96600 metal1 54600 79800 58800 84000 metal1 -37800 46200 42000 75600 metal2 -37800 46200 42000 50400 metal2 -37800 46200 50400 50400 metal3 -46200 46200 50400 50400 metal2 -46200 33600 50400 50400 metal2 -46200 33600 50400 37800 metal2 -46200 33600 63000 37800 metal3 -58800 33600 63000 37800 metal2 -58800 29400 63000 37800 metal2 -58800 29400 63000 33600 metal2 -58800 29400 75600 33600 metal3 -71400 29400 75600 33600 metal2 +54600 79800 58800 84000 metal2 +50400 79800 58800 84000 metal3 +50400 79800 54600 84000 metal2 +50400 100800 54600 105000 metal1 +50400 96600 54600 105000 metal2 +50400 96600 54600 100800 metal1 +46200 96600 54600 100800 metal1 +46200 96600 50400 100800 metal1 +46200 79800 50400 100800 metal2 +46200 79800 50400 84000 metal2 +46200 79800 54600 84000 metal3 +105000 63000 113400 67200 metal1 +109200 33600 117600 37800 metal1 +113400 33600 117600 37800 metal1 +113400 29400 117600 37800 metal2 +113400 63000 117600 67200 metal1 +113400 63000 117600 67200 metal2 +109200 63000 117600 67200 metal3 +109200 63000 113400 67200 metal2 +109200 63000 113400 67200 metal1 79800 100800 92400 105000 metal1 88200 100800 92400 105000 metal1 88200 96600 92400 105000 metal2 -88200 96600 92400 100800 metal2 -88200 96600 96600 100800 metal3 -92400 96600 96600 100800 metal2 -37800 71400 42000 100800 metal2 -37800 96600 42000 100800 metal2 -37800 96600 54600 100800 metal3 -50400 96600 54600 100800 metal2 -50400 96600 54600 105000 metal2 -50400 100800 54600 105000 metal1 -92400 84000 96600 100800 metal2 +88200 96600 92400 100800 metal1 +88200 96600 96600 100800 metal1 +92400 96600 96600 100800 metal1 +92400 92400 96600 100800 metal2 +92400 92400 96600 96600 metal1 +109200 63000 113400 96600 metal2 +109200 92400 113400 96600 metal1 +71400 37800 75600 42000 metal1 +71400 37800 75600 58800 metal2 +71400 54600 75600 58800 metal2 +71400 54600 79800 58800 metal3 +75600 54600 79800 58800 metal2 +75600 54600 79800 63000 metal2 +75600 58800 79800 63000 metal1 +75600 58800 84000 63000 metal1 +79800 58800 84000 63000 metal1 +79800 58800 84000 67200 metal2 +79800 63000 84000 67200 metal1 +92400 84000 96600 96600 metal2 92400 84000 96600 88200 metal1 -92400 96600 113400 100800 metal3 -109200 96600 113400 100800 metal2 -109200 96600 113400 100800 metal1 -54600 100800 58800 105000 metal1 -54600 100800 58800 105000 metal2 -54600 100800 84000 105000 metal3 -79800 100800 84000 105000 metal2 -79800 100800 84000 105000 metal1 -71400 21000 75600 33600 metal2 +109200 92400 113400 100800 metal1 +113400 63000 121800 67200 metal1 +117600 63000 121800 67200 metal1 +117600 58800 121800 67200 metal2 +117600 58800 121800 63000 metal2 +117600 58800 126000 63000 metal3 +121800 58800 126000 63000 metal2 +121800 29400 126000 63000 metal2 +121800 29400 126000 33600 metal2 +113400 29400 126000 33600 metal3 +113400 29400 117600 33600 metal2 +71400 21000 75600 42000 metal2 71400 21000 75600 25200 metal2 -71400 21000 79800 25200 metal3 -75600 21000 79800 25200 metal2 -75600 16800 79800 25200 metal2 -75600 16800 79800 21000 metal2 -75600 16800 88200 21000 metal3 -84000 16800 88200 21000 metal2 -84000 12600 88200 21000 metal2 -84000 12600 88200 16800 metal2 -84000 12600 100800 16800 metal3 -96600 12600 100800 16800 metal2 -96600 12600 100800 21000 metal2 -96600 16800 100800 21000 metal2 -96600 16800 113400 21000 metal3 -109200 16800 113400 21000 metal2 -109200 16800 113400 29400 metal2 -71400 37800 75600 42000 metal1 -71400 29400 75600 42000 metal2 -109200 25200 113400 37800 metal2 -109200 33600 113400 37800 metal1 -105000 63000 117600 67200 metal1 -67200 63000 84000 67200 metal1 -67200 63000 71400 67200 metal1 -67200 63000 71400 75600 metal2 -67200 71400 71400 75600 metal1 -54600 71400 71400 75600 metal1 -37800 71400 42000 75600 metal2 -37800 71400 58800 75600 metal3 -54600 71400 58800 75600 metal2 -54600 71400 58800 75600 metal1 +71400 21000 84000 25200 metal3 +79800 21000 84000 25200 metal2 +79800 16800 84000 25200 metal2 +79800 16800 84000 21000 metal2 +79800 16800 109200 21000 metal3 +105000 16800 109200 21000 metal2 +105000 16800 109200 25200 metal2 +105000 21000 109200 25200 metal1 +105000 21000 113400 25200 metal1 +109200 21000 113400 25200 metal1 +109200 21000 113400 33600 metal2 +109200 29400 113400 33600 metal2 +109200 29400 117600 33600 metal3 50400 100800 58800 105000 metal1 +50400 33600 54600 84000 metal2 +50400 33600 54600 37800 metal1 +50400 33600 58800 37800 metal1 +54600 33600 58800 37800 metal1 +54600 21000 58800 37800 metal2 +54600 21000 58800 25200 metal2 +54600 21000 75600 25200 metal3 ) _402_ ( @@ -5249,9 +5169,13 @@ _402_ 79800 130200 84000 134400 metal2 79800 130200 84000 134400 metal1 67200 113400 71400 117600 metal1 -67200 113400 71400 134400 metal2 -67200 130200 71400 134400 metal2 -67200 130200 79800 134400 metal3 +67200 113400 71400 121800 metal2 +67200 117600 71400 121800 metal1 +67200 117600 75600 121800 metal1 +71400 117600 75600 121800 metal1 +71400 117600 75600 134400 metal2 +71400 130200 75600 134400 metal2 +71400 130200 79800 134400 metal3 75600 121800 79800 134400 metal2 75600 121800 79800 126000 metal1 ) @@ -5266,24 +5190,32 @@ _403_ 71400 113400 75600 117600 metal2 71400 113400 75600 117600 metal1 54600 109200 58800 113400 metal1 -54600 109200 58800 117600 metal2 -54600 113400 58800 117600 metal2 -54600 113400 67200 117600 metal3 +54600 109200 58800 113400 metal2 +54600 109200 63000 113400 metal3 +58800 109200 63000 113400 metal2 +58800 109200 63000 117600 metal2 +58800 113400 63000 117600 metal2 +58800 113400 67200 117600 metal3 63000 113400 67200 117600 metal2 63000 113400 67200 117600 metal1 ) _404_ ( -96600 105000 100800 138600 metal2 -96600 105000 100800 109200 metal1 -96600 105000 105000 109200 metal1 +92400 126000 96600 138600 metal2 +92400 126000 96600 130200 metal1 +92400 126000 100800 130200 metal1 +96600 126000 100800 130200 metal1 +96600 113400 100800 130200 metal2 +96600 113400 100800 117600 metal1 +96600 113400 105000 117600 metal1 +100800 113400 105000 117600 metal1 +100800 105000 105000 117600 metal2 100800 105000 105000 109200 metal1 100800 100800 105000 109200 metal2 100800 100800 105000 105000 metal1 -92400 134400 100800 138600 metal1 -96600 134400 100800 138600 metal1 -96600 134400 100800 138600 metal2 -96600 134400 109200 138600 metal3 +92400 134400 96600 138600 metal1 +92400 134400 96600 138600 metal2 +92400 134400 109200 138600 metal3 105000 134400 109200 138600 metal2 105000 134400 109200 138600 metal1 ) @@ -5306,27 +5238,23 @@ _406_ ( 117600 71400 121800 84000 metal2 117600 79800 121800 84000 metal1 -117600 71400 121800 75600 metal1 -117600 71400 121800 75600 metal2 -117600 71400 126000 75600 metal3 -121800 71400 126000 75600 metal2 -121800 67200 126000 75600 metal2 -121800 67200 126000 71400 metal2 -121800 67200 130200 71400 metal3 +117600 67200 121800 75600 metal2 +117600 67200 121800 71400 metal2 +117600 67200 130200 71400 metal3 126000 67200 130200 71400 metal2 126000 67200 130200 71400 metal1 -100800 71400 121800 75600 metal1 +100800 71400 105000 75600 metal1 +100800 71400 105000 75600 metal2 +100800 71400 121800 75600 metal3 +117600 71400 121800 75600 metal2 ) _407_ ( 105000 46200 113400 50400 metal1 109200 46200 113400 50400 metal1 -109200 42000 113400 50400 metal2 -109200 42000 113400 46200 metal1 -109200 42000 117600 46200 metal1 -113400 42000 117600 46200 metal1 -113400 33600 117600 46200 metal2 -113400 33600 117600 37800 metal1 +109200 33600 113400 50400 metal2 +109200 33600 113400 37800 metal1 +109200 33600 117600 37800 metal1 ) _408_ ( @@ -5348,30 +5276,26 @@ _409_ 75600 42000 79800 46200 metal2 75600 42000 84000 46200 metal3 79800 42000 84000 46200 metal2 -79800 21000 84000 46200 metal2 -79800 21000 84000 25200 metal2 -79800 21000 88200 25200 metal3 +79800 42000 84000 46200 metal1 +79800 25200 84000 46200 metal2 +79800 25200 84000 29400 metal2 +79800 25200 88200 29400 metal3 +84000 25200 88200 29400 metal2 +84000 21000 88200 29400 metal2 84000 21000 88200 25200 metal2 -84000 8400 88200 25200 metal2 -84000 8400 88200 12600 metal2 -84000 8400 134400 12600 metal3 -130200 8400 134400 12600 metal2 -130200 8400 134400 16800 metal2 -130200 12600 134400 16800 metal2 -130200 12600 142800 16800 metal3 -138600 12600 142800 16800 metal2 -138600 12600 142800 29400 metal2 -138600 25200 142800 29400 metal2 -138600 25200 147000 29400 metal3 -142800 25200 147000 29400 metal2 -142800 25200 147000 42000 metal2 -142800 37800 147000 42000 metal2 -126000 37800 147000 42000 metal3 -126000 37800 130200 42000 metal2 +84000 21000 113400 25200 metal3 +109200 21000 113400 25200 metal2 +109200 16800 113400 25200 metal2 +109200 16800 113400 21000 metal2 +109200 16800 126000 21000 metal3 +121800 16800 126000 21000 metal2 +121800 16800 126000 25200 metal2 +121800 21000 126000 25200 metal2 +121800 21000 130200 25200 metal3 +126000 21000 130200 25200 metal2 +126000 21000 130200 42000 metal2 126000 37800 130200 42000 metal1 -79800 42000 88200 46200 metal3 -84000 42000 88200 46200 metal2 -84000 42000 88200 46200 metal1 +79800 42000 88200 46200 metal1 ) _410_ ( @@ -5389,55 +5313,53 @@ _410_ ) _411_ ( +96600 130200 100800 134400 metal1 96600 121800 100800 134400 metal2 96600 121800 100800 126000 metal1 96600 121800 105000 126000 metal1 88200 138600 92400 142800 metal1 -88200 130200 92400 142800 metal2 -88200 130200 92400 134400 metal2 -88200 130200 100800 134400 metal3 -96600 130200 100800 134400 metal2 -96600 130200 100800 134400 metal1 +88200 138600 92400 142800 metal2 +88200 138600 100800 142800 metal3 +96600 138600 100800 142800 metal2 +96600 130200 100800 142800 metal2 ) _412_ ( -100800 130200 105000 134400 metal1 -100800 130200 105000 134400 metal2 -100800 130200 109200 134400 metal3 -105000 130200 109200 134400 metal2 -105000 126000 109200 134400 metal2 +100800 126000 105000 130200 metal2 +100800 126000 109200 130200 metal3 +105000 126000 109200 130200 metal2 105000 126000 109200 130200 metal1 79800 130200 84000 134400 metal1 -79800 130200 84000 134400 metal2 -79800 130200 105000 134400 metal3 +79800 126000 84000 134400 metal2 +79800 126000 84000 130200 metal2 +79800 126000 105000 130200 metal3 +100800 126000 105000 134400 metal2 +100800 130200 105000 134400 metal1 ) _413_ ( +130200 126000 134400 134400 metal2 130200 130200 134400 134400 metal1 -130200 130200 134400 134400 metal2 -130200 130200 155400 134400 metal3 -151200 130200 155400 134400 metal2 -151200 121800 155400 134400 metal2 +130200 126000 134400 130200 metal2 +130200 126000 155400 130200 metal3 +151200 126000 155400 130200 metal2 +151200 121800 155400 130200 metal2 151200 121800 155400 126000 metal1 121800 126000 126000 130200 metal1 121800 126000 126000 130200 metal2 121800 126000 134400 130200 metal3 -130200 126000 134400 130200 metal2 -130200 126000 134400 134400 metal2 ) _414_ ( -138600 88200 142800 92400 metal1 -138600 84000 142800 92400 metal2 +134400 79800 138600 88200 metal2 +134400 84000 138600 88200 metal1 +134400 84000 138600 92400 metal1 +134400 88200 142800 92400 metal1 134400 63000 138600 67200 metal1 -134400 63000 138600 67200 metal2 -134400 63000 151200 67200 metal3 -147000 63000 151200 67200 metal2 -147000 63000 151200 88200 metal2 -147000 84000 151200 88200 metal2 -138600 84000 151200 88200 metal3 -138600 84000 142800 88200 metal2 -138600 79800 142800 88200 metal2 +134400 63000 138600 84000 metal2 +134400 79800 138600 84000 metal2 +134400 79800 142800 84000 metal3 +138600 79800 142800 84000 metal2 138600 79800 142800 84000 metal1 ) _415_ @@ -5446,10 +5368,11 @@ _415_ 142800 100800 147000 113400 metal2 142800 100800 147000 105000 metal1 142800 100800 147000 105000 metal2 -142800 100800 163800 105000 metal3 -159600 100800 163800 105000 metal2 -159600 92400 163800 105000 metal2 -159600 92400 163800 96600 metal1 +142800 100800 168000 105000 metal3 +163800 100800 168000 105000 metal2 +163800 92400 168000 105000 metal2 +163800 92400 168000 96600 metal1 +159600 92400 168000 96600 metal1 142800 96600 147000 105000 metal1 ) _416_ @@ -5458,36 +5381,40 @@ _416_ 130200 79800 134400 96600 metal2 130200 79800 134400 84000 metal1 126000 71400 130200 75600 metal1 -126000 71400 130200 84000 metal2 -126000 79800 130200 84000 metal1 -126000 79800 134400 84000 metal1 +126000 71400 130200 75600 metal2 +126000 71400 134400 75600 metal3 +130200 71400 134400 75600 metal2 +130200 71400 134400 84000 metal2 ) _417_ ( 126000 109200 130200 113400 metal1 +126000 109200 130200 113400 metal2 +126000 109200 155400 113400 metal3 +151200 109200 155400 113400 metal2 +151200 109200 155400 117600 metal2 +151200 113400 155400 117600 metal1 +151200 113400 159600 117600 metal1 +155400 113400 159600 117600 metal1 +155400 113400 159600 126000 metal2 +155400 121800 159600 126000 metal1 126000 109200 130200 121800 metal2 126000 117600 130200 121800 metal1 -126000 117600 134400 121800 metal1 -130200 117600 134400 121800 metal1 -130200 117600 134400 130200 metal2 -130200 126000 134400 130200 metal2 -130200 126000 159600 130200 metal3 -155400 126000 159600 130200 metal2 -155400 121800 159600 130200 metal2 -155400 121800 159600 126000 metal1 ) _418_ ( -75600 92400 79800 96600 metal1 -75600 92400 79800 100800 metal2 75600 96600 79800 100800 metal1 +75600 92400 79800 100800 metal2 +75600 92400 79800 96600 metal1 67200 105000 71400 109200 metal1 67200 105000 71400 109200 metal2 67200 105000 75600 109200 metal3 71400 105000 75600 109200 metal2 -71400 96600 75600 109200 metal2 -71400 96600 75600 100800 metal1 -71400 96600 79800 100800 metal1 +71400 100800 75600 109200 metal2 +71400 100800 75600 105000 metal2 +71400 100800 79800 105000 metal3 +75600 100800 79800 105000 metal2 +75600 96600 79800 105000 metal2 ) _419_ ( @@ -5502,262 +5429,241 @@ _420_ 58800 130200 63000 134400 metal2 58800 130200 67200 134400 metal3 63000 130200 67200 134400 metal2 -63000 121800 67200 134400 metal2 +63000 126000 67200 134400 metal2 +63000 126000 67200 130200 metal2 +63000 126000 71400 130200 metal3 +67200 126000 71400 130200 metal2 +67200 117600 71400 130200 metal2 +67200 117600 71400 121800 metal1 +63000 121800 67200 130200 metal2 63000 121800 67200 126000 metal1 -63000 117600 67200 126000 metal2 -63000 117600 67200 121800 metal1 -63000 117600 71400 121800 metal1 ) _421_ ( 67200 117600 71400 121800 metal1 67200 109200 71400 121800 metal2 67200 109200 71400 113400 metal1 -63000 117600 67200 126000 metal2 -63000 117600 67200 121800 metal1 -63000 117600 71400 121800 metal1 63000 121800 67200 126000 metal1 63000 121800 67200 126000 metal2 -50400 121800 67200 126000 metal3 -50400 121800 54600 126000 metal2 -50400 117600 54600 126000 metal2 -50400 117600 54600 121800 metal2 -42000 117600 54600 121800 metal3 -42000 117600 46200 121800 metal2 -42000 109200 46200 121800 metal2 -42000 109200 46200 113400 metal1 -33600 109200 46200 113400 metal1 -33600 109200 37800 113400 metal1 -33600 63000 37800 113400 metal2 -33600 63000 37800 67200 metal1 -33600 63000 46200 67200 metal1 -42000 63000 46200 67200 metal1 -42000 50400 46200 67200 metal2 -42000 50400 46200 54600 metal2 -42000 50400 54600 54600 metal3 -50400 50400 54600 54600 metal2 -50400 50400 54600 58800 metal2 -50400 54600 54600 58800 metal2 -50400 54600 75600 58800 metal3 +12600 121800 67200 126000 metal3 +12600 121800 16800 126000 metal2 +12600 84000 16800 126000 metal2 +12600 84000 16800 88200 metal2 +12600 84000 21000 88200 metal3 +16800 84000 21000 88200 metal2 +16800 54600 21000 88200 metal2 +16800 54600 21000 58800 metal2 +16800 54600 75600 58800 metal3 71400 54600 75600 58800 metal2 71400 54600 75600 58800 metal1 +63000 121800 71400 126000 metal1 +67200 121800 71400 126000 metal1 +67200 117600 71400 126000 metal2 ) clk ( -100800 147000 105000 184800 metal2 -50400 121800 54600 126000 metal2 -50400 117600 54600 126000 metal3 -50400 117600 54600 121800 metal2 -130200 121800 134400 130200 metal1 -63000 96600 71400 100800 metal1 -67200 96600 71400 100800 metal1 -67200 96600 71400 105000 metal2 -42000 71400 46200 88200 metal2 -42000 71400 46200 75600 metal2 -42000 71400 54600 75600 metal3 -50400 71400 54600 75600 metal2 -134400 126000 138600 130200 metal1 -134400 113400 138600 130200 metal2 -134400 113400 138600 117600 metal1 -75600 29400 79800 33600 metal2 -75600 29400 92400 33600 metal3 -88200 29400 92400 33600 metal2 -88200 29400 92400 33600 metal1 -151200 75600 155400 79800 metal1 -151200 75600 155400 88200 metal2 -151200 84000 155400 88200 metal1 -117600 46200 121800 50400 metal1 -117600 46200 121800 50400 metal2 -117600 46200 138600 50400 metal3 -134400 46200 138600 50400 metal2 -50400 121800 54600 155400 metal2 -50400 151200 54600 155400 metal2 -50400 151200 71400 155400 metal3 -67200 151200 71400 155400 metal2 -67200 147000 71400 155400 metal2 -67200 147000 71400 151200 metal2 -67200 147000 84000 151200 metal3 -79800 147000 84000 151200 metal2 -42000 84000 46200 88200 metal2 -42000 84000 54600 88200 metal3 -50400 84000 54600 88200 metal2 -50400 84000 54600 88200 metal1 -134400 46200 138600 67200 metal2 -71400 50400 75600 54600 metal1 -71400 50400 75600 63000 metal2 -130200 147000 134400 159600 metal2 -50400 105000 54600 121800 metal2 -50400 105000 54600 109200 metal2 -50400 105000 58800 109200 metal3 -54600 105000 58800 109200 metal2 -54600 105000 58800 109200 metal1 -151200 71400 155400 79800 metal2 -67200 100800 71400 105000 metal2 -67200 100800 75600 105000 metal3 -71400 100800 75600 105000 metal2 -71400 100800 75600 113400 metal2 +100800 147000 105000 151200 metal1 +100800 147000 105000 155400 metal2 +54600 100800 58800 109200 metal2 +54600 100800 58800 105000 metal2 +54600 100800 67200 105000 metal3 +63000 100800 67200 105000 metal2 +63000 100800 67200 113400 metal2 +63000 109200 67200 113400 metal1 +63000 109200 75600 113400 metal1 71400 109200 75600 113400 metal1 -71400 109200 79800 113400 metal1 -75600 109200 79800 113400 metal1 -75600 109200 79800 117600 metal2 -75600 113400 79800 117600 metal1 -117600 46200 121800 54600 metal2 -117600 50400 121800 54600 metal1 -113400 50400 121800 54600 metal1 -92400 142800 96600 151200 metal2 -92400 142800 96600 147000 metal2 -92400 142800 109200 147000 metal3 -105000 142800 109200 147000 metal2 -105000 142800 109200 147000 metal1 -159600 138600 163800 142800 metal2 -159600 138600 172200 142800 metal3 -168000 138600 172200 142800 metal2 -168000 105000 172200 142800 metal2 -168000 105000 172200 109200 metal2 -163800 105000 172200 109200 metal3 -163800 105000 168000 109200 metal2 -151200 71400 155400 75600 metal2 -151200 71400 163800 75600 metal3 -159600 71400 163800 75600 metal2 -159600 71400 163800 84000 metal2 -159600 79800 163800 84000 metal1 -159600 79800 168000 84000 metal1 -163800 79800 168000 84000 metal1 -163800 79800 168000 109200 metal2 -113400 84000 117600 88200 metal2 -113400 84000 130200 88200 metal3 -126000 84000 130200 88200 metal2 -126000 84000 130200 88200 metal1 -113400 75600 117600 88200 metal2 -113400 75600 117600 79800 metal2 -109200 75600 117600 79800 metal3 -109200 75600 113400 79800 metal2 -109200 75600 113400 79800 metal1 -84000 130200 88200 134400 metal1 -84000 126000 88200 134400 metal2 -84000 126000 88200 130200 metal2 -84000 126000 92400 130200 metal3 -88200 126000 92400 130200 metal2 -88200 121800 92400 130200 metal2 -88200 121800 92400 126000 metal1 -130200 155400 134400 163800 metal2 -130200 159600 134400 163800 metal2 -130200 159600 163800 163800 metal3 -159600 159600 163800 163800 metal2 -159600 138600 163800 163800 metal2 -151200 130200 155400 134400 metal1 -151200 130200 155400 134400 metal2 -151200 130200 159600 134400 metal3 -155400 130200 159600 134400 metal2 -155400 130200 159600 142800 metal2 +71400 109200 75600 117600 metal2 +71400 113400 75600 117600 metal1 +71400 113400 79800 117600 metal1 +100800 151200 105000 180600 metal2 +63000 96600 67200 100800 metal1 +63000 96600 67200 105000 metal2 +121800 134400 130200 138600 metal1 +126000 134400 130200 138600 metal1 +126000 130200 130200 138600 metal2 +126000 130200 130200 134400 metal2 +126000 130200 138600 134400 metal3 +134400 130200 138600 134400 metal2 +134400 130200 138600 134400 metal1 +130200 121800 134400 126000 metal1 +130200 121800 134400 126000 metal2 +130200 121800 138600 126000 metal3 +134400 121800 138600 126000 metal2 +138600 159600 142800 163800 metal2 +138600 159600 159600 163800 metal3 +155400 159600 159600 163800 metal2 +155400 138600 159600 163800 metal2 155400 138600 159600 142800 metal2 -155400 138600 163800 142800 metal3 -134400 46200 155400 50400 metal3 -151200 46200 155400 50400 metal2 -151200 46200 155400 75600 metal2 -130200 126000 138600 130200 metal1 +151200 138600 159600 142800 metal3 +151200 138600 155400 142800 metal2 +151200 130200 155400 142800 metal2 +151200 130200 155400 134400 metal1 +100800 176400 105000 180600 metal2 +100800 176400 134400 180600 metal3 +130200 176400 134400 180600 metal2 +130200 172200 134400 180600 metal2 +130200 172200 134400 176400 metal2 +130200 172200 142800 176400 metal3 +138600 172200 142800 176400 metal2 +138600 159600 142800 176400 metal2 +105000 142800 109200 147000 metal1 +105000 142800 109200 151200 metal2 +105000 147000 109200 151200 metal1 +100800 147000 109200 151200 metal1 +54600 58800 58800 67200 metal2 +75600 29400 79800 37800 metal2 +75600 33600 79800 37800 metal1 121800 63000 126000 67200 metal1 121800 63000 126000 67200 metal2 121800 63000 138600 67200 metal3 134400 63000 138600 67200 metal2 -50400 58800 54600 75600 metal2 -155400 105000 159600 109200 metal1 -155400 105000 159600 109200 metal2 -155400 105000 168000 109200 metal3 -134400 130200 138600 134400 metal1 -134400 126000 138600 134400 metal2 -109200 88200 113400 92400 metal1 -109200 84000 113400 92400 metal2 -109200 84000 113400 88200 metal2 -109200 84000 117600 88200 metal3 -105000 75600 113400 79800 metal1 +134400 63000 138600 67200 metal1 151200 117600 155400 121800 metal1 151200 117600 155400 134400 metal2 -50400 117600 58800 121800 metal3 -54600 117600 58800 121800 metal2 -54600 117600 58800 121800 metal1 -54600 105000 63000 109200 metal3 -58800 105000 63000 109200 metal2 -58800 100800 63000 109200 metal2 -58800 100800 63000 105000 metal2 -58800 100800 71400 105000 metal3 -50400 58800 54600 63000 metal2 -50400 58800 63000 63000 metal3 -58800 58800 63000 63000 metal2 -100800 180600 105000 184800 metal2 -100800 180600 130200 184800 metal3 -126000 180600 130200 184800 metal2 -126000 155400 130200 184800 metal2 -126000 155400 130200 159600 metal2 -126000 155400 134400 159600 metal3 -130200 155400 134400 159600 metal2 -63000 29400 79800 33600 metal3 -63000 29400 67200 33600 metal2 -63000 29400 67200 37800 metal2 -63000 33600 67200 37800 metal2 -54600 33600 67200 37800 metal3 -54600 33600 58800 37800 metal2 -54600 33600 58800 42000 metal2 -54600 37800 58800 42000 metal2 -50400 37800 58800 42000 metal3 -50400 37800 54600 42000 metal2 -50400 37800 54600 63000 metal2 -109200 67200 113400 71400 metal1 -109200 67200 113400 71400 metal2 -109200 67200 121800 71400 metal3 -117600 67200 121800 71400 metal2 -117600 63000 121800 71400 metal2 -117600 63000 121800 67200 metal2 -117600 63000 126000 67200 metal3 -58800 58800 75600 63000 metal3 +88200 29400 92400 33600 metal1 +88200 29400 92400 33600 metal2 +88200 29400 96600 33600 metal3 +92400 29400 96600 33600 metal2 +92400 25200 96600 33600 metal2 +92400 25200 96600 29400 metal2 +92400 25200 105000 29400 metal3 +100800 25200 105000 29400 metal2 +113400 50400 117600 54600 metal1 +113400 46200 117600 54600 metal2 +113400 46200 117600 50400 metal1 +113400 46200 121800 50400 metal1 +134400 63000 138600 71400 metal1 +138600 147000 142800 163800 metal2 +138600 147000 142800 151200 metal1 +130200 147000 142800 151200 metal1 +79800 121800 84000 134400 metal2 +79800 121800 84000 126000 metal2 +79800 121800 92400 126000 metal3 +88200 121800 92400 126000 metal2 +88200 121800 92400 126000 metal1 +79800 130200 84000 155400 metal2 +130200 147000 134400 151200 metal1 +130200 147000 134400 151200 metal2 +121800 147000 134400 151200 metal3 +121800 147000 126000 151200 metal2 +121800 134400 126000 151200 metal2 +121800 134400 126000 138600 metal1 +54600 29400 58800 63000 metal2 +54600 29400 58800 33600 metal2 +54600 29400 79800 33600 metal3 +75600 29400 79800 33600 metal2 +75600 29400 92400 33600 metal3 +134400 63000 142800 67200 metal3 +138600 63000 142800 67200 metal2 +138600 54600 142800 67200 metal2 +138600 54600 142800 58800 metal2 +138600 54600 155400 58800 metal3 +151200 54600 155400 58800 metal2 +37800 84000 42000 109200 metal2 +37800 105000 42000 109200 metal2 +37800 105000 50400 109200 metal3 +46200 105000 50400 109200 metal2 +46200 105000 50400 113400 metal2 +46200 109200 54600 113400 metal2 +50400 105000 54600 113400 metal2 +50400 105000 54600 109200 metal2 +50400 105000 58800 109200 metal3 +54600 105000 58800 109200 metal2 +54600 105000 58800 109200 metal1 +71400 50400 75600 54600 metal1 +71400 50400 75600 63000 metal2 +54600 63000 58800 75600 metal2 +54600 71400 58800 75600 metal1 +134400 67200 138600 71400 metal1 +134400 67200 138600 88200 metal2 +134400 84000 138600 88200 metal2 +126000 84000 138600 88200 metal3 +126000 84000 130200 88200 metal2 +126000 84000 130200 88200 metal1 +54600 58800 58800 63000 metal2 +54600 58800 75600 63000 metal3 71400 58800 75600 63000 metal2 71400 58800 75600 63000 metal1 -58800 58800 63000 67200 metal2 +151200 46200 155400 58800 metal2 +151200 75600 155400 79800 metal1 +151200 75600 155400 88200 metal2 +151200 84000 155400 88200 metal1 +134400 113400 138600 117600 metal1 +134400 113400 138600 126000 metal2 +54600 63000 58800 67200 metal2 +54600 63000 63000 67200 metal3 +58800 63000 63000 67200 metal2 58800 63000 63000 67200 metal1 -109200 67200 113400 79800 metal2 -92400 147000 96600 151200 metal2 -92400 147000 105000 151200 metal3 -100800 147000 105000 151200 metal2 -100800 147000 105000 151200 metal1 +105000 75600 109200 79800 metal1 +105000 71400 109200 79800 metal2 +105000 71400 109200 75600 metal1 +105000 71400 113400 75600 metal1 +109200 71400 113400 75600 metal1 +109200 67200 113400 75600 metal2 +109200 67200 113400 71400 metal1 +151200 54600 155400 79800 metal2 +79800 130200 84000 134400 metal2 +79800 130200 88200 134400 metal3 +84000 130200 88200 134400 metal2 +84000 130200 88200 134400 metal1 +117600 46200 121800 50400 metal1 +117600 46200 121800 50400 metal2 +117600 46200 155400 50400 metal3 +151200 46200 155400 50400 metal2 +109200 67200 117600 71400 metal1 +113400 67200 117600 71400 metal1 +113400 63000 117600 71400 metal2 +113400 63000 117600 67200 metal2 +113400 63000 126000 67200 metal3 +46200 117600 50400 155400 metal2 +46200 151200 50400 155400 metal2 +46200 151200 84000 155400 metal3 +79800 151200 84000 155400 metal2 92400 197400 96600 201600 metal3 92400 197400 96600 201600 metal4 92400 197400 96600 201600 metal5 92400 197400 96600 201600 metal6 -92400 197400 100800 201600 metal3 -96600 197400 100800 201600 metal2 -96600 180600 100800 201600 metal2 -96600 180600 100800 184800 metal2 -96600 180600 105000 184800 metal3 -134400 63000 138600 71400 metal2 -134400 67200 138600 71400 metal1 -79800 147000 96600 151200 metal3 -121800 134400 126000 138600 metal1 -121800 134400 126000 151200 metal2 -121800 147000 126000 151200 metal2 -121800 147000 134400 151200 metal3 -130200 147000 134400 151200 metal2 -130200 147000 134400 151200 metal1 -88200 29400 105000 33600 metal3 -100800 29400 105000 33600 metal2 +92400 197400 105000 201600 metal3 +100800 197400 105000 201600 metal2 +100800 176400 105000 201600 metal2 +109200 88200 113400 92400 metal1 +109200 88200 113400 92400 metal2 +109200 88200 130200 92400 metal3 +126000 88200 130200 92400 metal2 +126000 84000 130200 92400 metal2 +46200 117600 50400 121800 metal2 +46200 117600 58800 121800 metal3 +54600 117600 58800 121800 metal2 +54600 117600 58800 121800 metal1 +100800 25200 105000 33600 metal2 100800 29400 105000 33600 metal1 -75600 33600 79800 37800 metal1 -75600 29400 79800 37800 metal2 -50400 92400 54600 96600 metal1 +79800 151200 105000 155400 metal3 +100800 151200 105000 155400 metal2 +134400 121800 138600 134400 metal2 50400 84000 54600 96600 metal2 -121800 126000 126000 138600 metal2 -121800 126000 126000 130200 metal1 -121800 126000 134400 130200 metal1 -79800 134400 84000 151200 metal2 -79800 134400 84000 138600 metal2 -79800 134400 88200 138600 metal3 -84000 134400 88200 138600 metal2 -84000 130200 88200 138600 metal2 -50400 71400 58800 75600 metal3 -54600 71400 58800 75600 metal2 -54600 71400 58800 75600 metal1 -42000 121800 54600 126000 metal3 -42000 121800 46200 126000 metal2 -42000 84000 46200 126000 metal2 +50400 92400 54600 96600 metal1 +100800 25200 147000 29400 metal3 +142800 25200 147000 29400 metal2 +142800 25200 147000 42000 metal2 +142800 37800 147000 42000 metal2 +142800 37800 155400 42000 metal3 +151200 37800 155400 42000 metal2 +151200 37800 155400 50400 metal2 +151200 105000 155400 121800 metal2 +151200 105000 155400 109200 metal1 +151200 105000 159600 109200 metal1 +37800 67200 42000 88200 metal2 +37800 67200 42000 71400 metal2 +37800 67200 46200 71400 metal3 +42000 67200 46200 71400 metal2 +42000 58800 46200 71400 metal2 +42000 58800 46200 63000 metal2 +42000 58800 58800 63000 metal3 +37800 84000 42000 88200 metal2 +37800 84000 54600 88200 metal3 +50400 84000 54600 88200 metal2 +50400 84000 54600 88200 metal1 +46200 109200 50400 121800 metal2 ) ctrl.state.out\[1\] ( @@ -5789,11 +5695,7 @@ dpath.a_lt_b$in0\[11\] ) dpath.a_lt_b$in0\[12\] ( -113400 46200 117600 50400 metal1 -113400 46200 117600 50400 metal2 -113400 46200 121800 50400 metal3 -117600 46200 121800 50400 metal2 -117600 46200 121800 50400 metal1 +113400 46200 121800 50400 metal1 ) dpath.a_lt_b$in0\[13\] ( @@ -5810,10 +5712,10 @@ dpath.a_lt_b$in0\[14\] dpath.a_lt_b$in0\[15\] ( 109200 84000 113400 88200 metal1 -109200 84000 113400 92400 metal2 -109200 88200 113400 92400 metal2 -109200 88200 117600 92400 metal3 -113400 88200 117600 92400 metal2 +109200 84000 113400 88200 metal2 +109200 84000 117600 88200 metal3 +113400 84000 117600 88200 metal2 +113400 84000 117600 92400 metal2 113400 88200 117600 92400 metal1 ) dpath.a_lt_b$in0\[1\] @@ -5889,10 +5791,10 @@ dpath.a_lt_b$in1\[10\] dpath.a_lt_b$in1\[11\] ( 109200 71400 113400 75600 metal1 -109200 71400 113400 75600 metal2 -109200 71400 117600 75600 metal3 -113400 71400 117600 75600 metal2 -113400 67200 117600 75600 metal2 +109200 67200 113400 75600 metal2 +109200 67200 113400 71400 metal2 +109200 67200 117600 71400 metal3 +113400 67200 117600 71400 metal2 113400 67200 117600 71400 metal1 ) dpath.a_lt_b$in1\[12\] @@ -5984,9 +5886,17 @@ net1 117600 172200 121800 176400 metal1 117600 172200 121800 189000 metal2 117600 184800 121800 189000 metal2 -117600 184800 163800 189000 metal3 -159600 184800 163800 189000 metal2 -159600 176400 163800 189000 metal2 +117600 184800 134400 189000 metal3 +130200 184800 134400 189000 metal2 +130200 184800 134400 193200 metal2 +130200 189000 134400 193200 metal2 +130200 189000 155400 193200 metal3 +151200 189000 155400 193200 metal2 +151200 180600 155400 193200 metal2 +151200 180600 155400 184800 metal2 +151200 180600 163800 184800 metal3 +159600 180600 163800 184800 metal2 +159600 176400 163800 184800 metal2 159600 176400 163800 180600 metal2 159600 176400 168000 180600 metal3 163800 176400 168000 180600 metal2 @@ -5997,12 +5907,9 @@ net10 142800 67200 147000 71400 metal1 142800 42000 147000 71400 metal2 142800 42000 147000 46200 metal2 -142800 42000 159600 46200 metal3 -155400 42000 159600 46200 metal2 -155400 21000 159600 46200 metal2 -155400 21000 159600 25200 metal2 -155400 21000 172200 25200 metal3 -168000 21000 172200 25200 metal2 +142800 42000 172200 46200 metal3 +168000 42000 172200 46200 metal2 +168000 21000 172200 46200 metal2 168000 21000 172200 25200 metal1 ) net11 @@ -6026,20 +5933,18 @@ net12 net13 ( 134400 147000 138600 151200 metal1 -134400 147000 138600 176400 metal2 -134400 172200 138600 176400 metal2 -134400 172200 142800 176400 metal3 -138600 172200 142800 176400 metal2 -138600 172200 142800 180600 metal2 -138600 176400 142800 180600 metal1 +134400 147000 138600 180600 metal2 +134400 176400 138600 180600 metal1 +134400 176400 142800 180600 metal1 ) net14 ( 67200 176400 71400 180600 metal1 -67200 176400 71400 180600 metal2 -67200 176400 75600 180600 metal3 -71400 176400 75600 180600 metal2 -71400 142800 75600 180600 metal2 +67200 151200 71400 180600 metal2 +67200 151200 71400 155400 metal2 +67200 151200 75600 155400 metal3 +71400 151200 75600 155400 metal2 +71400 142800 75600 155400 metal2 71400 142800 75600 147000 metal1 ) net15 @@ -6064,48 +5969,53 @@ net16 net17 ( 21000 84000 25200 88200 metal1 -21000 84000 25200 130200 metal2 -21000 126000 25200 130200 metal2 -21000 126000 29400 130200 metal3 -25200 126000 29400 130200 metal2 -25200 126000 29400 180600 metal2 +21000 84000 25200 109200 metal2 +21000 105000 25200 109200 metal2 +21000 105000 29400 109200 metal3 +25200 105000 29400 109200 metal2 +25200 105000 29400 180600 metal2 25200 176400 29400 180600 metal1 ) net18 ( 42000 21000 46200 25200 metal1 -42000 21000 46200 25200 metal2 -42000 21000 67200 25200 metal3 -63000 21000 67200 25200 metal2 -63000 21000 67200 37800 metal2 +42000 21000 46200 37800 metal2 +42000 33600 46200 37800 metal2 +42000 33600 67200 37800 metal3 +63000 33600 67200 37800 metal2 63000 33600 67200 37800 metal1 ) net19 ( 113400 33600 117600 37800 metal1 -113400 21000 117600 37800 metal2 -113400 21000 117600 25200 metal2 -113400 21000 151200 25200 metal3 +113400 33600 117600 37800 metal2 +113400 33600 121800 37800 metal3 +117600 33600 121800 37800 metal2 +117600 21000 121800 37800 metal2 +117600 21000 121800 25200 metal2 +117600 21000 151200 25200 metal3 147000 21000 151200 25200 metal2 147000 21000 151200 25200 metal1 ) net2 ( 33600 176400 37800 180600 metal1 -33600 172200 37800 180600 metal2 -33600 172200 37800 176400 metal2 -33600 172200 46200 176400 metal3 -42000 172200 46200 176400 metal2 +33600 176400 37800 180600 metal2 +33600 176400 46200 180600 metal3 +42000 176400 46200 180600 metal2 +42000 172200 46200 180600 metal2 42000 172200 46200 176400 metal1 ) net20 ( 117600 163800 121800 168000 metal1 -117600 163800 121800 184800 metal2 -117600 180600 121800 184800 metal2 -117600 180600 180600 184800 metal3 -176400 180600 180600 184800 metal2 -176400 172200 180600 184800 metal2 +117600 163800 121800 168000 metal2 +117600 163800 134400 168000 metal3 +130200 163800 134400 168000 metal2 +130200 163800 134400 176400 metal2 +130200 172200 134400 176400 metal2 +130200 172200 180600 176400 metal3 +176400 172200 180600 176400 metal2 176400 172200 180600 176400 metal1 ) net21 @@ -6132,11 +6042,11 @@ net23 net24 ( 29400 176400 33600 180600 metal1 -29400 172200 33600 180600 metal2 -29400 172200 33600 176400 metal2 -29400 172200 37800 176400 metal3 -33600 172200 37800 176400 metal2 -33600 100800 37800 176400 metal2 +29400 168000 33600 180600 metal2 +29400 168000 33600 172200 metal2 +29400 168000 37800 172200 metal3 +33600 168000 37800 172200 metal2 +33600 100800 37800 172200 metal2 33600 100800 37800 105000 metal2 33600 100800 54600 105000 metal3 50400 100800 54600 105000 metal2 @@ -6145,11 +6055,10 @@ net24 net25 ( 172200 130200 176400 134400 metal1 -172200 130200 176400 155400 metal2 -172200 151200 176400 155400 metal2 -172200 151200 180600 155400 metal3 -176400 151200 180600 155400 metal2 -176400 151200 180600 159600 metal2 +172200 130200 176400 134400 metal2 +172200 130200 180600 134400 metal3 +176400 130200 180600 134400 metal2 +176400 130200 180600 159600 metal2 176400 155400 180600 159600 metal1 ) net26 @@ -6161,22 +6070,19 @@ net26 net27 ( 163800 25200 168000 29400 metal1 -163800 25200 168000 33600 metal2 -163800 29400 168000 33600 metal2 -163800 29400 180600 33600 metal3 -176400 29400 180600 33600 metal2 +163800 25200 168000 29400 metal2 +163800 25200 180600 29400 metal3 +176400 25200 180600 29400 metal2 +176400 25200 180600 33600 metal2 176400 29400 180600 33600 metal1 ) net28 ( 163800 100800 168000 105000 metal1 163800 100800 168000 105000 metal2 -163800 100800 176400 105000 metal3 -172200 100800 176400 105000 metal2 -172200 100800 176400 117600 metal2 -172200 113400 176400 117600 metal2 -172200 113400 180600 117600 metal3 -176400 113400 180600 117600 metal2 +163800 100800 180600 105000 metal3 +176400 100800 180600 105000 metal2 +176400 100800 180600 117600 metal2 176400 113400 180600 117600 metal1 ) net29 @@ -6197,11 +6103,10 @@ net3 net30 ( 151200 176400 155400 180600 metal1 -151200 172200 155400 180600 metal2 -151200 172200 155400 176400 metal2 -151200 172200 163800 176400 metal3 -159600 172200 163800 176400 metal2 -159600 168000 163800 176400 metal2 +151200 176400 155400 180600 metal2 +151200 176400 163800 180600 metal3 +159600 176400 163800 180600 metal2 +159600 168000 163800 180600 metal2 159600 168000 163800 172200 metal2 159600 168000 168000 172200 metal3 163800 168000 168000 172200 metal2 @@ -6211,10 +6116,10 @@ net30 net31 ( 75600 21000 79800 25200 metal1 -75600 21000 79800 29400 metal2 -75600 25200 79800 29400 metal2 -75600 25200 84000 29400 metal3 -79800 25200 84000 29400 metal2 +75600 21000 79800 25200 metal2 +75600 21000 84000 25200 metal3 +79800 21000 84000 25200 metal2 +79800 21000 84000 29400 metal2 79800 25200 84000 29400 metal1 ) net32 @@ -6228,24 +6133,17 @@ net32 ) net33 ( -79800 130200 84000 134400 metal1 -79800 130200 84000 147000 metal2 -79800 142800 84000 147000 metal1 -75600 142800 84000 147000 metal1 -75600 142800 79800 147000 metal1 -75600 142800 79800 193200 metal2 +75600 130200 84000 134400 metal1 +75600 130200 79800 134400 metal1 +75600 130200 79800 193200 metal2 75600 189000 79800 193200 metal2 -75600 189000 105000 193200 metal3 -100800 189000 105000 193200 metal2 -100800 189000 105000 201600 metal2 -100800 197400 105000 201600 metal2 -100800 197400 147000 201600 metal3 -142800 197400 147000 201600 metal2 -142800 193200 147000 201600 metal2 -142800 193200 147000 197400 metal2 -142800 193200 172200 197400 metal3 -168000 193200 172200 197400 metal2 -168000 176400 172200 197400 metal2 +75600 189000 138600 193200 metal3 +134400 189000 138600 193200 metal2 +134400 184800 138600 193200 metal2 +134400 184800 138600 189000 metal2 +134400 184800 172200 189000 metal3 +168000 184800 172200 189000 metal2 +168000 176400 172200 189000 metal2 168000 176400 172200 180600 metal1 ) net34 @@ -6260,15 +6158,21 @@ net34 net35 ( 21000 176400 25200 180600 metal1 -21000 172200 25200 180600 metal2 -21000 172200 25200 176400 metal2 -21000 172200 33600 176400 metal3 -29400 172200 33600 176400 metal2 -29400 138600 33600 176400 metal2 -29400 138600 33600 142800 metal2 -29400 138600 63000 142800 metal3 -58800 138600 63000 142800 metal2 -58800 130200 63000 142800 metal2 +21000 176400 25200 180600 metal2 +21000 176400 37800 180600 metal3 +33600 176400 37800 180600 metal2 +33600 168000 37800 180600 metal2 +33600 168000 37800 172200 metal2 +33600 168000 42000 172200 metal3 +37800 168000 42000 172200 metal2 +37800 159600 42000 172200 metal2 +37800 159600 42000 163800 metal2 +37800 159600 54600 163800 metal3 +50400 159600 54600 163800 metal2 +50400 130200 54600 163800 metal2 +50400 130200 54600 134400 metal2 +50400 130200 63000 134400 metal3 +58800 130200 63000 134400 metal2 58800 130200 63000 134400 metal1 ) net36 @@ -6276,50 +6180,43 @@ net36 50400 105000 63000 109200 metal1 16800 21000 21000 25200 metal1 16800 21000 21000 25200 metal2 -4200 21000 21000 25200 metal3 -4200 21000 8400 25200 metal2 -4200 21000 8400 109200 metal2 -4200 105000 8400 109200 metal2 -4200 105000 54600 109200 metal3 +8400 21000 21000 25200 metal3 +8400 21000 12600 25200 metal2 +8400 21000 12600 96600 metal2 +8400 92400 12600 96600 metal2 +8400 92400 29400 96600 metal3 +25200 92400 29400 96600 metal2 +25200 92400 29400 109200 metal2 +25200 105000 29400 109200 metal2 +25200 105000 54600 109200 metal3 50400 105000 54600 109200 metal2 50400 105000 54600 109200 metal1 -50400 100800 54600 109200 metal2 -50400 100800 54600 105000 metal1 +50400 100800 54600 109200 metal1 ) net37 ( 16800 25200 21000 29400 metal1 -16800 21000 21000 29400 metal2 -16800 21000 21000 25200 metal2 -16800 21000 37800 25200 metal3 -33600 21000 37800 25200 metal2 -33600 12600 37800 25200 metal2 -33600 12600 37800 16800 metal2 -33600 12600 50400 16800 metal3 -46200 12600 50400 16800 metal2 -46200 8400 50400 16800 metal2 -46200 8400 50400 12600 metal2 -46200 8400 84000 12600 metal3 +16800 16800 21000 29400 metal2 +16800 16800 21000 21000 metal2 +16800 16800 29400 21000 metal3 +25200 16800 29400 21000 metal2 +25200 8400 29400 21000 metal2 +25200 8400 29400 12600 metal2 +25200 8400 84000 12600 metal3 79800 8400 84000 12600 metal2 79800 8400 84000 29400 metal2 -79800 25200 84000 29400 metal1 -79800 25200 92400 29400 metal1 +79800 25200 84000 29400 metal2 +79800 25200 92400 29400 metal3 +88200 25200 92400 29400 metal2 +88200 25200 92400 29400 metal1 ) net38 ( 126000 37800 130200 42000 metal1 126000 37800 130200 42000 metal2 -126000 37800 142800 42000 metal3 -138600 37800 142800 42000 metal2 -138600 29400 142800 42000 metal2 -138600 29400 142800 33600 metal2 -134400 29400 142800 33600 metal3 -134400 29400 138600 33600 metal2 -134400 25200 138600 33600 metal2 -134400 25200 138600 29400 metal2 -130200 25200 138600 29400 metal3 -130200 25200 134400 29400 metal2 -130200 21000 134400 29400 metal2 +126000 37800 134400 42000 metal3 +130200 37800 134400 42000 metal2 +130200 21000 134400 42000 metal2 130200 21000 134400 25200 metal1 ) net39 @@ -6331,9 +6228,12 @@ net39 105000 21000 109200 25200 metal1 105000 16800 109200 25200 metal2 105000 16800 109200 21000 metal2 -105000 16800 176400 21000 metal3 -172200 16800 176400 21000 metal2 -172200 16800 176400 25200 metal2 +105000 16800 155400 21000 metal3 +151200 16800 155400 21000 metal2 +151200 16800 155400 25200 metal2 +151200 21000 155400 25200 metal2 +151200 21000 176400 25200 metal3 +172200 21000 176400 25200 metal2 172200 21000 176400 25200 metal1 ) net4 @@ -6346,57 +6246,78 @@ net40 ( 113400 33600 117600 37800 metal1 113400 33600 117600 37800 metal2 -113400 33600 176400 37800 metal3 -172200 33600 176400 37800 metal2 -172200 25200 176400 37800 metal2 -172200 25200 176400 29400 metal1 +113400 33600 155400 37800 metal3 +151200 33600 155400 37800 metal2 +151200 29400 155400 37800 metal2 +151200 29400 155400 33600 metal2 +151200 29400 172200 33600 metal3 +168000 29400 172200 33600 metal2 +168000 25200 172200 33600 metal2 +168000 25200 172200 29400 metal1 +168000 25200 176400 29400 metal1 ) net41 ( 126000 67200 130200 71400 metal1 -126000 63000 130200 71400 metal2 -126000 63000 130200 67200 metal2 -126000 63000 142800 67200 metal3 +126000 67200 130200 71400 metal2 +126000 67200 142800 71400 metal3 +138600 67200 142800 71400 metal2 +138600 63000 142800 71400 metal2 138600 63000 142800 67200 metal2 -138600 58800 142800 67200 metal2 -138600 58800 142800 63000 metal2 -138600 58800 172200 63000 metal3 -168000 58800 172200 63000 metal2 -168000 58800 172200 71400 metal2 -168000 67200 172200 71400 metal2 -168000 67200 176400 71400 metal3 +138600 63000 168000 67200 metal3 +163800 63000 168000 67200 metal2 +163800 63000 168000 71400 metal2 +163800 67200 168000 71400 metal2 +163800 67200 176400 71400 metal3 172200 67200 176400 71400 metal2 172200 67200 176400 71400 metal1 ) net42 ( -16800 88200 25200 92400 metal1 -21000 88200 25200 92400 metal1 -21000 75600 25200 92400 metal2 -21000 75600 25200 79800 metal2 -21000 75600 50400 79800 metal3 -46200 75600 50400 79800 metal2 +16800 88200 21000 92400 metal1 +16800 84000 21000 92400 metal2 +16800 84000 21000 88200 metal2 +16800 84000 25200 88200 metal3 +21000 84000 25200 88200 metal2 +21000 79800 25200 88200 metal2 +21000 79800 25200 84000 metal2 +21000 79800 50400 84000 metal3 +46200 79800 50400 84000 metal2 +46200 75600 50400 84000 metal2 46200 75600 50400 79800 metal1 ) net43 ( 84000 79800 88200 84000 metal1 -84000 79800 88200 96600 metal2 -84000 92400 88200 96600 metal2 -0 92400 88200 96600 metal3 -0 92400 4200 96600 metal2 -0 37800 4200 96600 metal2 -0 37800 4200 42000 metal2 -0 37800 37800 42000 metal3 -33600 37800 37800 42000 metal2 -33600 16800 37800 42000 metal2 -33600 16800 37800 21000 metal2 -33600 16800 71400 21000 metal3 -67200 16800 71400 21000 metal2 -67200 16800 71400 25200 metal2 -67200 21000 71400 25200 metal2 -67200 21000 121800 25200 metal3 -117600 21000 121800 25200 metal2 +84000 79800 88200 92400 metal2 +84000 88200 88200 92400 metal1 +29400 88200 88200 92400 metal1 +29400 88200 33600 92400 metal1 +29400 67200 33600 92400 metal2 +29400 67200 33600 71400 metal2 +29400 67200 37800 71400 metal3 +33600 67200 37800 71400 metal2 +33600 25200 37800 71400 metal2 +33600 25200 37800 29400 metal2 +33600 25200 42000 29400 metal3 +37800 25200 42000 29400 metal2 +37800 16800 42000 29400 metal2 +37800 16800 42000 21000 metal2 +37800 16800 50400 21000 metal3 +46200 16800 50400 21000 metal2 +46200 0 50400 21000 metal2 +46200 0 50400 4200 metal2 +46200 0 96600 4200 metal3 +92400 0 96600 4200 metal2 +92400 0 96600 12600 metal2 +92400 8400 96600 12600 metal2 +92400 8400 117600 12600 metal3 +113400 8400 117600 12600 metal2 +113400 8400 117600 16800 metal2 +113400 12600 117600 16800 metal2 +113400 12600 121800 16800 metal3 +117600 12600 121800 16800 metal2 +117600 12600 121800 25200 metal2 117600 21000 121800 25200 metal1 ) net44 @@ -6404,27 +6325,20 @@ net44 16800 117600 21000 121800 metal1 16800 113400 21000 121800 metal2 16800 113400 21000 117600 metal2 -16800 113400 63000 117600 metal3 -58800 113400 63000 117600 metal2 -58800 109200 63000 117600 metal2 -58800 109200 63000 113400 metal1 -58800 109200 75600 113400 metal1 -71400 109200 75600 113400 metal1 -71400 105000 75600 113400 metal2 -71400 105000 75600 109200 metal1 +16800 113400 67200 117600 metal3 +63000 113400 67200 117600 metal2 +63000 105000 67200 117600 metal2 +63000 105000 67200 109200 metal1 +63000 105000 75600 109200 metal1 ) net45 ( 155400 121800 159600 126000 metal1 155400 121800 159600 134400 metal2 155400 130200 159600 134400 metal2 -155400 130200 172200 134400 metal3 -168000 130200 172200 134400 metal2 -168000 130200 172200 176400 metal2 -168000 172200 172200 176400 metal2 -168000 172200 176400 176400 metal3 -172200 172200 176400 176400 metal2 -172200 172200 176400 180600 metal2 +155400 130200 176400 134400 metal3 +172200 130200 176400 134400 metal2 +172200 130200 176400 180600 metal2 172200 176400 176400 180600 metal1 ) net46 @@ -6432,63 +6346,69 @@ net46 16800 46200 21000 50400 metal1 16800 29400 21000 50400 metal2 16800 29400 21000 33600 metal2 -16800 29400 42000 33600 metal3 -37800 29400 42000 33600 metal2 -37800 25200 42000 33600 metal2 -37800 25200 42000 29400 metal2 -37800 25200 50400 29400 metal3 -46200 25200 50400 29400 metal2 -46200 12600 50400 29400 metal2 -46200 12600 50400 16800 metal2 -46200 12600 79800 16800 metal3 -75600 12600 79800 16800 metal2 -75600 0 79800 16800 metal2 -75600 0 79800 4200 metal2 -75600 0 84000 4200 metal3 -79800 0 84000 4200 metal2 -79800 0 84000 8400 metal2 -79800 4200 84000 8400 metal1 -79800 4200 109200 8400 metal1 -105000 4200 109200 8400 metal1 -105000 4200 109200 16800 metal2 -105000 12600 109200 16800 metal2 -105000 12600 134400 16800 metal3 -130200 12600 134400 16800 metal2 -130200 12600 134400 63000 metal2 -130200 58800 134400 63000 metal1 -126000 58800 134400 63000 metal1 -126000 58800 130200 63000 metal1 -126000 58800 130200 75600 metal2 +16800 29400 29400 33600 metal3 +25200 29400 29400 33600 metal2 +25200 16800 29400 33600 metal2 +25200 16800 29400 21000 metal2 +25200 16800 37800 21000 metal3 +33600 16800 37800 21000 metal2 +33600 4200 37800 21000 metal2 +33600 4200 37800 8400 metal2 +33600 4200 88200 8400 metal3 +84000 4200 88200 8400 metal2 +84000 4200 88200 12600 metal2 +84000 8400 88200 12600 metal2 +84000 8400 134400 12600 metal3 +130200 8400 134400 12600 metal2 +130200 8400 134400 21000 metal2 +130200 16800 134400 21000 metal1 +130200 16800 138600 21000 metal1 +134400 16800 138600 21000 metal1 +134400 16800 138600 58800 metal2 +134400 54600 138600 58800 metal2 +126000 54600 138600 58800 metal3 +126000 54600 130200 58800 metal2 +126000 54600 130200 75600 metal2 126000 71400 130200 75600 metal1 ) net47 ( 159600 92400 163800 96600 metal1 -159600 92400 163800 96600 metal2 -159600 92400 176400 96600 metal3 -172200 92400 176400 96600 metal2 -172200 33600 176400 96600 metal2 +159600 88200 163800 96600 metal2 +159600 88200 163800 92400 metal2 +159600 88200 176400 92400 metal3 +172200 88200 176400 92400 metal2 +172200 33600 176400 92400 metal2 172200 33600 176400 37800 metal1 ) net48 ( -25200 21000 33600 25200 metal1 -29400 21000 33600 25200 metal1 -29400 16800 33600 25200 metal2 -29400 16800 33600 21000 metal2 -29400 16800 37800 21000 metal3 +25200 21000 29400 25200 metal1 +25200 21000 29400 25200 metal2 +25200 21000 37800 25200 metal3 +33600 21000 37800 25200 metal2 +33600 16800 37800 25200 metal2 33600 16800 37800 21000 metal2 -33600 0 37800 21000 metal2 -33600 0 37800 4200 metal2 -33600 0 126000 4200 metal3 -121800 0 126000 4200 metal2 -121800 0 126000 8400 metal2 -121800 4200 126000 8400 metal2 -121800 4200 142800 8400 metal3 -138600 4200 142800 8400 metal2 -138600 4200 142800 67200 metal2 -138600 63000 142800 67200 metal1 -134400 63000 142800 67200 metal1 +33600 16800 42000 21000 metal3 +37800 16800 42000 21000 metal2 +37800 12600 42000 21000 metal2 +37800 12600 42000 16800 metal2 +37800 12600 71400 16800 metal3 +67200 12600 71400 16800 metal2 +67200 8400 71400 16800 metal2 +67200 8400 71400 12600 metal2 +67200 8400 88200 12600 metal3 +84000 8400 88200 12600 metal2 +84000 8400 88200 16800 metal2 +84000 12600 88200 16800 metal2 +84000 12600 142800 16800 metal3 +138600 12600 142800 16800 metal2 +138600 12600 142800 58800 metal2 +138600 54600 142800 58800 metal1 +134400 54600 142800 58800 metal1 +134400 54600 138600 58800 metal1 +134400 54600 138600 67200 metal2 +134400 63000 138600 67200 metal1 ) net49 ( @@ -6497,22 +6417,18 @@ net49 151200 121800 159600 126000 metal3 155400 121800 159600 126000 metal2 155400 117600 159600 126000 metal2 -155400 117600 159600 121800 metal1 -155400 117600 163800 121800 metal1 -159600 117600 163800 121800 metal1 -159600 109200 163800 121800 metal2 -159600 109200 163800 113400 metal2 -159600 109200 184800 113400 metal3 -180600 109200 184800 113400 metal2 -180600 100800 184800 113400 metal2 -180600 100800 184800 105000 metal2 -180600 100800 189000 105000 metal3 -184800 100800 189000 105000 metal2 -184800 46200 189000 105000 metal2 -184800 46200 189000 50400 metal2 -159600 46200 189000 50400 metal3 -159600 46200 163800 50400 metal2 -159600 21000 163800 50400 metal2 +155400 117600 159600 121800 metal2 +155400 117600 172200 121800 metal3 +168000 117600 172200 121800 metal2 +168000 113400 172200 121800 metal2 +168000 113400 172200 117600 metal2 +168000 113400 184800 117600 metal3 +180600 113400 184800 117600 metal2 +180600 37800 184800 117600 metal2 +180600 37800 184800 42000 metal2 +159600 37800 184800 42000 metal3 +159600 37800 163800 42000 metal2 +159600 21000 163800 42000 metal2 159600 21000 163800 25200 metal1 ) net5 @@ -6524,26 +6440,22 @@ net5 net50 ( 16800 134400 21000 138600 metal1 -16800 134400 21000 138600 metal2 -16800 134400 67200 138600 metal3 -63000 134400 67200 138600 metal2 -63000 130200 67200 138600 metal2 -63000 130200 67200 134400 metal2 -63000 130200 84000 134400 metal3 -79800 130200 84000 134400 metal2 -79800 130200 84000 134400 metal1 +16800 134400 21000 142800 metal2 +16800 138600 21000 142800 metal2 +16800 138600 79800 142800 metal3 +75600 138600 79800 142800 metal2 +75600 130200 79800 142800 metal2 +75600 130200 79800 134400 metal1 +75600 130200 84000 134400 metal1 ) net51 ( 16800 147000 21000 151200 metal1 16800 142800 21000 151200 metal2 16800 142800 21000 147000 metal2 -16800 142800 71400 147000 metal3 -67200 142800 71400 147000 metal2 -67200 138600 71400 147000 metal2 -67200 138600 71400 142800 metal2 -67200 138600 96600 142800 metal3 -92400 138600 96600 142800 metal2 +16800 142800 96600 147000 metal3 +92400 142800 96600 147000 metal2 +92400 138600 96600 147000 metal2 92400 138600 96600 142800 metal1 ) net52 @@ -6551,40 +6463,46 @@ net52 16800 163800 21000 168000 metal1 16800 155400 21000 168000 metal2 16800 155400 21000 159600 metal2 -16800 155400 96600 159600 metal3 -92400 155400 96600 159600 metal2 -92400 134400 96600 159600 metal2 +16800 155400 63000 159600 metal3 +58800 155400 63000 159600 metal2 +58800 147000 63000 159600 metal2 +58800 147000 63000 151200 metal2 +58800 147000 96600 151200 metal3 +92400 147000 96600 151200 metal2 +92400 134400 96600 151200 metal2 92400 134400 96600 138600 metal1 ) net53 ( -75600 54600 79800 58800 metal1 -75600 54600 79800 58800 metal2 -67200 54600 79800 58800 metal3 -67200 54600 71400 58800 metal2 -67200 16800 71400 58800 metal2 +67200 54600 79800 58800 metal1 +67200 54600 71400 58800 metal1 +67200 50400 71400 58800 metal2 +67200 50400 71400 54600 metal1 +63000 50400 71400 54600 metal1 +63000 50400 67200 54600 metal1 +63000 16800 67200 54600 metal2 +63000 16800 67200 21000 metal2 +63000 16800 71400 21000 metal3 67200 16800 71400 21000 metal2 -67200 16800 96600 21000 metal3 -92400 16800 96600 21000 metal2 -92400 12600 96600 21000 metal2 -92400 12600 96600 16800 metal1 -92400 12600 100800 16800 metal1 -96600 12600 100800 16800 metal1 -96600 4200 100800 16800 metal2 -96600 4200 100800 8400 metal2 -96600 4200 113400 8400 metal3 -109200 4200 113400 8400 metal2 -109200 0 113400 8400 metal2 -109200 0 113400 4200 metal2 -109200 0 155400 4200 metal3 -151200 0 155400 4200 metal2 -151200 0 155400 29400 metal2 -151200 25200 155400 29400 metal2 -151200 25200 172200 29400 metal3 -168000 25200 172200 29400 metal2 -168000 25200 172200 54600 metal2 -168000 50400 172200 54600 metal2 -168000 50400 176400 54600 metal3 +67200 12600 71400 21000 metal2 +67200 12600 71400 16800 metal2 +67200 12600 79800 16800 metal3 +75600 12600 79800 16800 metal2 +75600 8400 79800 16800 metal2 +75600 8400 79800 12600 metal1 +75600 8400 84000 12600 metal1 +79800 8400 84000 12600 metal1 +79800 4200 84000 12600 metal2 +79800 4200 84000 8400 metal2 +79800 4200 134400 8400 metal3 +130200 4200 134400 8400 metal2 +130200 4200 134400 12600 metal2 +130200 8400 134400 12600 metal2 +130200 8400 159600 12600 metal3 +155400 8400 159600 12600 metal2 +155400 8400 159600 54600 metal2 +155400 50400 159600 54600 metal2 +155400 50400 176400 54600 metal3 172200 50400 176400 54600 metal2 172200 50400 176400 54600 metal1 ) @@ -6743,16 +6661,13 @@ req_msg[1] ) req_msg[20] ( -25200 0 29400 4200 metal2 25200 0 29400 4200 metal3 25200 0 29400 4200 metal4 25200 0 29400 4200 metal5 25200 0 29400 4200 metal6 -25200 0 29400 12600 metal2 -25200 8400 29400 12600 metal2 -25200 8400 33600 12600 metal3 -29400 8400 33600 12600 metal2 -29400 8400 33600 25200 metal2 +25200 0 33600 4200 metal3 +29400 0 33600 4200 metal2 +29400 0 33600 25200 metal2 29400 21000 33600 25200 metal1 ) req_msg[21] @@ -6826,14 +6741,13 @@ req_msg[27] ) req_msg[28] ( +0 25200 4200 29400 metal2 0 25200 4200 29400 metal3 0 25200 4200 29400 metal4 0 25200 4200 29400 metal5 -0 25200 12600 29400 metal3 -8400 25200 12600 29400 metal2 -8400 25200 12600 33600 metal2 -8400 29400 12600 33600 metal2 -8400 29400 21000 33600 metal3 +0 25200 4200 33600 metal2 +0 29400 4200 33600 metal2 +0 29400 21000 33600 metal3 16800 29400 21000 33600 metal2 16800 29400 21000 33600 metal1 ) @@ -6871,13 +6785,12 @@ req_msg[30] req_msg[31] ( 163800 176400 168000 180600 metal1 -163800 176400 168000 189000 metal2 -163800 184800 168000 189000 metal2 -163800 184800 176400 189000 metal3 -172200 184800 176400 189000 metal2 -172200 184800 176400 201600 metal2 -172200 197400 176400 201600 metal2 -172200 197400 189000 201600 metal3 +163800 176400 168000 197400 metal2 +163800 193200 168000 197400 metal2 +163800 193200 189000 197400 metal3 +184800 193200 189000 197400 metal2 +184800 193200 189000 201600 metal2 +184800 197400 189000 201600 metal2 184800 197400 189000 201600 metal3 184800 197400 189000 201600 metal4 184800 197400 189000 201600 metal5 @@ -6898,22 +6811,19 @@ req_msg[3] req_msg[4] ( 172200 113400 176400 117600 metal1 -172200 113400 176400 117600 metal2 -172200 113400 189000 117600 metal3 -184800 113400 189000 117600 metal2 -184800 109200 189000 117600 metal2 -184800 109200 189000 113400 metal2 -184800 109200 200260 113400 metal3 +172200 109200 176400 117600 metal2 +172200 109200 176400 113400 metal2 +172200 109200 200260 113400 metal3 193200 109200 200260 113400 metal3 193200 109200 200260 113400 metal4 193200 109200 200260 113400 metal5 ) req_msg[5] ( -172200 29400 180600 33600 metal1 -176400 29400 180600 33600 metal1 -176400 0 180600 33600 metal2 -176400 0 180600 4200 metal2 +172200 29400 176400 33600 metal1 +172200 0 176400 33600 metal2 +172200 0 176400 4200 metal2 +172200 0 180600 4200 metal3 176400 0 180600 4200 metal3 176400 0 180600 4200 metal4 176400 0 180600 4200 metal5 @@ -6943,9 +6853,13 @@ req_msg[8] 21000 197400 25200 201600 metal4 21000 197400 25200 201600 metal5 21000 197400 25200 201600 metal6 -21000 197400 33600 201600 metal3 -29400 197400 33600 201600 metal2 -29400 176400 33600 201600 metal2 +21000 197400 29400 201600 metal3 +25200 197400 29400 201600 metal2 +25200 180600 29400 201600 metal2 +25200 180600 29400 184800 metal2 +25200 180600 33600 184800 metal3 +29400 180600 33600 184800 metal2 +29400 176400 33600 184800 metal2 29400 176400 33600 180600 metal1 ) req_msg[9] @@ -6963,13 +6877,9 @@ req_rdy 0 0 4200 4200 metal4 0 0 4200 4200 metal5 0 0 4200 4200 metal6 -0 0 8400 4200 metal3 -4200 0 8400 4200 metal2 -4200 0 8400 8400 metal2 -4200 4200 8400 8400 metal2 -4200 4200 21000 8400 metal3 -16800 4200 21000 8400 metal2 -16800 4200 21000 25200 metal2 +0 0 21000 4200 metal3 +16800 0 21000 4200 metal2 +16800 0 21000 25200 metal2 16800 21000 21000 25200 metal2 16800 21000 25200 25200 metal3 21000 21000 25200 25200 metal2 @@ -7002,9 +6912,12 @@ resp_msg[0] 0 159600 4200 163800 metal3 0 159600 4200 163800 metal4 0 159600 4200 163800 metal5 -0 159600 25200 163800 metal3 -21000 159600 25200 163800 metal2 -21000 159600 25200 168000 metal2 +0 159600 8400 163800 metal3 +4200 159600 8400 163800 metal2 +4200 159600 8400 168000 metal2 +4200 163800 8400 168000 metal2 +4200 163800 25200 168000 metal3 +21000 163800 25200 168000 metal2 21000 163800 25200 168000 metal1 ) resp_msg[10] @@ -7028,12 +6941,9 @@ resp_msg[11] resp_msg[12] ( 176400 25200 180600 29400 metal1 -176400 25200 180600 29400 metal2 -176400 25200 189000 29400 metal3 -184800 25200 189000 29400 metal2 -184800 0 189000 29400 metal2 -184800 0 189000 4200 metal2 -184800 0 193200 4200 metal3 +176400 0 180600 29400 metal2 +176400 0 180600 4200 metal2 +176400 0 193200 4200 metal3 189000 0 193200 4200 metal3 189000 0 193200 4200 metal4 189000 0 193200 4200 metal5 @@ -7064,13 +6974,15 @@ resp_msg[14] ) resp_msg[15] ( +12600 0 16800 4200 metal2 12600 0 16800 4200 metal3 12600 0 16800 4200 metal4 12600 0 16800 4200 metal5 12600 0 16800 4200 metal6 -12600 0 25200 4200 metal3 -21000 0 25200 4200 metal2 -21000 0 25200 29400 metal2 +12600 0 16800 29400 metal2 +12600 25200 16800 29400 metal2 +12600 25200 25200 29400 metal3 +21000 25200 25200 29400 metal2 21000 25200 25200 29400 metal1 ) resp_msg[1] @@ -7078,13 +6990,8 @@ resp_msg[1] 0 147000 4200 151200 metal3 0 147000 4200 151200 metal4 0 147000 4200 151200 metal5 -0 147000 8400 151200 metal3 -4200 147000 8400 151200 metal2 -4200 147000 8400 155400 metal2 -4200 151200 8400 155400 metal2 -4200 151200 25200 155400 metal3 -21000 151200 25200 155400 metal2 -21000 147000 25200 155400 metal2 +0 147000 25200 151200 metal3 +21000 147000 25200 151200 metal2 21000 147000 25200 151200 metal1 ) resp_msg[2] @@ -7092,9 +6999,12 @@ resp_msg[2] 0 130200 4200 134400 metal3 0 130200 4200 134400 metal4 0 130200 4200 134400 metal5 -0 130200 25200 134400 metal3 -21000 130200 25200 134400 metal2 -21000 130200 25200 138600 metal2 +0 130200 8400 134400 metal3 +4200 130200 8400 134400 metal2 +4200 130200 8400 138600 metal2 +4200 134400 8400 138600 metal2 +4200 134400 25200 138600 metal3 +21000 134400 25200 138600 metal2 21000 134400 25200 138600 metal1 ) resp_msg[3] @@ -7113,9 +7023,12 @@ resp_msg[4] 0 12600 4200 16800 metal3 0 12600 4200 16800 metal4 0 12600 4200 16800 metal5 -0 12600 29400 16800 metal3 -25200 12600 29400 16800 metal2 -25200 12600 29400 25200 metal2 +0 12600 25200 16800 metal3 +21000 12600 25200 16800 metal2 +21000 12600 25200 25200 metal2 +21000 21000 25200 25200 metal2 +21000 21000 29400 25200 metal3 +25200 21000 29400 25200 metal2 25200 21000 29400 25200 metal1 ) resp_msg[5] @@ -7141,12 +7054,9 @@ resp_msg[6] resp_msg[7] ( 176400 176400 180600 180600 metal1 -176400 176400 180600 180600 metal2 -176400 176400 189000 180600 metal3 -184800 176400 189000 180600 metal2 -184800 176400 189000 201600 metal2 -184800 197400 189000 201600 metal2 -184800 197400 200260 201600 metal3 +176400 176400 180600 201600 metal2 +176400 197400 180600 201600 metal2 +176400 197400 200260 201600 metal3 193200 197400 200260 201600 metal3 193200 197400 200260 201600 metal4 193200 197400 200260 201600 metal5 @@ -7186,9 +7096,12 @@ resp_rdy resp_val ( 176400 54600 180600 58800 metal1 -176400 50400 180600 58800 metal2 -176400 50400 180600 54600 metal2 -176400 50400 200260 54600 metal3 +176400 54600 180600 58800 metal2 +176400 54600 193200 58800 metal3 +189000 54600 193200 58800 metal2 +189000 50400 193200 58800 metal2 +189000 50400 193200 54600 metal2 +189000 50400 200260 54600 metal3 193200 50400 200260 54600 metal3 193200 50400 200260 54600 metal4 193200 50400 200260 54600 metal5 diff --git a/src/grt/test/congestion1.ok b/src/grt/test/congestion1.ok index 996d694e193..4d8bce12169 100644 --- a/src/grt/test/congestion1.ok +++ b/src/grt/test/congestion1.ok @@ -44,19 +44,19 @@ metal10 Vertical 2305 0 100.00% [INFO GRT-0101] Running extra iterations to remove overflow. [INFO GRT-0103] Extra Run for hard benchmark. -[INFO GRT-0197] Via related to pin nodes: 2610 -[INFO GRT-0198] Via related Steiner nodes: 118 +[INFO GRT-0197] Via related to pin nodes: 2588 +[INFO GRT-0198] Via related Steiner nodes: 99 [INFO GRT-0199] Via filling finished. -[INFO GRT-0111] Final number of vias: 4249 -[INFO GRT-0112] Final usage 3D: 17701 +[INFO GRT-0111] Final number of vias: 4185 +[INFO GRT-0112] Final usage 3D: 17382 [WARNING GRT-0115] Global routing finished with overflow. [INFO GRT-0096] Final congestion report: Layer Resource Demand Usage (%) Max H / Max V / Total Overflow --------------------------------------------------------------------------------------- -metal1 0 474 0.00% 3 / 1 / 474 -metal2 2209 2464 111.54% 1 / 4 / 795 -metal3 2208 2016 91.30% 2 / 1 / 379 +metal1 0 458 0.00% 3 / 2 / 458 +metal2 2209 2410 109.10% 1 / 4 / 756 +metal3 2208 1959 88.72% 2 / 1 / 356 metal4 0 0 0.00% 0 / 0 / 0 metal5 0 0 0.00% 0 / 0 / 0 metal6 0 0 0.00% 0 / 0 / 0 @@ -65,8 +65,8 @@ metal8 0 0 0.00% 0 / 0 / 0 metal9 0 0 0.00% 0 / 0 / 0 metal10 0 0 0.00% 0 / 0 / 0 --------------------------------------------------------------------------------------- -Total 4417 4954 112.16% 6 / 6 / 1648 +Total 4417 4827 109.28% 6 / 7 / 1570 -[INFO GRT-0018] Total wirelength: 14991 um +[INFO GRT-0018] Total wirelength: 14639 um [INFO GRT-0014] Routed nets: 563 No differences found. diff --git a/src/grt/test/congestion2.guideok b/src/grt/test/congestion2.guideok index 78fc8d1603c..0cfcff1e0bf 100644 --- a/src/grt/test/congestion2.guideok +++ b/src/grt/test/congestion2.guideok @@ -1,10 +1,10 @@ _000_ ( 54600 105000 58800 109200 metal1 -54600 105000 58800 109200 metal2 -54600 105000 63000 109200 metal3 -58800 105000 63000 109200 metal2 -58800 105000 63000 113400 metal2 +54600 105000 58800 113400 metal2 +54600 109200 58800 113400 metal2 +54600 109200 63000 113400 metal3 +58800 109200 63000 113400 metal2 58800 109200 63000 113400 metal1 ) _001_ @@ -56,20 +56,21 @@ _007_ _008_ ( 105000 138600 109200 142800 metal1 -105000 138600 109200 147000 metal2 -105000 142800 109200 147000 metal2 -105000 142800 113400 147000 metal3 +105000 138600 109200 142800 metal2 +100800 138600 109200 142800 metal3 +100800 138600 105000 142800 metal2 +100800 138600 105000 147000 metal2 +100800 142800 105000 147000 metal2 +100800 142800 113400 147000 metal3 109200 142800 113400 147000 metal2 109200 142800 113400 147000 metal1 ) _009_ ( 121800 134400 126000 138600 metal1 -121800 134400 126000 142800 metal2 -121800 138600 126000 142800 metal2 -121800 138600 130200 142800 metal3 -126000 138600 130200 142800 metal2 -126000 134400 130200 142800 metal2 +121800 134400 126000 138600 metal2 +121800 134400 130200 138600 metal3 +126000 134400 130200 138600 metal2 126000 134400 130200 138600 metal1 ) _010_ @@ -84,13 +85,8 @@ _010_ _011_ ( 151200 109200 155400 113400 metal1 -151200 109200 155400 117600 metal2 -151200 113400 155400 117600 metal2 -151200 113400 159600 117600 metal3 -155400 113400 159600 117600 metal2 -155400 109200 159600 117600 metal2 -155400 109200 159600 113400 metal2 -155400 109200 163800 113400 metal3 +151200 109200 155400 113400 metal2 +151200 109200 163800 113400 metal3 159600 109200 163800 113400 metal2 159600 105000 163800 113400 metal2 159600 105000 163800 109200 metal1 @@ -106,15 +102,14 @@ _013_ 130200 117600 134400 121800 metal1 130200 117600 134400 121800 metal2 130200 117600 134400 121800 metal3 -130200 117600 134400 130200 metal4 -130200 126000 134400 130200 metal3 -130200 126000 138600 130200 metal3 -134400 126000 138600 130200 metal2 -134400 117600 138600 130200 metal2 -134400 117600 138600 121800 metal2 -134400 117600 142800 121800 metal3 -138600 117600 142800 121800 metal3 -138600 113400 142800 121800 metal4 +130200 117600 134400 126000 metal4 +130200 121800 134400 126000 metal3 +130200 121800 138600 126000 metal3 +134400 121800 138600 126000 metal3 +134400 113400 138600 126000 metal4 +134400 113400 138600 117600 metal4 +134400 113400 142800 117600 metal5 +138600 113400 142800 117600 metal4 138600 113400 142800 117600 metal3 138600 113400 142800 117600 metal2 138600 113400 142800 117600 metal1 @@ -128,26 +123,33 @@ _014_ _015_ ( 54600 84000 58800 88200 metal1 -54600 84000 58800 92400 metal2 -54600 88200 58800 92400 metal2 -54600 88200 63000 92400 metal3 -58800 88200 63000 92400 metal2 -58800 84000 63000 92400 metal2 +54600 79800 58800 88200 metal2 +54600 79800 58800 84000 metal2 +54600 79800 63000 84000 metal3 +58800 79800 63000 84000 metal2 +58800 79800 63000 88200 metal2 58800 84000 63000 88200 metal1 ) _016_ ( 67200 63000 71400 67200 metal1 -67200 58800 71400 67200 metal2 -67200 58800 71400 63000 metal2 -67200 58800 75600 63000 metal3 -71400 58800 75600 63000 metal2 +67200 63000 71400 67200 metal2 +67200 63000 75600 67200 metal3 +71400 63000 75600 67200 metal2 +71400 58800 75600 67200 metal2 71400 58800 75600 63000 metal1 ) _017_ ( 113400 67200 117600 71400 metal1 -113400 67200 117600 79800 metal2 +113400 67200 117600 75600 metal2 +113400 71400 117600 75600 metal2 +109200 71400 117600 75600 metal3 +109200 71400 113400 75600 metal2 +109200 71400 113400 79800 metal2 +109200 75600 113400 79800 metal2 +109200 75600 117600 79800 metal3 +113400 75600 117600 79800 metal2 113400 75600 117600 79800 metal1 ) _018_ @@ -216,11 +218,10 @@ _026_ _027_ ( 67200 37800 71400 42000 metal1 -67200 25200 71400 42000 metal2 -67200 25200 71400 29400 metal2 -67200 25200 75600 29400 metal3 -71400 25200 75600 29400 metal2 -71400 25200 75600 37800 metal2 +67200 33600 71400 42000 metal2 +67200 33600 71400 37800 metal2 +67200 33600 75600 37800 metal3 +71400 33600 75600 37800 metal2 71400 33600 75600 37800 metal1 ) _028_ @@ -233,12 +234,9 @@ _029_ ( 84000 130200 88200 134400 metal1 84000 130200 88200 134400 metal2 -79800 130200 88200 134400 metal3 -79800 130200 84000 134400 metal2 -79800 130200 84000 138600 metal2 -79800 134400 84000 138600 metal2 -79800 134400 92400 138600 metal3 -88200 134400 92400 138600 metal2 +84000 130200 92400 134400 metal3 +88200 130200 92400 134400 metal2 +88200 130200 92400 138600 metal2 88200 134400 92400 138600 metal1 ) _030_ @@ -249,11 +247,9 @@ _030_ _031_ ( 126000 147000 130200 151200 metal1 -126000 147000 130200 151200 metal2 -126000 147000 134400 151200 metal3 -130200 147000 134400 151200 metal3 -130200 138600 134400 151200 metal4 -130200 138600 134400 142800 metal3 +126000 138600 130200 151200 metal2 +126000 138600 130200 142800 metal2 +126000 138600 134400 142800 metal3 130200 138600 134400 142800 metal2 130200 138600 134400 142800 metal1 ) @@ -310,12 +306,11 @@ _038_ _039_ ( 71400 58800 75600 63000 metal1 -71400 54600 75600 63000 metal2 -71400 54600 75600 58800 metal2 -71400 54600 79800 58800 metal3 -75600 54600 79800 58800 metal3 -75600 54600 79800 67200 metal4 -75600 63000 79800 67200 metal3 +71400 58800 75600 63000 metal2 +71400 58800 75600 63000 metal3 +71400 58800 75600 67200 metal4 +71400 63000 75600 67200 metal3 +71400 63000 79800 67200 metal3 75600 63000 79800 67200 metal2 75600 63000 79800 67200 metal1 ) @@ -367,11 +362,9 @@ _045_ ( 84000 121800 88200 126000 metal1 84000 121800 88200 126000 metal2 -84000 121800 88200 126000 metal3 -84000 117600 88200 126000 metal4 -84000 117600 88200 121800 metal4 -84000 117600 92400 121800 metal5 -88200 117600 92400 121800 metal4 +84000 121800 92400 126000 metal3 +88200 121800 92400 126000 metal3 +88200 117600 92400 126000 metal4 88200 117600 92400 121800 metal3 88200 117600 92400 121800 metal2 88200 117600 92400 121800 metal1 @@ -379,11 +372,14 @@ _045_ _046_ ( 105000 142800 109200 147000 metal1 -105000 142800 109200 155400 metal2 -105000 151200 109200 155400 metal2 -105000 151200 113400 155400 metal3 -109200 151200 113400 155400 metal2 -109200 147000 113400 155400 metal2 +105000 142800 109200 147000 metal2 +105000 142800 109200 147000 metal3 +105000 142800 109200 147000 metal4 +105000 142800 113400 147000 metal5 +109200 142800 113400 147000 metal4 +109200 142800 113400 151200 metal4 +109200 147000 113400 151200 metal3 +109200 147000 113400 151200 metal2 109200 147000 113400 151200 metal1 ) _047_ @@ -391,11 +387,10 @@ _047_ 117600 134400 121800 138600 metal1 117600 134400 121800 138600 metal2 117600 134400 121800 138600 metal3 -117600 134400 121800 151200 metal4 -117600 147000 121800 151200 metal3 -117600 147000 126000 151200 metal3 -121800 147000 126000 151200 metal2 -121800 142800 126000 151200 metal2 +117600 134400 121800 147000 metal4 +117600 142800 121800 147000 metal3 +117600 142800 126000 147000 metal3 +121800 142800 126000 147000 metal2 121800 142800 126000 147000 metal1 ) _048_ @@ -412,10 +407,11 @@ _049_ _050_ ( 121800 79800 126000 84000 metal1 -121800 79800 126000 84000 metal2 -121800 79800 130200 84000 metal3 -126000 79800 130200 84000 metal3 -126000 79800 130200 88200 metal4 +121800 71400 126000 84000 metal2 +121800 71400 126000 75600 metal2 +121800 71400 130200 75600 metal3 +126000 71400 130200 75600 metal3 +126000 71400 130200 88200 metal4 126000 84000 130200 88200 metal3 126000 84000 130200 88200 metal2 126000 84000 130200 88200 metal1 @@ -450,13 +446,10 @@ _054_ 58800 109200 63000 113400 metal3 58800 109200 63000 117600 metal4 58800 113400 63000 117600 metal4 -58800 113400 67200 117600 metal5 -63000 113400 67200 117600 metal4 -63000 105000 67200 117600 metal4 -63000 105000 67200 109200 metal3 -63000 105000 71400 109200 metal3 -67200 105000 71400 109200 metal2 -67200 105000 71400 117600 metal2 +58800 113400 71400 117600 metal5 +67200 113400 71400 117600 metal4 +67200 113400 71400 117600 metal3 +67200 113400 71400 117600 metal2 67200 113400 71400 117600 metal1 ) _055_ @@ -490,29 +483,37 @@ _057_ _058_ ( 75600 113400 79800 117600 metal1 -75600 113400 79800 117600 metal2 -75600 113400 84000 117600 metal3 -79800 113400 84000 117600 metal2 -79800 113400 84000 121800 metal2 +75600 109200 79800 117600 metal2 +75600 109200 79800 113400 metal2 +75600 109200 84000 113400 metal3 +79800 109200 84000 113400 metal3 +79800 109200 84000 121800 metal4 +79800 117600 84000 121800 metal3 +79800 117600 84000 121800 metal2 79800 117600 84000 121800 metal1 ) _059_ ( -67200 105000 71400 113400 metal4 -67200 109200 71400 113400 metal3 -67200 109200 71400 113400 metal2 67200 109200 71400 113400 metal1 -67200 100800 71400 109200 metal4 +67200 109200 71400 113400 metal2 +67200 109200 71400 113400 metal3 67200 109200 71400 117600 metal4 67200 113400 71400 117600 metal3 67200 113400 71400 117600 metal2 67200 113400 71400 117600 metal1 +67200 100800 71400 109200 metal2 +67200 105000 71400 113400 metal2 67200 100800 71400 105000 metal1 67200 100800 71400 105000 metal2 67200 100800 71400 105000 metal3 67200 100800 71400 105000 metal4 -67200 100800 88200 105000 metal5 -84000 100800 88200 105000 metal4 +67200 100800 75600 105000 metal5 +71400 100800 75600 105000 metal4 +71400 100800 75600 109200 metal4 +71400 105000 75600 109200 metal3 +71400 105000 88200 109200 metal3 +84000 105000 88200 109200 metal3 +84000 100800 88200 109200 metal4 84000 100800 88200 105000 metal3 84000 100800 88200 105000 metal2 84000 100800 88200 105000 metal1 @@ -520,10 +521,8 @@ _059_ 84000 96600 88200 100800 metal1 63000 105000 67200 109200 metal1 63000 105000 67200 109200 metal2 -63000 105000 67200 109200 metal3 -63000 105000 67200 109200 metal4 -63000 105000 71400 109200 metal5 -67200 105000 71400 109200 metal4 +63000 105000 71400 109200 metal3 +67200 105000 71400 109200 metal2 ) _060_ ( @@ -542,20 +541,18 @@ _061_ _062_ ( 100800 134400 105000 138600 metal1 -100800 134400 105000 142800 metal2 -100800 138600 105000 142800 metal2 -100800 138600 109200 142800 metal3 -105000 138600 109200 142800 metal2 +100800 134400 105000 138600 metal2 +100800 134400 109200 138600 metal3 +105000 134400 109200 138600 metal2 +105000 134400 109200 142800 metal2 105000 138600 109200 142800 metal1 ) _063_ ( 126000 134400 130200 138600 metal1 -126000 130200 130200 138600 metal2 -126000 130200 130200 134400 metal2 -126000 130200 134400 134400 metal3 -130200 130200 134400 134400 metal2 -130200 130200 134400 138600 metal2 +126000 134400 130200 138600 metal2 +126000 134400 134400 138600 metal3 +130200 134400 134400 138600 metal2 130200 134400 134400 138600 metal1 ) _064_ @@ -590,11 +587,10 @@ _066_ _067_ ( 126000 113400 130200 117600 metal1 -126000 109200 130200 117600 metal2 -126000 109200 130200 113400 metal2 -126000 109200 134400 113400 metal3 -130200 109200 134400 113400 metal2 -130200 109200 134400 121800 metal2 +126000 113400 130200 117600 metal2 +126000 113400 134400 117600 metal3 +130200 113400 134400 117600 metal2 +130200 113400 134400 121800 metal2 130200 117600 134400 121800 metal1 ) _068_ @@ -619,10 +615,8 @@ _070_ 63000 58800 67200 63000 metal1 63000 58800 67200 63000 metal2 63000 58800 71400 63000 metal3 -67200 58800 71400 63000 metal3 -67200 58800 71400 67200 metal4 -67200 63000 71400 67200 metal3 -67200 63000 71400 67200 metal2 +67200 58800 71400 63000 metal2 +67200 58800 71400 67200 metal2 67200 63000 71400 67200 metal1 ) _071_ @@ -647,22 +641,23 @@ _072_ _073_ ( 88200 37800 92400 42000 metal1 -88200 37800 92400 42000 metal2 -88200 37800 92400 42000 metal3 -88200 37800 92400 42000 metal4 -88200 37800 96600 42000 metal5 -92400 37800 96600 42000 metal4 -92400 37800 96600 46200 metal4 -92400 42000 96600 46200 metal3 -92400 42000 96600 46200 metal2 +88200 37800 92400 46200 metal2 +88200 42000 92400 46200 metal2 +88200 42000 96600 46200 metal3 92400 42000 96600 46200 metal1 +92400 42000 96600 46200 metal2 +92400 42000 96600 46200 metal3 +92400 42000 96600 46200 metal4 +92400 42000 96600 46200 metal5 +92400 37800 96600 46200 metal6 +92400 37800 96600 42000 metal5 92400 37800 100800 42000 metal5 96600 37800 100800 42000 metal4 -96600 12600 100800 42000 metal4 -96600 12600 100800 16800 metal3 -96600 12600 105000 16800 metal3 -100800 12600 105000 16800 metal3 -100800 12600 105000 37800 metal4 +96600 21000 100800 42000 metal4 +96600 21000 100800 25200 metal3 +96600 21000 105000 25200 metal3 +100800 21000 105000 25200 metal3 +100800 21000 105000 37800 metal4 100800 33600 105000 37800 metal3 100800 33600 105000 37800 metal2 100800 33600 105000 37800 metal1 @@ -728,8 +723,12 @@ _081_ _082_ ( 100800 84000 105000 88200 metal1 -100800 84000 105000 88200 metal2 -100800 84000 109200 88200 metal3 +100800 84000 105000 96600 metal2 +100800 92400 105000 96600 metal2 +100800 92400 109200 96600 metal3 +105000 92400 109200 96600 metal3 +105000 84000 109200 96600 metal4 +105000 84000 109200 88200 metal3 105000 84000 109200 88200 metal2 105000 84000 109200 88200 metal1 ) @@ -737,15 +736,23 @@ _083_ ( 88200 134400 92400 138600 metal1 88200 134400 92400 138600 metal2 -88200 134400 100800 138600 metal3 -96600 134400 100800 138600 metal2 -96600 130200 100800 138600 metal2 +84000 134400 92400 138600 metal3 +84000 134400 88200 138600 metal2 +84000 134400 88200 176400 metal2 +84000 172200 88200 176400 metal2 +84000 172200 100800 176400 metal3 +96600 172200 100800 176400 metal2 +96600 130200 100800 176400 metal2 96600 130200 100800 134400 metal1 ) _084_ ( 100800 138600 105000 142800 metal1 -100800 138600 105000 151200 metal2 +100800 138600 105000 142800 metal2 +100800 138600 105000 142800 metal3 +100800 138600 105000 151200 metal4 +100800 147000 105000 151200 metal3 +100800 147000 105000 151200 metal2 100800 147000 105000 151200 metal1 ) _085_ @@ -791,9 +798,11 @@ _091_ ( 58800 67200 63000 71400 metal1 58800 67200 63000 71400 metal2 -58800 67200 67200 71400 metal3 -63000 67200 67200 71400 metal3 -63000 67200 67200 79800 metal4 +58800 67200 63000 71400 metal3 +58800 67200 63000 79800 metal4 +58800 75600 63000 79800 metal4 +58800 75600 67200 79800 metal5 +63000 75600 67200 79800 metal4 63000 75600 67200 79800 metal3 63000 75600 67200 79800 metal2 63000 75600 67200 79800 metal1 @@ -812,13 +821,9 @@ _093_ 75600 63000 79800 67200 metal1 75600 63000 79800 67200 metal2 75600 63000 79800 67200 metal3 -75600 63000 79800 67200 metal4 -75600 63000 79800 67200 metal5 -75600 58800 79800 67200 metal6 -75600 58800 79800 63000 metal5 -75600 58800 84000 63000 metal5 -79800 58800 84000 63000 metal4 -79800 58800 84000 63000 metal3 +75600 58800 79800 67200 metal4 +75600 58800 79800 63000 metal3 +75600 58800 84000 63000 metal3 79800 58800 84000 63000 metal2 79800 58800 84000 63000 metal1 ) @@ -842,11 +847,10 @@ _096_ _097_ ( 75600 46200 79800 50400 metal1 -75600 46200 79800 54600 metal2 -75600 50400 79800 54600 metal2 -75600 50400 84000 54600 metal3 -79800 50400 84000 54600 metal2 -79800 42000 84000 54600 metal2 +75600 42000 79800 50400 metal2 +75600 42000 79800 46200 metal2 +75600 42000 84000 46200 metal3 +79800 42000 84000 46200 metal2 79800 42000 84000 46200 metal1 ) _098_ @@ -933,36 +937,45 @@ _108_ ) _109_ ( -79800 109200 84000 113400 metal1 -79800 105000 84000 113400 metal2 -79800 105000 84000 109200 metal1 79800 100800 84000 105000 metal1 -79800 100800 84000 105000 metal2 -79800 100800 88200 105000 metal3 -84000 100800 88200 105000 metal2 -84000 100800 88200 105000 metal1 79800 100800 84000 109200 metal2 +79800 105000 84000 109200 metal1 +79800 109200 84000 113400 metal1 +79800 109200 84000 113400 metal2 +79800 109200 88200 113400 metal3 +84000 109200 88200 113400 metal2 +84000 100800 88200 113400 metal2 +84000 100800 88200 105000 metal1 +79800 105000 84000 113400 metal2 ) _110_ ( +105000 134400 109200 142800 metal4 +105000 138600 109200 142800 metal3 +105000 138600 109200 142800 metal2 +105000 138600 109200 159600 metal2 +105000 155400 109200 159600 metal2 +105000 155400 151200 159600 metal3 +147000 155400 151200 159600 metal2 +147000 134400 151200 159600 metal2 105000 134400 109200 138600 metal1 105000 134400 109200 138600 metal2 105000 134400 109200 138600 metal3 -105000 134400 109200 184800 metal4 -105000 180600 109200 184800 metal3 -105000 180600 147000 184800 metal3 -142800 180600 147000 184800 metal2 -142800 134400 147000 184800 metal2 -105000 126000 109200 138600 metal4 +105000 134400 109200 138600 metal4 +105000 134400 113400 138600 metal5 +109200 134400 113400 138600 metal5 +109200 126000 113400 138600 metal6 +109200 126000 113400 130200 metal5 +105000 126000 113400 130200 metal5 +105000 126000 109200 130200 metal4 105000 126000 109200 130200 metal3 105000 126000 109200 130200 metal2 105000 126000 109200 130200 metal1 -142800 134400 147000 138600 metal2 -142800 134400 147000 138600 metal3 -142800 130200 147000 138600 metal4 -142800 130200 147000 134400 metal3 -142800 130200 147000 134400 metal2 142800 130200 147000 134400 metal1 +142800 130200 147000 134400 metal2 +142800 130200 151200 134400 metal3 +147000 130200 151200 134400 metal2 +147000 130200 151200 138600 metal2 147000 134400 151200 138600 metal1 147000 134400 151200 138600 metal2 147000 134400 151200 138600 metal3 @@ -972,31 +985,31 @@ _110_ 151200 134400 155400 138600 metal3 151200 134400 155400 138600 metal2 151200 134400 155400 138600 metal1 -142800 134400 151200 138600 metal3 ) _111_ ( 67200 63000 71400 67200 metal1 67200 63000 71400 67200 metal2 -67200 63000 79800 67200 metal3 -75600 63000 79800 67200 metal3 +67200 63000 71400 67200 metal3 +67200 63000 71400 67200 metal4 +67200 63000 79800 67200 metal5 75600 63000 79800 67200 metal4 -75600 63000 84000 67200 metal5 -79800 63000 84000 67200 metal4 -79800 63000 84000 67200 metal3 -79800 63000 84000 67200 metal2 79800 63000 84000 67200 metal1 +79800 63000 84000 67200 metal2 +79800 63000 84000 67200 metal3 +79800 63000 84000 67200 metal4 +75600 63000 84000 67200 metal5 63000 63000 67200 67200 metal1 63000 63000 67200 67200 metal2 63000 63000 71400 67200 metal3 -75600 63000 79800 71400 metal4 -75600 67200 79800 71400 metal3 -75600 67200 79800 71400 metal2 -75600 67200 79800 71400 metal1 79800 63000 84000 71400 metal4 79800 67200 84000 71400 metal3 79800 67200 84000 71400 metal2 79800 67200 84000 71400 metal1 +75600 63000 79800 71400 metal4 +75600 67200 79800 71400 metal3 +75600 67200 79800 71400 metal2 +75600 67200 79800 71400 metal1 ) _112_ ( @@ -1004,77 +1017,60 @@ _112_ 100800 63000 105000 71400 metal2 100800 63000 105000 67200 metal2 100800 63000 109200 67200 metal3 -117600 63000 121800 67200 metal3 -117600 63000 121800 71400 metal4 -117600 67200 121800 71400 metal3 -117600 67200 121800 71400 metal2 -117600 67200 121800 71400 metal1 105000 63000 109200 67200 metal1 105000 63000 109200 67200 metal2 105000 63000 109200 67200 metal3 -105000 58800 109200 67200 metal4 -105000 58800 109200 63000 metal3 -105000 58800 121800 63000 metal3 -117600 58800 121800 63000 metal3 -117600 58800 121800 67200 metal4 +105000 63000 109200 71400 metal4 +105000 67200 109200 71400 metal4 +105000 67200 121800 71400 metal5 +117600 67200 121800 71400 metal4 +117600 67200 121800 71400 metal3 +117600 67200 121800 71400 metal2 +117600 67200 121800 71400 metal1 +117600 63000 121800 71400 metal4 +117600 63000 121800 67200 metal3 117600 63000 126000 67200 metal3 121800 63000 126000 67200 metal2 121800 63000 126000 67200 metal1 ) _113_ ( +113400 54600 117600 58800 metal3 +113400 50400 117600 58800 metal4 105000 54600 117600 58800 metal3 105000 54600 109200 58800 metal2 105000 54600 109200 58800 metal1 -113400 54600 117600 58800 metal3 -113400 54600 117600 58800 metal4 -113400 54600 117600 58800 metal5 -113400 54600 117600 67200 metal6 -113400 63000 117600 67200 metal5 -113400 63000 117600 67200 metal4 -113400 63000 117600 67200 metal3 -113400 63000 117600 67200 metal2 -113400 63000 117600 67200 metal1 +109200 50400 113400 54600 metal2 +109200 50400 117600 54600 metal3 105000 50400 109200 54600 metal1 105000 50400 109200 54600 metal2 -105000 50400 117600 54600 metal3 -113400 54600 121800 58800 metal5 -117600 54600 121800 58800 metal5 -117600 46200 121800 58800 metal6 -117600 46200 121800 50400 metal5 +105000 50400 113400 54600 metal3 +113400 50400 117600 54600 metal3 +113400 50400 117600 54600 metal4 +113400 50400 117600 54600 metal5 +113400 46200 117600 54600 metal6 +113400 46200 117600 50400 metal5 +113400 46200 121800 50400 metal5 117600 46200 121800 50400 metal4 117600 46200 121800 50400 metal3 117600 46200 121800 50400 metal2 117600 46200 121800 50400 metal1 -113400 50400 117600 54600 metal2 -113400 50400 117600 54600 metal3 -113400 50400 117600 54600 metal4 -113400 50400 117600 54600 metal5 -113400 50400 117600 58800 metal6 +113400 54600 117600 67200 metal4 +113400 63000 117600 67200 metal3 +113400 63000 117600 67200 metal2 +113400 63000 117600 67200 metal1 +109200 46200 113400 54600 metal2 109200 46200 113400 50400 metal1 -109200 46200 113400 50400 metal2 -109200 46200 117600 50400 metal3 -113400 46200 117600 50400 metal2 -113400 46200 117600 54600 metal2 ) _114_ ( -100800 33600 105000 42000 metal4 -100800 37800 105000 42000 metal3 -100800 37800 105000 42000 metal2 +100800 33600 105000 42000 metal2 100800 37800 105000 42000 metal1 -100800 37800 105000 54600 metal4 -100800 50400 105000 54600 metal3 -100800 50400 105000 54600 metal2 +100800 37800 105000 54600 metal2 100800 50400 105000 54600 metal1 88200 33600 92400 37800 metal1 88200 33600 92400 37800 metal2 88200 33600 96600 37800 metal3 -92400 33600 96600 42000 metal4 -92400 37800 96600 42000 metal3 -92400 37800 96600 42000 metal2 -92400 37800 96600 46200 metal2 -92400 42000 96600 46200 metal1 100800 33600 113400 37800 metal3 109200 33600 113400 37800 metal2 109200 33600 113400 37800 metal1 @@ -1085,25 +1081,35 @@ _114_ 92400 33600 105000 37800 metal5 100800 33600 105000 37800 metal4 100800 33600 105000 37800 metal3 +100800 33600 105000 37800 metal2 +92400 33600 96600 46200 metal4 +92400 42000 96600 46200 metal3 +92400 42000 96600 46200 metal2 +92400 42000 96600 46200 metal1 ) _115_ ( -79800 37800 84000 54600 metal4 -79800 50400 84000 54600 metal3 -79800 50400 84000 54600 metal2 +79800 37800 84000 54600 metal2 79800 50400 84000 54600 metal1 79800 50400 84000 58800 metal2 79800 54600 84000 58800 metal1 67200 42000 71400 46200 metal1 67200 42000 71400 46200 metal2 -67200 42000 71400 46200 metal3 -67200 37800 71400 46200 metal4 -67200 37800 71400 42000 metal4 -67200 37800 75600 42000 metal5 -71400 37800 75600 42000 metal4 -71400 37800 75600 42000 metal3 -71400 37800 75600 42000 metal2 +63000 42000 71400 46200 metal3 +63000 42000 67200 46200 metal2 +63000 33600 67200 46200 metal2 +63000 33600 67200 37800 metal2 +63000 33600 71400 37800 metal3 +67200 33600 71400 37800 metal2 +67200 16800 71400 37800 metal2 +67200 16800 71400 21000 metal2 +67200 16800 75600 21000 metal3 +71400 16800 75600 21000 metal3 +71400 16800 75600 42000 metal4 71400 37800 75600 42000 metal1 +71400 37800 75600 42000 metal2 +71400 37800 75600 42000 metal3 +71400 37800 75600 42000 metal4 71400 37800 84000 42000 metal5 79800 37800 84000 42000 metal4 79800 37800 84000 42000 metal3 @@ -1112,8 +1118,8 @@ _115_ ) _116_ ( -100800 84000 105000 92400 metal2 -100800 88200 105000 92400 metal2 +100800 84000 105000 92400 metal4 +100800 88200 105000 92400 metal3 100800 88200 113400 92400 metal3 109200 88200 113400 92400 metal2 109200 84000 113400 92400 metal2 @@ -1137,53 +1143,42 @@ _116_ ) _117_ ( -92400 117600 96600 121800 metal1 -92400 117600 96600 121800 metal2 -92400 117600 96600 121800 metal3 -92400 117600 96600 121800 metal4 -92400 117600 100800 121800 metal5 -96600 117600 100800 121800 metal4 -96600 113400 100800 121800 metal4 96600 113400 100800 117600 metal4 96600 113400 105000 117600 metal5 100800 113400 105000 117600 metal4 100800 113400 105000 117600 metal3 100800 113400 105000 117600 metal2 100800 113400 105000 117600 metal1 -92400 130200 96600 134400 metal1 -92400 130200 96600 134400 metal2 -92400 130200 96600 134400 metal3 -92400 126000 96600 134400 metal4 -92400 126000 96600 130200 metal4 -92400 126000 100800 130200 metal5 -96600 126000 100800 130200 metal4 -96600 121800 100800 130200 metal4 -96600 121800 100800 126000 metal3 -92400 121800 100800 126000 metal3 -92400 121800 96600 126000 metal3 -92400 117600 96600 126000 metal4 +92400 126000 96600 134400 metal2 84000 113400 88200 117600 metal1 -84000 113400 88200 117600 metal2 -84000 113400 92400 117600 metal3 -88200 113400 92400 117600 metal3 -88200 113400 92400 121800 metal4 -88200 117600 92400 121800 metal4 -88200 117600 96600 121800 metal5 +84000 109200 88200 117600 metal2 +84000 109200 88200 113400 metal2 +84000 109200 100800 113400 metal3 +96600 109200 100800 113400 metal3 +96600 109200 100800 117600 metal4 88200 126000 92400 130200 metal1 88200 126000 92400 134400 metal2 88200 130200 92400 134400 metal2 88200 130200 96600 134400 metal3 +92400 130200 96600 134400 metal2 +92400 130200 96600 134400 metal1 +92400 126000 96600 130200 metal2 +92400 126000 96600 130200 metal3 +92400 126000 96600 130200 metal4 +92400 126000 100800 130200 metal5 +96600 126000 100800 130200 metal4 +96600 113400 100800 130200 metal4 +92400 117600 96600 130200 metal4 +92400 117600 96600 121800 metal3 +92400 117600 96600 121800 metal2 +92400 117600 96600 121800 metal1 ) _118_ ( -100800 138600 105000 142800 metal1 -100800 138600 105000 142800 metal2 -100800 138600 105000 142800 metal3 -100800 138600 105000 142800 metal4 -100800 138600 109200 142800 metal5 -105000 138600 109200 142800 metal4 -105000 138600 109200 142800 metal3 -105000 138600 109200 142800 metal2 +105000 138600 113400 142800 metal3 +109200 138600 113400 142800 metal3 +109200 134400 113400 142800 metal4 +113400 130200 117600 134400 metal4 113400 130200 117600 134400 metal5 113400 121800 117600 134400 metal6 113400 121800 117600 126000 metal5 @@ -1191,34 +1186,41 @@ _118_ 113400 121800 117600 126000 metal3 113400 121800 117600 126000 metal2 113400 121800 117600 126000 metal1 +100800 138600 105000 142800 metal1 +100800 138600 105000 142800 metal2 +100800 138600 105000 142800 metal3 +100800 138600 105000 142800 metal4 +100800 138600 109200 142800 metal5 +105000 138600 109200 142800 metal4 +105000 138600 109200 142800 metal3 113400 130200 121800 134400 metal5 117600 130200 121800 134400 metal4 117600 130200 121800 134400 metal3 117600 130200 121800 134400 metal2 117600 130200 121800 134400 metal1 -105000 147000 109200 151200 metal1 -105000 147000 109200 151200 metal2 105000 147000 117600 151200 metal3 113400 147000 117600 151200 metal2 113400 147000 117600 151200 metal1 -105000 138600 117600 142800 metal5 -113400 138600 117600 142800 metal5 -113400 130200 117600 142800 metal6 -100800 147000 109200 151200 metal3 -100800 147000 105000 151200 metal3 -100800 138600 105000 151200 metal4 -105000 134400 109200 142800 metal2 -105000 134400 109200 138600 metal2 -105000 134400 113400 138600 metal3 -109200 134400 113400 138600 metal2 109200 134400 113400 138600 metal1 +109200 134400 113400 138600 metal2 +109200 134400 113400 138600 metal3 +109200 134400 113400 138600 metal4 +109200 134400 117600 138600 metal5 +113400 134400 117600 138600 metal4 +113400 130200 117600 138600 metal4 +105000 138600 109200 151200 metal4 +105000 147000 109200 151200 metal3 +105000 147000 109200 151200 metal2 +105000 147000 109200 151200 metal1 ) _119_ ( -121800 130200 126000 142800 metal4 -121800 138600 126000 142800 metal4 -121800 138600 130200 142800 metal5 -126000 138600 130200 142800 metal4 +121800 130200 130200 134400 metal3 +126000 130200 130200 134400 metal3 +126000 130200 130200 138600 metal4 +126000 134400 130200 138600 metal3 +126000 134400 130200 138600 metal2 +126000 134400 130200 138600 metal1 117600 117600 121800 121800 metal1 117600 117600 121800 121800 metal2 117600 117600 121800 121800 metal3 @@ -1235,67 +1237,62 @@ _119_ 113400 121800 117600 126000 metal3 113400 121800 117600 126000 metal4 113400 121800 121800 126000 metal5 -126000 142800 130200 147000 metal3 -126000 138600 130200 147000 metal4 +126000 134400 130200 147000 metal4 117600 121800 121800 126000 metal5 117600 117600 121800 126000 metal6 117600 142800 121800 147000 metal1 117600 142800 121800 147000 metal2 -117600 142800 130200 147000 metal3 +117600 142800 121800 147000 metal3 +117600 142800 121800 147000 metal4 +117600 142800 130200 147000 metal5 +126000 142800 130200 147000 metal4 +126000 142800 130200 147000 metal3 126000 142800 134400 147000 metal3 130200 142800 134400 147000 metal2 130200 142800 134400 147000 metal1 -117600 121800 126000 126000 metal5 -121800 121800 126000 126000 metal5 -121800 121800 126000 134400 metal6 -121800 130200 126000 134400 metal5 +117600 121800 121800 134400 metal6 +117600 130200 121800 134400 metal5 +117600 130200 126000 134400 metal5 121800 130200 126000 134400 metal4 121800 130200 126000 134400 metal3 121800 130200 126000 134400 metal2 121800 130200 126000 134400 metal1 -126000 134400 130200 142800 metal4 -126000 134400 130200 138600 metal3 -126000 134400 130200 138600 metal2 -126000 134400 130200 138600 metal1 ) _120_ ( -142800 84000 147000 88200 metal1 -142800 84000 147000 92400 metal2 -142800 88200 147000 92400 metal2 -142800 88200 151200 92400 metal3 -155400 79800 159600 100800 metal4 -155400 96600 159600 100800 metal3 -155400 96600 159600 100800 metal2 -155400 96600 159600 100800 metal1 -147000 88200 151200 96600 metal2 147000 92400 151200 96600 metal1 -142800 79800 147000 88200 metal2 -142800 79800 147000 84000 metal1 -147000 88200 151200 92400 metal2 -147000 88200 151200 92400 metal3 -147000 79800 151200 92400 metal4 +147000 92400 151200 96600 metal2 +147000 92400 151200 96600 metal3 +147000 92400 151200 96600 metal4 +147000 92400 159600 96600 metal5 +155400 92400 159600 96600 metal4 +142800 84000 147000 88200 metal1 +142800 84000 147000 88200 metal2 +142800 84000 151200 88200 metal3 +147000 84000 151200 88200 metal3 +147000 79800 151200 88200 metal4 147000 79800 151200 84000 metal4 147000 79800 159600 84000 metal5 155400 79800 159600 84000 metal4 155400 79800 159600 84000 metal3 155400 79800 159600 84000 metal2 155400 79800 159600 84000 metal1 +155400 92400 159600 100800 metal4 +155400 96600 159600 100800 metal3 +155400 96600 159600 100800 metal2 +155400 96600 159600 100800 metal1 +155400 79800 159600 96600 metal4 +142800 79800 147000 88200 metal2 +142800 79800 147000 84000 metal1 ) _121_ ( -147000 100800 151200 109200 metal4 -155400 96600 159600 100800 metal1 -155400 96600 159600 100800 metal2 -155400 96600 159600 100800 metal3 -155400 96600 159600 100800 metal4 -155400 96600 159600 100800 metal5 -155400 96600 159600 117600 metal6 -155400 113400 159600 117600 metal5 -155400 113400 159600 117600 metal4 -155400 113400 159600 117600 metal3 -155400 113400 159600 117600 metal2 -155400 113400 159600 117600 metal1 +147000 100800 159600 105000 metal3 +147000 100800 151200 105000 metal2 +147000 100800 151200 105000 metal1 +155400 105000 159600 109200 metal3 +155400 100800 159600 109200 metal4 +147000 105000 159600 109200 metal3 147000 105000 151200 109200 metal1 147000 105000 151200 109200 metal2 147000 105000 151200 109200 metal3 @@ -1307,159 +1304,157 @@ _121_ 147000 113400 151200 117600 metal3 147000 113400 151200 117600 metal2 147000 113400 151200 117600 metal1 -147000 100800 151200 105000 metal1 -147000 100800 151200 105000 metal2 -147000 100800 151200 105000 metal3 -147000 100800 151200 105000 metal4 -147000 100800 151200 105000 metal5 -147000 96600 151200 105000 metal6 -147000 96600 151200 100800 metal5 -147000 96600 159600 100800 metal5 +155400 105000 159600 113400 metal4 +155400 109200 159600 113400 metal3 +155400 109200 159600 113400 metal2 +155400 109200 159600 117600 metal2 +155400 113400 159600 117600 metal1 +155400 100800 159600 105000 metal3 +155400 100800 159600 105000 metal4 +155400 100800 159600 105000 metal5 +155400 96600 159600 105000 metal6 +155400 96600 159600 100800 metal5 +155400 96600 159600 100800 metal4 +155400 96600 159600 100800 metal3 +155400 96600 159600 100800 metal2 +155400 96600 159600 100800 metal1 ) _122_ ( -130200 75600 134400 88200 metal2 +130200 71400 134400 92400 metal2 117600 88200 121800 96600 metal2 117600 92400 121800 96600 metal1 -130200 75600 134400 79800 metal2 -130200 75600 138600 79800 metal3 -134400 75600 138600 79800 metal3 -134400 71400 138600 79800 metal4 +130200 71400 134400 75600 metal1 +130200 71400 134400 75600 metal2 +130200 71400 134400 75600 metal3 +130200 71400 134400 75600 metal4 +130200 71400 138600 75600 metal5 +134400 71400 138600 75600 metal4 134400 71400 138600 75600 metal3 134400 71400 138600 75600 metal2 134400 71400 138600 75600 metal1 117600 88200 121800 92400 metal1 117600 88200 121800 92400 metal2 -117600 88200 130200 92400 metal3 -126000 88200 130200 92400 metal2 -126000 84000 130200 92400 metal2 -126000 84000 130200 88200 metal2 -126000 84000 134400 88200 metal3 -130200 84000 134400 88200 metal2 +117600 88200 134400 92400 metal3 +130200 88200 134400 92400 metal2 130200 88200 134400 92400 metal1 -130200 84000 134400 92400 metal2 -130200 71400 134400 79800 metal2 -130200 71400 134400 75600 metal1 ) _123_ ( -130200 105000 134400 109200 metal3 -130200 105000 134400 109200 metal4 -126000 105000 134400 109200 metal5 -126000 105000 130200 109200 metal4 -126000 105000 130200 109200 metal3 -126000 105000 130200 109200 metal2 126000 105000 130200 109200 metal1 -126000 117600 130200 121800 metal1 -126000 117600 130200 121800 metal2 -126000 117600 134400 121800 metal3 -130200 100800 134400 105000 metal1 -130200 100800 134400 105000 metal2 -130200 100800 134400 105000 metal3 +126000 105000 130200 109200 metal2 +126000 105000 130200 109200 metal3 +126000 105000 130200 109200 metal4 +126000 105000 134400 109200 metal5 +130200 105000 134400 109200 metal4 +130200 105000 134400 109200 metal3 +130200 105000 134400 121800 metal4 +130200 117600 134400 121800 metal3 +130200 117600 142800 121800 metal3 130200 100800 134400 109200 metal4 +130200 100800 134400 105000 metal3 +130200 100800 134400 105000 metal2 +130200 100800 134400 105000 metal1 138600 121800 142800 126000 metal1 -138600 117600 142800 126000 metal2 -138600 117600 142800 121800 metal1 -138600 117600 142800 121800 metal2 +138600 121800 142800 126000 metal2 +138600 121800 142800 126000 metal3 +138600 117600 142800 126000 metal4 138600 117600 142800 121800 metal3 -138600 117600 142800 121800 metal4 -130200 117600 142800 121800 metal5 -130200 117600 134400 121800 metal4 -130200 117600 134400 121800 metal3 +138600 117600 142800 121800 metal2 +138600 117600 142800 121800 metal1 +126000 117600 130200 121800 metal1 +126000 117600 130200 121800 metal2 +126000 117600 134400 121800 metal3 130200 105000 138600 109200 metal3 134400 105000 138600 109200 metal2 134400 105000 138600 109200 metal1 -130200 105000 134400 121800 metal4 ) _124_ ( -58800 88200 63000 96600 metal2 -58800 88200 63000 92400 metal2 -58800 88200 71400 92400 metal3 -67200 88200 71400 92400 metal2 +67200 88200 71400 96600 metal2 67200 88200 71400 92400 metal1 -54600 100800 58800 105000 metal1 -54600 100800 58800 105000 metal2 -54600 100800 63000 105000 metal3 -58800 100800 63000 105000 metal3 -58800 92400 63000 105000 metal4 -58800 92400 63000 96600 metal3 -58800 92400 63000 96600 metal2 58800 92400 63000 96600 metal1 -67200 88200 71400 96600 metal2 +58800 92400 63000 96600 metal2 +58800 92400 63000 96600 metal3 +58800 92400 63000 96600 metal4 +58800 92400 71400 96600 metal5 +67200 92400 71400 96600 metal4 +67200 92400 71400 96600 metal3 +67200 92400 71400 96600 metal2 67200 92400 71400 96600 metal1 +54600 100800 58800 105000 metal1 +54600 100800 58800 109200 metal2 +54600 105000 58800 109200 metal2 +54600 105000 63000 109200 metal3 +58800 105000 63000 109200 metal3 +58800 92400 63000 109200 metal4 ) _125_ ( -58800 75600 63000 84000 metal2 -58800 79800 63000 84000 metal2 -58800 79800 67200 84000 metal3 -63000 79800 67200 84000 metal2 +63000 75600 67200 84000 metal2 63000 79800 67200 84000 metal1 63000 71400 67200 75600 metal1 63000 71400 67200 79800 metal2 -54600 79800 58800 84000 metal1 -54600 75600 58800 84000 metal2 -54600 75600 58800 79800 metal2 -54600 75600 63000 79800 metal3 -58800 75600 63000 79800 metal2 58800 75600 63000 79800 metal1 +58800 75600 63000 79800 metal2 58800 75600 67200 79800 metal3 63000 75600 67200 79800 metal2 63000 75600 67200 79800 metal1 +54600 79800 58800 84000 metal1 +54600 75600 58800 84000 metal2 +54600 75600 58800 79800 metal2 +54600 75600 63000 79800 metal3 ) _126_ ( +105000 121800 109200 126000 metal1 +105000 121800 109200 126000 metal2 +105000 121800 109200 126000 metal3 105000 117600 109200 126000 metal4 105000 117600 109200 121800 metal3 105000 117600 109200 121800 metal2 105000 117600 109200 121800 metal1 +105000 126000 109200 138600 metal2 +105000 126000 109200 130200 metal2 +105000 126000 109200 130200 metal3 +105000 121800 109200 130200 metal4 105000 134400 109200 138600 metal1 105000 134400 109200 138600 metal2 -105000 134400 109200 138600 metal3 -105000 134400 109200 138600 metal4 -105000 134400 109200 138600 metal5 -105000 121800 109200 138600 metal6 -105000 121800 109200 126000 metal5 -105000 121800 109200 126000 metal4 -105000 121800 109200 126000 metal3 -105000 121800 109200 126000 metal2 -105000 121800 109200 126000 metal1 -105000 134400 109200 147000 metal6 -105000 142800 109200 147000 metal5 -96600 142800 109200 147000 metal5 -96600 142800 100800 147000 metal5 -96600 142800 100800 159600 metal6 -96600 155400 100800 159600 metal5 -96600 155400 105000 159600 metal5 -100800 155400 105000 159600 metal4 -100800 155400 105000 168000 metal4 -100800 163800 105000 168000 metal3 -100800 163800 117600 168000 metal3 -113400 163800 117600 168000 metal2 -113400 159600 117600 168000 metal2 -113400 159600 117600 163800 metal2 -113400 159600 142800 163800 metal3 -138600 159600 142800 163800 metal2 -138600 134400 142800 163800 metal2 +105000 134400 113400 138600 metal3 +109200 134400 113400 138600 metal3 +109200 134400 113400 138600 metal4 +109200 134400 113400 138600 metal5 +109200 134400 113400 172200 metal6 +109200 168000 113400 172200 metal5 +105000 168000 113400 172200 metal5 +105000 168000 109200 172200 metal4 +105000 168000 109200 189000 metal4 +105000 184800 109200 189000 metal3 +105000 184800 138600 189000 metal3 +134400 184800 138600 189000 metal2 +134400 163800 138600 189000 metal2 +134400 163800 138600 168000 metal2 +134400 163800 142800 168000 metal3 +138600 163800 142800 168000 metal2 +138600 134400 142800 168000 metal2 138600 134400 142800 138600 metal1 ) _127_ ( -75600 67200 79800 71400 metal1 -75600 67200 79800 75600 metal2 -75600 71400 79800 75600 metal1 -75600 63000 79800 71400 metal2 -79800 63000 84000 71400 metal2 -79800 67200 84000 71400 metal2 -79800 67200 88200 71400 metal3 -84000 67200 88200 71400 metal2 -84000 67200 88200 71400 metal1 75600 63000 79800 67200 metal1 75600 63000 79800 67200 metal2 75600 63000 84000 67200 metal3 79800 63000 84000 67200 metal2 79800 63000 84000 67200 metal1 +75600 63000 79800 71400 metal2 +75600 67200 79800 71400 metal1 +84000 67200 88200 71400 metal1 +84000 67200 88200 71400 metal2 +79800 67200 88200 71400 metal3 +79800 67200 84000 71400 metal2 +79800 63000 84000 71400 metal2 +75600 67200 79800 75600 metal2 +75600 71400 79800 75600 metal1 ) _128_ ( @@ -1468,178 +1463,154 @@ _128_ 92400 71400 96600 75600 metal3 92400 71400 96600 75600 metal4 92400 71400 109200 75600 metal5 -105000 71400 109200 75600 metal5 -105000 67200 109200 75600 metal6 -105000 67200 109200 71400 metal5 -105000 67200 109200 71400 metal4 -105000 67200 109200 71400 metal3 -105000 67200 109200 71400 metal2 -105000 67200 109200 71400 metal1 +105000 71400 109200 75600 metal4 +105000 67200 109200 75600 metal4 +88200 71400 96600 75600 metal5 +88200 71400 92400 75600 metal4 +88200 67200 92400 75600 metal4 +88200 67200 92400 71400 metal3 +88200 67200 92400 71400 metal2 +88200 67200 92400 71400 metal1 105000 67200 113400 71400 metal3 -109200 67200 113400 71400 metal2 -109200 67200 113400 75600 metal2 +109200 67200 113400 71400 metal3 +109200 67200 113400 75600 metal4 +109200 71400 113400 75600 metal3 +109200 71400 113400 75600 metal2 109200 71400 113400 75600 metal1 75600 71400 79800 75600 metal1 75600 71400 79800 75600 metal2 75600 71400 79800 75600 metal3 75600 71400 79800 75600 metal4 75600 71400 92400 75600 metal5 -88200 71400 92400 75600 metal4 100800 67200 105000 71400 metal1 100800 67200 105000 71400 metal2 -100800 67200 109200 71400 metal3 -88200 71400 96600 75600 metal5 -88200 67200 92400 75600 metal4 -88200 67200 92400 71400 metal3 -88200 67200 92400 71400 metal2 -88200 67200 92400 71400 metal1 +100800 67200 105000 71400 metal3 +100800 67200 105000 71400 metal4 +100800 67200 109200 71400 metal5 +105000 67200 109200 71400 metal4 +105000 67200 109200 71400 metal3 +105000 67200 109200 71400 metal2 +105000 67200 109200 71400 metal1 ) _129_ ( -105000 54600 113400 58800 metal3 -105000 54600 109200 58800 metal2 -105000 54600 109200 58800 metal1 +100800 50400 105000 54600 metal1 +100800 50400 105000 54600 metal2 +100800 50400 105000 54600 metal3 +100800 50400 105000 54600 metal4 +100800 50400 105000 54600 metal5 +100800 50400 105000 58800 metal6 +100800 54600 105000 58800 metal5 +100800 54600 105000 58800 metal4 +100800 54600 105000 58800 metal3 +100800 54600 105000 58800 metal2 100800 54600 105000 58800 metal1 -100800 50400 105000 58800 metal2 +109200 54600 113400 63000 metal4 +109200 58800 113400 63000 metal3 +109200 58800 113400 63000 metal2 +109200 58800 113400 63000 metal1 92400 63000 96600 67200 metal1 -92400 58800 96600 67200 metal2 -92400 58800 96600 63000 metal2 -92400 58800 96600 63000 metal3 -92400 50400 96600 63000 metal4 +92400 50400 96600 67200 metal2 +92400 50400 96600 54600 metal2 +92400 50400 96600 54600 metal3 92400 50400 96600 54600 metal4 92400 50400 105000 54600 metal5 -100800 50400 105000 54600 metal4 -100800 50400 105000 54600 metal3 -100800 50400 105000 54600 metal2 -100800 50400 105000 54600 metal1 -109200 54600 113400 63000 metal2 -109200 58800 113400 63000 metal1 -109200 58800 113400 63000 metal2 -109200 58800 113400 63000 metal3 -109200 58800 113400 63000 metal4 -109200 58800 117600 63000 metal5 -113400 58800 117600 63000 metal4 -113400 54600 117600 63000 metal4 -113400 54600 117600 58800 metal3 -113400 54600 121800 58800 metal3 +109200 50400 113400 58800 metal4 +109200 50400 113400 54600 metal4 +100800 50400 113400 54600 metal5 +109200 54600 113400 58800 metal4 +109200 54600 121800 58800 metal5 +117600 54600 121800 58800 metal4 +117600 54600 121800 58800 metal3 117600 54600 121800 58800 metal2 117600 54600 121800 58800 metal1 -100800 50400 113400 54600 metal5 -109200 50400 113400 54600 metal4 -109200 50400 113400 58800 metal4 -109200 54600 113400 58800 metal3 -109200 54600 113400 58800 metal2 +105000 54600 109200 58800 metal1 +105000 54600 109200 58800 metal2 +105000 54600 109200 58800 metal3 +105000 54600 109200 58800 metal4 +105000 54600 113400 58800 metal5 ) _130_ ( -92400 63000 96600 67200 metal1 -92400 63000 96600 67200 metal2 -92400 63000 96600 67200 metal3 -92400 58800 96600 67200 metal4 -92400 58800 96600 63000 metal4 -92400 58800 105000 63000 metal5 -100800 58800 105000 63000 metal4 -100800 54600 105000 63000 metal4 -105000 37800 109200 42000 metal1 -105000 37800 109200 42000 metal2 -105000 37800 109200 42000 metal3 +105000 58800 109200 63000 metal1 +105000 58800 109200 63000 metal2 +105000 58800 109200 63000 metal3 +105000 58800 109200 63000 metal4 +105000 58800 109200 63000 metal5 +105000 37800 109200 63000 metal6 +105000 37800 109200 42000 metal5 105000 37800 109200 42000 metal4 -105000 37800 121800 42000 metal5 -117600 37800 121800 42000 metal4 -117600 37800 121800 54600 metal4 -117600 50400 121800 54600 metal4 -113400 50400 121800 54600 metal5 -113400 50400 117600 54600 metal4 -113400 50400 117600 58800 metal4 -113400 54600 117600 58800 metal4 -105000 54600 117600 58800 metal5 -105000 54600 109200 58800 metal4 -105000 54600 109200 58800 metal3 -105000 54600 109200 58800 metal2 +105000 37800 109200 42000 metal3 +105000 37800 109200 42000 metal2 +105000 37800 109200 42000 metal1 +100800 63000 109200 67200 metal5 +105000 63000 109200 67200 metal5 +105000 58800 109200 67200 metal6 105000 33600 109200 37800 metal1 105000 33600 109200 42000 metal2 -100800 54600 105000 58800 metal1 -100800 54600 105000 58800 metal2 -100800 54600 105000 58800 metal3 +92400 63000 96600 67200 metal1 +92400 63000 96600 67200 metal2 +92400 63000 105000 67200 metal3 +100800 63000 105000 67200 metal3 +100800 63000 105000 67200 metal4 +100800 63000 105000 67200 metal5 +100800 54600 105000 67200 metal6 +100800 54600 105000 58800 metal5 100800 54600 105000 58800 metal4 -100800 54600 109200 58800 metal5 +100800 54600 105000 58800 metal3 +100800 54600 105000 58800 metal2 +100800 54600 105000 58800 metal1 100800 37800 105000 42000 metal1 100800 37800 105000 42000 metal2 100800 37800 109200 42000 metal3 -105000 54600 109200 63000 metal2 -105000 58800 109200 63000 metal1 ) _131_ ( -88200 54600 96600 58800 metal3 -92400 54600 96600 58800 metal3 -92400 54600 96600 58800 metal4 -92400 54600 100800 58800 metal5 -96600 54600 100800 58800 metal4 -96600 54600 100800 67200 metal4 -96600 63000 100800 67200 metal3 -96600 63000 100800 67200 metal2 +88200 58800 92400 63000 metal2 +88200 58800 100800 63000 metal3 +96600 58800 100800 63000 metal2 +96600 58800 100800 67200 metal2 96600 63000 100800 67200 metal1 75600 50400 79800 54600 metal1 -75600 50400 79800 54600 metal2 -75600 50400 79800 54600 metal3 -75600 50400 79800 54600 metal4 -75600 50400 84000 54600 metal5 -79800 50400 84000 54600 metal4 -79800 50400 84000 58800 metal4 -75600 46200 79800 54600 metal4 -75600 46200 79800 50400 metal3 -75600 46200 79800 50400 metal2 -75600 46200 79800 50400 metal1 -79800 50400 92400 54600 metal5 -88200 50400 92400 54600 metal5 -88200 50400 92400 58800 metal6 -88200 54600 92400 58800 metal5 -88200 54600 92400 58800 metal4 -88200 54600 92400 58800 metal3 -79800 54600 84000 58800 metal1 +75600 50400 79800 58800 metal2 +75600 54600 79800 58800 metal2 +75600 54600 84000 58800 metal3 79800 54600 84000 58800 metal2 -79800 54600 84000 58800 metal3 -79800 54600 84000 58800 metal4 -79800 54600 88200 58800 metal5 -84000 54600 88200 58800 metal4 -84000 54600 88200 63000 metal4 -84000 58800 88200 63000 metal3 -84000 58800 88200 63000 metal2 +79800 54600 84000 58800 metal1 84000 58800 88200 63000 metal1 -88200 54600 92400 67200 metal6 -88200 63000 92400 67200 metal5 -88200 63000 92400 67200 metal4 -88200 63000 92400 67200 metal3 -88200 63000 92400 67200 metal2 +84000 58800 88200 63000 metal2 +84000 58800 92400 63000 metal3 +79800 54600 84000 63000 metal2 +79800 58800 84000 63000 metal2 +79800 58800 88200 63000 metal3 +75600 46200 79800 54600 metal2 +75600 46200 79800 50400 metal1 +88200 58800 92400 67200 metal2 88200 63000 92400 67200 metal1 ) _132_ ( -96600 63000 100800 71400 metal4 -96600 63000 100800 67200 metal3 -96600 63000 100800 67200 metal2 +96600 63000 100800 71400 metal2 96600 63000 100800 67200 metal1 100800 79800 105000 88200 metal2 100800 84000 105000 88200 metal1 96600 67200 100800 71400 metal1 96600 67200 100800 71400 metal2 -96600 67200 100800 71400 metal3 -96600 67200 100800 71400 metal4 -96600 67200 109200 71400 metal5 -105000 67200 109200 71400 metal4 -105000 67200 109200 75600 metal4 -105000 71400 109200 75600 metal3 -105000 71400 109200 75600 metal2 -105000 71400 109200 75600 metal1 +96600 67200 109200 71400 metal3 +105000 67200 109200 71400 metal2 +105000 67200 109200 75600 metal2 100800 79800 105000 84000 metal1 100800 79800 105000 84000 metal2 100800 79800 105000 84000 metal3 -100800 75600 105000 84000 metal4 -100800 75600 105000 79800 metal4 -100800 75600 109200 79800 metal5 -105000 75600 109200 79800 metal4 -105000 71400 109200 79800 metal4 +100800 79800 105000 84000 metal4 +100800 79800 109200 84000 metal5 +105000 79800 109200 84000 metal5 +105000 71400 109200 84000 metal6 +105000 71400 109200 75600 metal5 +105000 71400 109200 75600 metal4 +105000 71400 109200 75600 metal3 +105000 71400 109200 75600 metal2 +105000 71400 109200 75600 metal1 ) _133_ ( @@ -1648,26 +1619,26 @@ _133_ 96600 117600 109200 121800 metal3 105000 117600 109200 121800 metal2 105000 117600 109200 121800 metal1 -88200 121800 92400 126000 metal1 -88200 121800 92400 126000 metal2 -88200 121800 92400 126000 metal3 -88200 117600 92400 126000 metal4 -88200 117600 92400 121800 metal3 -88200 117600 92400 121800 metal2 -88200 117600 92400 121800 metal1 92400 113400 96600 121800 metal2 92400 113400 96600 117600 metal1 +88200 117600 92400 121800 metal1 +88200 117600 92400 121800 metal2 +88200 117600 96600 121800 metal3 92400 117600 96600 121800 metal2 +88200 121800 92400 126000 metal1 +88200 121800 92400 126000 metal2 +88200 121800 96600 126000 metal3 +92400 121800 96600 126000 metal2 +92400 117600 96600 126000 metal2 92400 117600 100800 121800 metal3 -88200 117600 96600 121800 metal3 ) _134_ ( 109200 134400 113400 138600 metal1 -109200 130200 113400 138600 metal2 -109200 130200 113400 134400 metal2 -109200 130200 117600 134400 metal3 -113400 130200 117600 134400 metal2 +109200 134400 113400 138600 metal2 +109200 134400 117600 138600 metal3 +113400 134400 117600 138600 metal2 +113400 130200 117600 138600 metal2 113400 130200 117600 134400 metal1 109200 134400 113400 142800 metal2 109200 138600 113400 142800 metal1 @@ -1683,79 +1654,82 @@ _134_ ) _135_ ( -121800 130200 130200 134400 metal3 -126000 130200 130200 134400 metal2 +121800 138600 130200 142800 metal3 +126000 138600 130200 142800 metal2 +126000 130200 130200 142800 metal2 126000 130200 130200 134400 metal1 -121800 130200 126000 134400 metal2 -121800 130200 126000 134400 metal3 -121800 126000 126000 134400 metal4 -121800 126000 126000 130200 metal3 -121800 126000 126000 130200 metal2 -121800 126000 126000 130200 metal1 117600 138600 121800 142800 metal1 -117600 134400 121800 142800 metal2 -117600 134400 121800 138600 metal2 -117600 134400 126000 138600 metal3 -121800 134400 126000 138600 metal2 +117600 138600 121800 142800 metal2 +117600 138600 121800 142800 metal3 +117600 138600 121800 142800 metal4 +117600 138600 126000 142800 metal5 +121800 138600 126000 142800 metal4 +121800 138600 126000 142800 metal3 +121800 138600 126000 142800 metal2 +121800 126000 126000 130200 metal1 +121800 126000 126000 138600 metal2 121800 134400 126000 138600 metal1 -121800 130200 126000 138600 metal2 +121800 134400 126000 142800 metal2 ) _136_ ( 134400 100800 138600 105000 metal1 -134400 88200 138600 105000 metal2 -134400 88200 138600 92400 metal2 -134400 88200 142800 92400 metal3 -138600 88200 142800 92400 metal3 -138600 88200 142800 92400 metal4 -138600 88200 142800 92400 metal5 -138600 84000 142800 92400 metal6 -138600 84000 142800 88200 metal5 -138600 84000 147000 88200 metal5 -142800 84000 147000 88200 metal4 -142800 84000 147000 92400 metal4 -151200 92400 155400 96600 metal1 -151200 88200 155400 96600 metal2 -147000 96600 151200 100800 metal1 +134400 100800 138600 105000 metal2 +134400 100800 138600 105000 metal3 +134400 100800 138600 105000 metal4 +134400 100800 138600 105000 metal5 +134400 92400 138600 105000 metal6 +134400 92400 138600 96600 metal5 +134400 92400 147000 96600 metal5 +142800 92400 147000 96600 metal5 +142800 88200 147000 96600 metal6 +142800 88200 147000 92400 metal5 +142800 88200 147000 92400 metal4 +142800 88200 147000 92400 metal3 +142800 88200 147000 92400 metal2 +142800 88200 147000 92400 metal1 +147000 92400 151200 96600 metal2 +147000 92400 151200 96600 metal3 +147000 92400 151200 100800 metal4 +147000 96600 151200 100800 metal3 147000 96600 151200 100800 metal2 -147000 96600 155400 100800 metal3 -151200 96600 155400 100800 metal2 -151200 92400 155400 100800 metal2 -151200 88200 155400 92400 metal2 -151200 88200 155400 92400 metal3 -151200 88200 155400 92400 metal4 -151200 88200 159600 92400 metal5 -155400 88200 159600 92400 metal5 -155400 84000 159600 92400 metal6 -155400 84000 159600 88200 metal5 +147000 96600 151200 100800 metal1 +151200 92400 155400 96600 metal1 +151200 92400 155400 96600 metal2 +151200 92400 155400 96600 metal3 +151200 84000 155400 96600 metal4 +151200 84000 155400 88200 metal4 +151200 84000 159600 88200 metal5 155400 84000 159600 88200 metal4 155400 84000 159600 88200 metal3 155400 84000 159600 88200 metal2 155400 84000 159600 88200 metal1 -142800 88200 147000 92400 metal1 -142800 88200 147000 92400 metal2 -142800 88200 147000 92400 metal3 -142800 88200 147000 92400 metal4 -142800 88200 155400 92400 metal5 +147000 92400 155400 96600 metal3 +142800 88200 151200 92400 metal3 +147000 88200 151200 92400 metal2 +147000 88200 151200 96600 metal2 ) _137_ ( -151200 100800 155400 105000 metal1 -151200 100800 155400 105000 metal2 -151200 100800 155400 105000 metal3 -151200 100800 155400 105000 metal4 -147000 100800 155400 105000 metal5 -147000 100800 151200 105000 metal5 -147000 100800 151200 109200 metal6 -147000 105000 151200 109200 metal5 +151200 100800 155400 109200 metal4 +151200 105000 155400 109200 metal4 +147000 105000 155400 109200 metal5 147000 105000 151200 109200 metal4 147000 105000 151200 109200 metal3 147000 105000 151200 109200 metal2 147000 105000 151200 109200 metal1 -142800 100800 147000 109200 metal4 -142800 100800 147000 105000 metal3 -142800 100800 147000 105000 metal2 -142800 100800 147000 105000 metal1 +151200 100800 155400 105000 metal1 +151200 100800 155400 105000 metal2 +151200 100800 155400 105000 metal3 +151200 100800 155400 105000 metal4 +151200 100800 159600 105000 metal5 +155400 100800 159600 105000 metal5 +155400 100800 159600 113400 metal6 +155400 109200 159600 113400 metal5 +155400 109200 159600 113400 metal4 +155400 109200 159600 113400 metal3 +155400 109200 159600 113400 metal2 +155400 109200 159600 113400 metal1 134400 100800 138600 105000 metal1 134400 100800 138600 105000 metal2 134400 100800 138600 105000 metal3 @@ -1763,113 +1737,113 @@ _137_ 134400 105000 138600 109200 metal4 134400 105000 147000 109200 metal5 142800 105000 147000 109200 metal4 +142800 100800 147000 109200 metal4 +142800 100800 147000 105000 metal3 +142800 100800 147000 105000 metal2 +142800 100800 147000 105000 metal1 142800 105000 151200 109200 metal5 -147000 105000 151200 113400 metal2 -147000 109200 151200 113400 metal2 -147000 109200 159600 113400 metal3 -155400 109200 159600 113400 metal2 -155400 109200 159600 113400 metal1 ) _138_ ( +121800 96600 126000 100800 metal1 +121800 96600 126000 100800 metal2 +121800 96600 126000 100800 metal3 +121800 96600 126000 105000 metal4 +121800 100800 126000 105000 metal3 +121800 100800 126000 105000 metal2 +121800 100800 126000 105000 metal1 +121800 84000 126000 88200 metal1 +121800 84000 126000 88200 metal2 +121800 84000 126000 88200 metal3 +121800 84000 126000 100800 metal4 121800 84000 130200 88200 metal3 126000 84000 130200 88200 metal3 126000 84000 130200 92400 metal4 126000 88200 130200 92400 metal4 126000 88200 134400 92400 metal5 -121800 100800 126000 105000 metal1 -121800 100800 126000 105000 metal2 -121800 100800 126000 105000 metal3 -121800 96600 126000 105000 metal4 -121800 96600 126000 100800 metal3 -121800 96600 126000 100800 metal2 -121800 96600 126000 100800 metal1 +130200 88200 134400 92400 metal4 +130200 88200 134400 92400 metal3 +130200 88200 134400 92400 metal2 +130200 88200 134400 92400 metal1 117600 96600 121800 100800 metal1 117600 96600 121800 100800 metal2 117600 96600 126000 100800 metal3 -130200 88200 134400 92400 metal1 -130200 88200 134400 92400 metal2 -130200 88200 134400 92400 metal3 -130200 88200 134400 92400 metal4 -130200 88200 134400 92400 metal5 -130200 88200 134400 96600 metal6 -130200 92400 134400 96600 metal5 -130200 92400 142800 96600 metal5 -138600 92400 142800 96600 metal4 -138600 92400 142800 105000 metal4 -138600 100800 142800 105000 metal3 -138600 100800 142800 105000 metal2 +130200 88200 142800 92400 metal3 +138600 88200 142800 92400 metal3 +138600 88200 142800 100800 metal4 +138600 96600 142800 100800 metal3 +138600 96600 142800 100800 metal2 +138600 96600 142800 105000 metal2 138600 100800 142800 105000 metal1 -121800 84000 126000 100800 metal4 -121800 84000 126000 88200 metal3 -121800 84000 126000 88200 metal2 -121800 84000 126000 88200 metal1 ) _139_ ( -138600 100800 142800 105000 metal1 -138600 100800 142800 105000 metal2 -138600 100800 142800 105000 metal3 -138600 100800 142800 109200 metal4 -138600 105000 142800 109200 metal3 -138600 117600 142800 121800 metal1 -138600 117600 142800 121800 metal2 -138600 117600 142800 121800 metal3 -138600 117600 142800 121800 metal4 -138600 117600 142800 121800 metal5 -138600 109200 142800 121800 metal6 -138600 109200 142800 113400 metal5 -138600 109200 142800 113400 metal4 130200 109200 134400 113400 metal1 130200 109200 134400 113400 metal2 130200 109200 138600 113400 metal3 134400 109200 138600 113400 metal2 -134400 105000 138600 113400 metal2 -138600 109200 147000 113400 metal5 -142800 109200 147000 113400 metal4 -142800 109200 147000 113400 metal3 +138600 117600 142800 121800 metal1 +138600 117600 142800 121800 metal2 +138600 117600 142800 121800 metal3 +138600 109200 142800 121800 metal4 +138600 109200 142800 113400 metal3 +138600 100800 142800 105000 metal1 +138600 100800 142800 105000 metal2 +138600 100800 142800 105000 metal3 +138600 100800 142800 113400 metal4 +134400 109200 142800 113400 metal3 +138600 109200 147000 113400 metal3 142800 109200 147000 113400 metal2 142800 109200 147000 113400 metal1 -138600 105000 142800 113400 metal4 134400 105000 138600 109200 metal1 -134400 105000 138600 109200 metal2 -134400 105000 142800 109200 metal3 +134400 105000 138600 113400 metal2 ) _140_ ( +54600 96600 58800 100800 metal1 +54600 96600 58800 100800 metal2 +54600 96600 58800 100800 metal3 +54600 96600 58800 100800 metal4 +54600 96600 58800 100800 metal5 +54600 67200 58800 100800 metal6 +54600 67200 58800 71400 metal5 +54600 67200 71400 71400 metal5 +67200 67200 71400 71400 metal4 +67200 67200 71400 75600 metal4 +67200 71400 71400 75600 metal4 +67200 71400 79800 75600 metal5 +75600 71400 79800 75600 metal4 +75600 71400 79800 75600 metal3 +75600 71400 79800 75600 metal2 +75600 71400 79800 75600 metal1 +67200 92400 71400 96600 metal1 +67200 92400 71400 96600 metal2 +67200 92400 71400 96600 metal3 +67200 88200 71400 96600 metal4 +67200 92400 71400 105000 metal4 +67200 100800 71400 105000 metal4 +54600 100800 71400 105000 metal5 +54600 100800 58800 105000 metal5 +54600 96600 58800 105000 metal6 +67200 84000 71400 92400 metal4 +67200 84000 71400 88200 metal3 +67200 84000 71400 88200 metal2 +67200 84000 71400 88200 metal1 71400 84000 75600 88200 metal1 71400 84000 75600 88200 metal2 71400 84000 75600 88200 metal3 71400 84000 75600 88200 metal4 71400 84000 75600 88200 metal5 -71400 84000 75600 100800 metal6 +71400 84000 75600 92400 metal6 +71400 88200 75600 92400 metal5 +71400 88200 75600 100800 metal6 71400 96600 75600 100800 metal5 71400 96600 75600 100800 metal4 71400 96600 75600 100800 metal3 71400 96600 75600 100800 metal2 71400 96600 75600 100800 metal1 -67200 92400 71400 96600 metal1 -67200 92400 71400 96600 metal2 -67200 92400 71400 96600 metal3 -67200 84000 71400 96600 metal4 -67200 84000 71400 88200 metal1 -67200 84000 71400 88200 metal2 -67200 84000 71400 88200 metal3 -67200 84000 71400 88200 metal4 -67200 84000 75600 88200 metal5 -54600 96600 58800 100800 metal1 -54600 96600 58800 100800 metal2 -54600 96600 58800 100800 metal3 -54600 96600 58800 105000 metal4 -54600 100800 58800 105000 metal4 -54600 100800 71400 105000 metal5 -67200 100800 71400 105000 metal4 -67200 92400 71400 105000 metal4 -67200 71400 71400 88200 metal2 -67200 71400 71400 75600 metal2 -67200 71400 79800 75600 metal3 -75600 71400 79800 75600 metal2 -75600 71400 79800 75600 metal1 +67200 88200 71400 92400 metal4 +67200 88200 75600 92400 metal5 ) _141_ ( @@ -1877,137 +1851,118 @@ _141_ 67200 75600 71400 79800 metal2 67200 75600 71400 79800 metal3 67200 75600 71400 79800 metal4 -63000 75600 71400 79800 metal5 -63000 75600 67200 79800 metal4 -63000 75600 67200 84000 metal4 -58800 79800 63000 84000 metal3 -58800 79800 63000 84000 metal4 -58800 79800 67200 84000 metal5 -63000 79800 67200 84000 metal4 -63000 79800 67200 84000 metal3 -63000 79800 67200 84000 metal2 -63000 79800 67200 84000 metal1 -71400 75600 75600 79800 metal4 -71400 75600 75600 79800 metal5 -71400 75600 75600 84000 metal6 -71400 79800 75600 84000 metal5 -71400 79800 75600 84000 metal4 -71400 79800 75600 84000 metal3 -71400 79800 75600 84000 metal2 -71400 79800 75600 84000 metal1 67200 75600 75600 79800 metal5 -58800 79800 63000 88200 metal4 -58800 84000 63000 88200 metal3 -58800 84000 63000 88200 metal2 -58800 84000 63000 88200 metal1 +58800 79800 67200 84000 metal3 71400 71400 75600 79800 metal4 71400 71400 75600 75600 metal3 71400 71400 79800 75600 metal3 75600 71400 79800 75600 metal2 75600 71400 79800 75600 metal1 +58800 79800 63000 88200 metal4 +58800 84000 63000 88200 metal3 +58800 84000 63000 88200 metal2 +58800 84000 63000 88200 metal1 +63000 79800 67200 84000 metal1 +63000 79800 67200 84000 metal2 +63000 79800 67200 84000 metal3 +63000 79800 67200 84000 metal4 +63000 79800 71400 84000 metal5 +67200 79800 71400 84000 metal4 +67200 75600 71400 84000 metal4 54600 79800 58800 84000 metal1 54600 79800 58800 84000 metal2 -54600 79800 63000 84000 metal3 +54600 79800 58800 84000 metal3 +54600 79800 58800 84000 metal4 +54600 79800 63000 84000 metal5 +58800 79800 63000 84000 metal4 +58800 79800 63000 84000 metal3 +71400 79800 75600 84000 metal1 +71400 79800 75600 84000 metal2 +71400 79800 75600 84000 metal3 +71400 79800 75600 84000 metal4 +71400 79800 75600 84000 metal5 +71400 75600 75600 84000 metal6 +71400 75600 75600 79800 metal5 +71400 75600 75600 79800 metal4 ) _142_ ( -42000 92400 46200 96600 metal2 -42000 92400 46200 96600 metal3 -42000 92400 46200 96600 metal4 -42000 92400 67200 96600 metal5 -79800 105000 84000 109200 metal1 -79800 105000 84000 109200 metal2 -79800 105000 84000 109200 metal3 -79800 105000 84000 109200 metal4 -79800 105000 84000 109200 metal5 -79800 96600 84000 109200 metal6 -79800 96600 84000 100800 metal5 -79800 96600 84000 100800 metal4 -79800 96600 84000 100800 metal3 -79800 96600 84000 100800 metal2 -79800 96600 84000 100800 metal1 -42000 54600 46200 96600 metal2 -42000 54600 46200 58800 metal2 -42000 54600 58800 58800 metal3 -54600 54600 58800 58800 metal3 -54600 42000 58800 58800 metal4 +63000 105000 67200 113400 metal4 +63000 109200 67200 113400 metal3 +63000 109200 67200 113400 metal2 63000 109200 67200 113400 metal1 -63000 105000 67200 113400 metal2 -63000 105000 67200 109200 metal2 -63000 105000 67200 109200 metal3 -63000 96600 67200 109200 metal4 -63000 96600 67200 100800 metal3 -63000 96600 67200 100800 metal2 -63000 92400 67200 100800 metal2 -54600 37800 58800 46200 metal4 -54600 37800 58800 42000 metal3 -54600 37800 71400 42000 metal3 -67200 37800 71400 42000 metal3 -67200 21000 71400 42000 metal4 -67200 21000 71400 25200 metal3 -67200 21000 75600 25200 metal3 -71400 21000 75600 25200 metal2 -71400 21000 75600 29400 metal2 -71400 25200 75600 29400 metal2 -71400 25200 84000 29400 metal3 -79800 25200 84000 29400 metal3 -79800 25200 84000 42000 metal4 -79800 37800 84000 42000 metal4 -79800 37800 88200 42000 metal5 -84000 37800 88200 42000 metal4 -84000 37800 88200 42000 metal3 -84000 37800 88200 42000 metal2 +88200 105000 92400 109200 metal1 +88200 105000 92400 109200 metal2 +88200 105000 92400 109200 metal3 +88200 105000 92400 109200 metal4 +79800 105000 92400 109200 metal5 +79800 105000 84000 109200 metal4 +79800 105000 84000 109200 metal3 +79800 105000 84000 109200 metal2 +79800 105000 84000 109200 metal1 +63000 88200 67200 109200 metal4 +63000 88200 67200 92400 metal3 +54600 88200 67200 92400 metal3 +54600 88200 58800 92400 metal3 +54600 84000 58800 92400 metal4 +54600 84000 58800 88200 metal4 +42000 84000 58800 88200 metal5 +42000 84000 46200 88200 metal4 +42000 46200 46200 88200 metal4 +42000 46200 46200 50400 metal3 +42000 46200 54600 50400 metal3 +50400 46200 54600 50400 metal3 +50400 42000 54600 50400 metal4 +50400 42000 54600 46200 metal4 +50400 42000 71400 46200 metal5 +67200 42000 71400 46200 metal5 +67200 42000 71400 54600 metal6 +67200 50400 71400 54600 metal5 +67200 50400 71400 54600 metal4 +67200 50400 71400 54600 metal3 +67200 50400 71400 54600 metal2 +67200 50400 71400 63000 metal2 +67200 58800 71400 63000 metal2 +67200 58800 75600 63000 metal3 +71400 58800 75600 63000 metal2 +71400 50400 75600 63000 metal2 +71400 50400 75600 54600 metal2 +71400 50400 84000 54600 metal3 +79800 50400 84000 54600 metal3 +79800 46200 84000 54600 metal4 +79800 46200 84000 50400 metal3 +79800 46200 88200 50400 metal3 +84000 46200 88200 50400 metal3 +84000 42000 88200 50400 metal4 +84000 42000 88200 46200 metal3 +84000 42000 88200 46200 metal2 +84000 42000 88200 46200 metal1 +84000 37800 88200 46200 metal2 84000 37800 88200 42000 metal1 -42000 92400 46200 142800 metal2 -42000 138600 46200 142800 metal2 -42000 138600 58800 142800 metal3 -54600 138600 58800 142800 metal3 -54600 138600 58800 159600 metal4 -54600 155400 58800 159600 metal3 -54600 155400 88200 159600 metal3 -84000 155400 88200 159600 metal3 -84000 130200 88200 159600 metal4 -84000 130200 88200 134400 metal4 -79800 130200 88200 134400 metal5 -79800 130200 84000 134400 metal5 -79800 126000 84000 134400 metal6 -79800 126000 84000 130200 metal5 -79800 126000 88200 130200 metal5 -84000 126000 88200 130200 metal5 -84000 117600 88200 130200 metal6 -84000 117600 88200 121800 metal5 -79800 117600 88200 121800 metal5 -79800 117600 84000 121800 metal5 -79800 105000 84000 121800 metal6 -54600 42000 58800 46200 metal4 -54600 42000 67200 46200 metal5 -63000 42000 67200 46200 metal5 -63000 42000 67200 54600 metal6 -63000 50400 67200 54600 metal5 -63000 50400 67200 54600 metal4 -63000 50400 67200 54600 metal3 -63000 50400 67200 54600 metal2 +63000 105000 67200 109200 metal4 +63000 105000 71400 109200 metal5 +67200 105000 71400 109200 metal4 +67200 105000 71400 109200 metal3 +67200 105000 75600 109200 metal3 +71400 105000 75600 109200 metal2 +71400 105000 75600 113400 metal2 +71400 109200 75600 113400 metal2 +71400 109200 79800 113400 metal3 +75600 109200 79800 113400 metal3 +75600 105000 79800 113400 metal4 +75600 105000 79800 109200 metal4 +75600 105000 84000 109200 metal5 63000 50400 67200 54600 metal1 +63000 50400 67200 54600 metal2 +63000 50400 71400 54600 metal3 63000 84000 67200 88200 metal1 63000 84000 67200 88200 metal2 63000 84000 67200 88200 metal3 -63000 84000 67200 88200 metal4 -63000 84000 67200 88200 metal5 -63000 84000 67200 96600 metal6 -63000 92400 67200 96600 metal5 -63000 92400 67200 96600 metal4 -63000 92400 67200 96600 metal3 -63000 92400 67200 96600 metal2 -79800 105000 88200 109200 metal3 -84000 105000 88200 109200 metal3 -84000 105000 88200 109200 metal4 -84000 105000 92400 109200 metal5 -88200 105000 92400 109200 metal4 -88200 105000 92400 109200 metal3 -88200 105000 92400 109200 metal2 -88200 105000 92400 109200 metal1 -84000 37800 88200 46200 metal2 -84000 42000 88200 46200 metal1 +63000 84000 67200 92400 metal4 +79800 96600 84000 109200 metal4 +79800 96600 84000 100800 metal3 +79800 96600 84000 100800 metal2 +79800 96600 84000 100800 metal1 ) _143_ ( @@ -2015,14 +1970,15 @@ _143_ 113400 117600 117600 121800 metal2 113400 117600 117600 121800 metal3 113400 117600 117600 121800 metal4 -113400 117600 134400 121800 metal5 -130200 117600 134400 121800 metal4 -130200 117600 134400 121800 metal3 -130200 117600 138600 121800 metal3 -134400 117600 138600 121800 metal2 -134400 109200 138600 121800 metal2 -134400 109200 138600 113400 metal2 -134400 109200 142800 113400 metal3 +113400 117600 142800 121800 metal5 +138600 117600 142800 121800 metal5 +138600 113400 142800 121800 metal6 +138600 113400 142800 117600 metal5 +138600 113400 142800 117600 metal4 +138600 113400 142800 117600 metal3 +138600 113400 142800 117600 metal2 +138600 109200 142800 117600 metal2 +138600 109200 142800 113400 metal2 138600 109200 142800 113400 metal3 138600 109200 142800 113400 metal4 138600 109200 142800 113400 metal5 @@ -2040,6 +1996,9 @@ _144_ 117600 117600 121800 121800 metal3 117600 117600 121800 126000 metal4 117600 121800 121800 126000 metal3 +113400 117600 121800 121800 metal3 +113400 117600 117600 121800 metal2 +113400 117600 117600 121800 metal1 117600 113400 121800 121800 metal4 117600 113400 121800 117600 metal3 117600 113400 121800 117600 metal2 @@ -2047,12 +2006,13 @@ _144_ 113400 121800 117600 126000 metal1 113400 121800 117600 126000 metal2 113400 121800 121800 126000 metal3 -113400 117600 121800 121800 metal3 -113400 117600 117600 121800 metal2 -113400 117600 117600 121800 metal1 -117600 121800 130200 126000 metal3 -126000 121800 130200 126000 metal2 -126000 121800 130200 134400 metal2 +117600 121800 126000 126000 metal3 +121800 121800 126000 126000 metal2 +121800 121800 126000 130200 metal2 +121800 126000 126000 130200 metal2 +121800 126000 130200 130200 metal3 +126000 126000 130200 130200 metal2 +126000 126000 130200 134400 metal2 126000 130200 130200 134400 metal1 ) _145_ @@ -2081,20 +2041,17 @@ _147_ 79800 117600 84000 121800 metal1 79800 117600 84000 121800 metal2 79800 117600 84000 121800 metal3 -79800 117600 84000 126000 metal4 -79800 121800 84000 126000 metal4 -79800 121800 100800 126000 metal5 -96600 121800 100800 126000 metal4 -96600 117600 100800 126000 metal4 -96600 117600 100800 121800 metal4 -96600 117600 117600 121800 metal5 +79800 117600 84000 121800 metal4 +79800 117600 117600 121800 metal5 113400 117600 117600 121800 metal4 113400 117600 117600 121800 metal3 113400 117600 117600 121800 metal2 113400 117600 117600 121800 metal1 75600 117600 79800 121800 metal1 75600 117600 79800 121800 metal2 -75600 117600 84000 121800 metal3 +75600 117600 79800 121800 metal3 +75600 117600 79800 121800 metal4 +75600 117600 84000 121800 metal5 ) _148_ ( @@ -2111,10 +2068,11 @@ _149_ 79800 67200 84000 71400 metal2 79800 67200 84000 71400 metal3 79800 67200 84000 71400 metal4 -79800 67200 84000 71400 metal5 -79800 63000 84000 71400 metal6 -79800 63000 84000 67200 metal5 -79800 63000 100800 67200 metal5 +79800 67200 88200 71400 metal5 +84000 67200 88200 71400 metal4 +84000 63000 88200 71400 metal4 +84000 63000 88200 67200 metal4 +84000 63000 100800 67200 metal5 96600 63000 100800 67200 metal4 96600 63000 100800 67200 metal3 96600 63000 100800 67200 metal2 @@ -2122,38 +2080,62 @@ _149_ ) _150_ ( -79800 117600 84000 126000 metal2 -79800 121800 84000 126000 metal2 -79800 121800 84000 126000 metal3 -79800 121800 84000 138600 metal4 -79800 134400 84000 138600 metal3 -37800 134400 84000 138600 metal3 -37800 134400 42000 138600 metal2 -37800 121800 42000 138600 metal2 +71400 121800 79800 126000 metal5 +71400 121800 75600 126000 metal4 +71400 121800 75600 172200 metal4 +71400 168000 75600 172200 metal3 +58800 168000 75600 172200 metal3 +58800 168000 63000 172200 metal2 +58800 168000 63000 176400 metal2 +58800 172200 63000 176400 metal2 +46200 172200 63000 176400 metal3 +46200 172200 50400 176400 metal2 +46200 142800 50400 176400 metal2 +46200 142800 50400 147000 metal2 +37800 142800 50400 147000 metal3 +37800 142800 42000 147000 metal2 +37800 121800 42000 147000 metal2 37800 121800 42000 126000 metal2 33600 121800 42000 126000 metal3 33600 121800 37800 126000 metal2 -33600 67200 37800 126000 metal2 -33600 67200 37800 71400 metal2 -33600 67200 58800 71400 metal3 -54600 67200 58800 71400 metal3 -54600 63000 58800 71400 metal4 -54600 63000 58800 67200 metal4 -54600 63000 79800 67200 metal5 -75600 63000 79800 67200 metal5 -75600 63000 79800 71400 metal6 +33600 100800 37800 126000 metal2 +33600 100800 37800 105000 metal2 +25200 100800 37800 105000 metal3 +25200 100800 29400 105000 metal3 +25200 63000 29400 105000 metal4 +25200 63000 29400 67200 metal4 +25200 63000 67200 67200 metal5 +63000 63000 67200 67200 metal4 +63000 50400 67200 67200 metal4 +63000 50400 67200 54600 metal4 +63000 50400 71400 54600 metal5 +67200 50400 71400 54600 metal4 +67200 50400 71400 63000 metal4 +67200 58800 71400 63000 metal4 +67200 58800 75600 63000 metal5 +71400 58800 75600 63000 metal4 +71400 58800 75600 63000 metal3 +71400 58800 79800 63000 metal3 +75600 58800 79800 63000 metal3 +75600 58800 79800 63000 metal4 +75600 58800 79800 63000 metal5 +75600 58800 79800 71400 metal6 75600 67200 79800 71400 metal5 75600 67200 84000 71400 metal5 79800 67200 84000 71400 metal4 79800 67200 84000 71400 metal3 79800 67200 84000 71400 metal2 79800 67200 84000 71400 metal1 -75600 117600 79800 121800 metal1 -75600 117600 79800 121800 metal2 -75600 117600 79800 121800 metal3 +75600 121800 79800 126000 metal5 +75600 117600 79800 126000 metal6 +75600 117600 79800 121800 metal5 75600 117600 79800 121800 metal4 -75600 117600 84000 121800 metal5 -79800 117600 84000 121800 metal4 +75600 117600 79800 121800 metal3 +75600 117600 79800 121800 metal2 +75600 117600 79800 121800 metal1 +75600 121800 84000 126000 metal5 +79800 121800 84000 126000 metal4 +79800 117600 84000 126000 metal4 79800 117600 84000 121800 metal3 79800 117600 84000 121800 metal2 79800 117600 84000 121800 metal1 @@ -2161,11 +2143,12 @@ _150_ _151_ ( 71400 117600 75600 121800 metal1 -71400 117600 75600 130200 metal2 -71400 126000 75600 130200 metal2 -71400 126000 84000 130200 metal3 -79800 126000 84000 130200 metal2 -79800 121800 84000 130200 metal2 +71400 117600 75600 121800 metal2 +71400 117600 75600 121800 metal3 +71400 117600 75600 126000 metal4 +71400 121800 75600 126000 metal3 +71400 121800 84000 126000 metal3 +79800 121800 84000 126000 metal2 79800 121800 84000 126000 metal1 ) _152_ @@ -2173,15 +2156,14 @@ _152_ 67200 117600 71400 121800 metal1 67200 117600 71400 121800 metal2 67200 117600 75600 121800 metal3 -71400 117600 75600 126000 metal4 -71400 121800 75600 126000 metal4 -71400 121800 84000 126000 metal5 -79800 121800 84000 126000 metal4 -79800 121800 84000 126000 metal3 -79800 121800 84000 126000 metal2 +71400 117600 75600 134400 metal2 +71400 130200 75600 134400 metal2 +71400 130200 84000 134400 metal3 +79800 130200 84000 134400 metal2 +79800 121800 84000 134400 metal2 79800 121800 84000 126000 metal1 -67200 113400 71400 121800 metal2 67200 113400 71400 117600 metal1 +67200 113400 71400 121800 metal2 71400 117600 75600 121800 metal1 71400 117600 75600 121800 metal2 71400 117600 75600 121800 metal3 @@ -2195,17 +2177,11 @@ _152_ _153_ ( 71400 117600 75600 121800 metal1 -71400 109200 75600 121800 metal2 -71400 109200 75600 113400 metal2 -71400 109200 79800 113400 metal3 -75600 109200 79800 113400 metal3 -75600 109200 79800 117600 metal4 -75600 113400 79800 117600 metal4 -75600 113400 84000 117600 metal5 -79800 113400 84000 117600 metal4 -79800 113400 84000 121800 metal4 -79800 117600 84000 121800 metal3 -79800 117600 84000 121800 metal2 +71400 113400 75600 121800 metal2 +71400 113400 75600 117600 metal2 +71400 113400 84000 117600 metal3 +79800 113400 84000 117600 metal2 +79800 113400 84000 121800 metal2 79800 117600 84000 121800 metal1 ) _154_ @@ -2239,27 +2215,26 @@ _157_ ) _158_ ( -84000 109200 92400 113400 metal3 -88200 109200 92400 113400 metal2 -88200 109200 92400 117600 metal2 -88200 113400 92400 117600 metal2 -88200 113400 96600 117600 metal3 -92400 113400 96600 117600 metal2 -92400 113400 96600 117600 metal1 +84000 96600 88200 100800 metal1 +84000 96600 88200 100800 metal2 +84000 96600 88200 100800 metal3 +84000 96600 88200 100800 metal4 +84000 96600 88200 100800 metal5 +84000 96600 88200 113400 metal6 +84000 109200 88200 113400 metal5 +84000 109200 88200 113400 metal4 +84000 109200 88200 113400 metal3 +84000 109200 88200 113400 metal2 +84000 109200 88200 113400 metal1 +67200 109200 88200 113400 metal5 +67200 109200 71400 113400 metal4 +67200 105000 71400 113400 metal4 79800 96600 84000 100800 metal1 79800 96600 84000 100800 metal2 -79800 96600 84000 100800 metal3 -79800 96600 84000 100800 metal4 -79800 96600 88200 100800 metal5 -84000 96600 88200 100800 metal4 -84000 96600 88200 100800 metal3 -84000 96600 88200 100800 metal2 -84000 96600 88200 100800 metal1 -63000 84000 67200 88200 metal1 -63000 84000 67200 88200 metal2 -63000 84000 67200 88200 metal3 -63000 84000 67200 100800 metal4 -63000 96600 67200 100800 metal4 +79800 96600 88200 100800 metal3 +63000 88200 67200 92400 metal5 +63000 88200 67200 100800 metal6 +63000 96600 67200 100800 metal5 63000 96600 71400 100800 metal5 67200 96600 71400 100800 metal5 67200 96600 71400 109200 metal6 @@ -2268,116 +2243,112 @@ _158_ 67200 105000 71400 109200 metal3 67200 105000 71400 109200 metal2 67200 105000 71400 109200 metal1 -63000 75600 67200 88200 metal2 -63000 75600 67200 79800 metal2 -63000 75600 67200 79800 metal3 -63000 75600 67200 79800 metal4 -63000 75600 67200 79800 metal5 -63000 50400 67200 79800 metal6 -63000 50400 67200 54600 metal5 -63000 50400 67200 54600 metal4 -63000 50400 67200 54600 metal3 -63000 50400 67200 54600 metal2 -63000 50400 67200 54600 metal1 -63000 33600 67200 54600 metal2 -63000 33600 67200 37800 metal2 -63000 33600 84000 37800 metal3 -79800 33600 84000 37800 metal2 -79800 33600 84000 42000 metal2 -79800 37800 84000 42000 metal2 +37800 88200 67200 92400 metal5 +37800 88200 42000 92400 metal4 +37800 71400 42000 92400 metal4 +37800 71400 42000 75600 metal3 +37800 71400 50400 75600 metal3 +46200 71400 50400 75600 metal2 +46200 37800 50400 75600 metal2 +46200 37800 50400 42000 metal2 +46200 37800 67200 42000 metal3 +63000 37800 71400 42000 metal3 +67200 37800 71400 42000 metal3 +67200 25200 71400 42000 metal4 +67200 25200 71400 29400 metal3 +67200 25200 84000 29400 metal3 +79800 25200 84000 29400 metal3 +79800 25200 84000 42000 metal4 +79800 37800 84000 42000 metal3 79800 37800 88200 42000 metal3 84000 37800 88200 42000 metal2 84000 37800 88200 42000 metal1 -67200 105000 71400 113400 metal6 -67200 109200 71400 113400 metal5 -67200 109200 88200 113400 metal5 -84000 109200 88200 113400 metal4 -84000 109200 88200 113400 metal3 -84000 109200 88200 113400 metal2 -84000 109200 88200 113400 metal1 -79800 37800 84000 46200 metal2 +84000 109200 92400 113400 metal5 +88200 109200 92400 113400 metal4 +88200 109200 92400 117600 metal4 +88200 113400 92400 117600 metal3 +88200 113400 96600 117600 metal3 +92400 113400 96600 117600 metal2 +92400 113400 96600 117600 metal1 +79800 37800 84000 46200 metal4 +79800 42000 84000 46200 metal3 +79800 42000 84000 46200 metal2 79800 42000 84000 46200 metal1 -84000 96600 88200 113400 metal4 +63000 84000 67200 92400 metal6 +63000 84000 67200 88200 metal5 +63000 84000 67200 88200 metal4 +63000 84000 67200 88200 metal3 +63000 84000 67200 88200 metal2 +63000 84000 67200 88200 metal1 +63000 37800 67200 42000 metal3 +63000 37800 67200 50400 metal4 +63000 46200 67200 50400 metal3 +63000 46200 67200 50400 metal2 +63000 46200 67200 54600 metal2 +63000 50400 67200 54600 metal1 ) _159_ ( 79800 121800 84000 126000 metal1 79800 121800 84000 126000 metal2 -79800 121800 88200 126000 metal3 -134400 134400 147000 138600 metal3 -147000 130200 151200 134400 metal4 -147000 130200 159600 134400 metal5 -155400 130200 159600 134400 metal4 -155400 130200 159600 138600 metal4 -155400 134400 159600 138600 metal3 -155400 134400 184800 138600 metal3 -180600 134400 184800 138600 metal2 -180600 71400 184800 138600 metal2 -180600 71400 184800 75600 metal2 -151200 71400 184800 75600 metal3 -151200 71400 155400 75600 metal3 -151200 50400 155400 75600 metal4 -151200 50400 155400 54600 metal4 -134400 50400 155400 54600 metal5 -134400 50400 138600 54600 metal5 -134400 50400 138600 84000 metal6 -134400 79800 138600 84000 metal5 -134400 79800 138600 84000 metal4 -84000 121800 88200 126000 metal2 -84000 121800 88200 126000 metal3 -84000 121800 88200 130200 metal4 -84000 126000 88200 130200 metal3 -84000 126000 88200 130200 metal2 -84000 126000 88200 142800 metal2 -121800 142800 126000 147000 metal4 -121800 142800 138600 147000 metal5 -134400 142800 138600 147000 metal5 -134400 134400 138600 147000 metal6 -134400 134400 138600 138600 metal5 +79800 121800 84000 126000 metal3 +79800 121800 84000 126000 metal4 +79800 121800 88200 126000 metal5 +134400 134400 147000 138600 metal5 134400 134400 138600 138600 metal4 134400 134400 138600 138600 metal3 134400 134400 138600 138600 metal2 134400 134400 138600 138600 metal1 +117600 193200 121800 197400 metal4 +117600 193200 138600 197400 metal5 +134400 193200 138600 197400 metal4 +134400 184800 138600 197400 metal4 +134400 184800 138600 189000 metal3 +134400 184800 159600 189000 metal3 +155400 184800 159600 189000 metal3 +155400 176400 159600 189000 metal4 +155400 176400 159600 180600 metal4 +155400 176400 159600 180600 metal5 +155400 130200 159600 180600 metal6 +155400 130200 159600 134400 metal5 +155400 130200 159600 134400 metal4 +155400 130200 159600 134400 metal3 +84000 121800 88200 126000 metal5 +84000 121800 88200 138600 metal6 +84000 134400 88200 138600 metal5 113400 84000 117600 88200 metal1 113400 84000 117600 88200 metal2 113400 84000 117600 88200 metal3 113400 84000 117600 88200 metal4 -109200 84000 117600 88200 metal5 -109200 84000 113400 88200 metal4 -109200 84000 113400 96600 metal4 -109200 92400 113400 96600 metal3 -105000 92400 113400 96600 metal3 -105000 92400 109200 96600 metal2 -105000 92400 109200 100800 metal2 -105000 96600 109200 100800 metal2 -105000 96600 109200 100800 metal3 -105000 96600 109200 105000 metal4 -105000 100800 109200 105000 metal3 -105000 100800 109200 105000 metal2 +113400 84000 117600 88200 metal5 +113400 63000 117600 88200 metal6 +113400 63000 117600 67200 metal5 +113400 63000 142800 67200 metal5 105000 100800 109200 105000 metal1 -84000 109200 88200 113400 metal1 -84000 109200 88200 126000 metal2 -138600 75600 142800 84000 metal2 -138600 75600 142800 79800 metal1 -113400 84000 138600 88200 metal5 -134400 84000 138600 88200 metal4 -134400 79800 138600 88200 metal4 -84000 138600 88200 142800 metal2 -79800 138600 88200 142800 metal3 -79800 138600 84000 142800 metal3 -79800 138600 84000 180600 metal4 -79800 176400 84000 180600 metal3 -79800 176400 100800 180600 metal3 -96600 176400 100800 180600 metal2 -96600 168000 100800 180600 metal2 -96600 168000 100800 172200 metal2 -96600 168000 113400 172200 metal3 -109200 168000 113400 172200 metal3 -109200 163800 113400 172200 metal4 -109200 163800 113400 168000 metal4 -109200 163800 126000 168000 metal5 -121800 163800 126000 168000 metal4 -121800 142800 126000 168000 metal4 +105000 100800 109200 105000 metal2 +105000 100800 109200 105000 metal3 +105000 100800 109200 105000 metal4 +105000 100800 109200 105000 metal5 +105000 96600 109200 105000 metal6 +105000 96600 109200 100800 metal5 +105000 96600 117600 100800 metal5 +113400 96600 117600 100800 metal5 +113400 84000 117600 100800 metal6 +113400 134400 117600 138600 metal1 +113400 134400 117600 138600 metal2 +113400 134400 117600 138600 metal3 +113400 134400 117600 138600 metal4 +113400 134400 117600 138600 metal5 +113400 134400 117600 147000 metal6 +113400 142800 117600 147000 metal5 +113400 142800 117600 147000 metal4 +113400 142800 117600 147000 metal3 +113400 142800 121800 147000 metal3 +117600 142800 121800 147000 metal2 +117600 142800 121800 172200 metal2 +117600 168000 121800 172200 metal2 +117600 168000 121800 172200 metal3 +117600 168000 121800 197400 metal4 142800 134400 147000 138600 metal1 142800 134400 147000 138600 metal2 142800 134400 147000 138600 metal3 @@ -2386,34 +2357,59 @@ _159_ 142800 130200 147000 138600 metal6 142800 130200 147000 134400 metal5 142800 130200 151200 134400 metal5 -147000 117600 151200 134400 metal4 +84000 109200 88200 126000 metal6 +84000 109200 88200 113400 metal5 +84000 109200 88200 113400 metal4 +84000 109200 88200 113400 metal3 +84000 109200 88200 113400 metal2 +84000 109200 88200 113400 metal1 +84000 134400 88200 197400 metal6 +84000 193200 88200 197400 metal5 +84000 193200 121800 197400 metal5 +147000 130200 159600 134400 metal3 +147000 130200 151200 134400 metal3 +147000 130200 151200 134400 metal4 +147000 130200 151200 134400 metal5 +147000 117600 151200 134400 metal6 +147000 117600 151200 121800 metal5 +147000 117600 151200 121800 metal4 147000 117600 151200 121800 metal3 147000 117600 151200 121800 metal2 147000 117600 151200 121800 metal1 -84000 138600 92400 142800 metal3 -88200 138600 92400 142800 metal2 -88200 134400 92400 142800 metal2 -88200 134400 92400 138600 metal1 -113400 134400 117600 138600 metal1 -113400 134400 117600 147000 metal2 -113400 142800 117600 147000 metal2 -113400 142800 117600 147000 metal3 -113400 142800 117600 147000 metal4 -113400 142800 126000 147000 metal5 -134400 79800 142800 84000 metal5 +138600 63000 142800 67200 metal5 +138600 63000 142800 79800 metal6 +138600 75600 142800 79800 metal5 +138600 75600 142800 79800 metal4 +138600 75600 142800 79800 metal3 +138600 75600 142800 79800 metal2 +138600 75600 142800 79800 metal1 +138600 63000 184800 67200 metal5 +180600 63000 184800 67200 metal4 +180600 63000 184800 117600 metal4 +180600 113400 184800 117600 metal3 +155400 113400 184800 117600 metal3 +155400 113400 159600 117600 metal3 +155400 113400 159600 134400 metal4 +138600 75600 142800 84000 metal6 +138600 79800 142800 84000 metal5 138600 79800 142800 84000 metal4 138600 79800 142800 84000 metal3 138600 79800 142800 84000 metal2 138600 79800 142800 84000 metal1 +84000 134400 92400 138600 metal5 +88200 134400 92400 138600 metal4 +88200 134400 92400 138600 metal3 +88200 134400 92400 138600 metal2 +88200 134400 92400 138600 metal1 ) _160_ ( -113400 147000 117600 151200 metal1 -113400 142800 117600 151200 metal2 -113400 142800 117600 147000 metal2 -113400 142800 121800 147000 metal3 -117600 142800 121800 147000 metal2 -117600 142800 121800 147000 metal1 +71400 113400 75600 117600 metal4 +71400 113400 88200 117600 metal5 +84000 113400 88200 117600 metal4 +84000 113400 88200 117600 metal3 +84000 113400 88200 117600 metal2 +84000 113400 88200 117600 metal1 67200 113400 71400 117600 metal1 67200 113400 71400 117600 metal2 67200 113400 71400 117600 metal3 @@ -2423,113 +2419,110 @@ _160_ 113400 88200 117600 100800 metal2 113400 88200 117600 92400 metal2 113400 88200 121800 92400 metal3 -75600 130200 79800 163800 metal2 -75600 159600 79800 163800 metal2 -75600 159600 117600 163800 metal3 -113400 159600 117600 163800 metal2 -113400 151200 117600 163800 metal2 +113400 147000 117600 151200 metal1 +113400 147000 117600 151200 metal2 +113400 147000 117600 151200 metal3 +113400 147000 117600 151200 metal4 +113400 147000 117600 151200 metal5 +113400 142800 117600 151200 metal6 +113400 142800 117600 147000 metal5 +113400 142800 121800 147000 metal5 +117600 142800 121800 147000 metal4 +117600 142800 121800 147000 metal3 +117600 142800 121800 147000 metal2 +117600 142800 121800 147000 metal1 147000 134400 151200 138600 metal1 -147000 134400 151200 147000 metal2 -147000 142800 151200 147000 metal2 -138600 142800 151200 147000 metal3 -138600 142800 142800 147000 metal3 -138600 142800 142800 155400 metal4 -138600 151200 142800 155400 metal4 -113400 151200 142800 155400 metal5 -113400 151200 117600 155400 metal4 -113400 151200 117600 155400 metal3 -113400 151200 117600 155400 metal2 -113400 147000 117600 155400 metal2 -71400 113400 79800 117600 metal5 -75600 113400 79800 117600 metal4 -75600 113400 79800 117600 metal3 -75600 113400 79800 117600 metal2 -75600 109200 79800 117600 metal2 -75600 109200 79800 113400 metal2 -75600 109200 84000 113400 metal3 -79800 109200 84000 113400 metal3 -79800 109200 84000 117600 metal4 -79800 113400 84000 117600 metal3 -79800 113400 88200 117600 metal3 -84000 113400 88200 117600 metal2 -84000 113400 88200 117600 metal1 +147000 134400 151200 138600 metal2 +147000 134400 151200 138600 metal3 +147000 134400 151200 138600 metal4 +147000 134400 151200 138600 metal5 +147000 134400 151200 151200 metal6 +147000 147000 151200 151200 metal5 +130200 147000 151200 151200 metal5 +130200 147000 134400 151200 metal5 +130200 147000 134400 159600 metal6 +130200 155400 134400 159600 metal5 +113400 155400 134400 159600 metal5 +113400 155400 117600 159600 metal5 +113400 147000 117600 159600 metal6 +151200 130200 155400 134400 metal4 +151200 130200 163800 134400 metal5 +159600 130200 163800 134400 metal4 +159600 96600 163800 134400 metal4 +159600 96600 163800 100800 metal3 +155400 96600 163800 100800 metal3 +155400 96600 159600 100800 metal2 +155400 96600 159600 100800 metal1 117600 88200 121800 92400 metal1 117600 88200 121800 92400 metal2 117600 88200 121800 92400 metal3 117600 88200 121800 92400 metal4 -117600 88200 121800 92400 metal5 -117600 75600 121800 92400 metal6 -117600 75600 121800 79800 metal5 -117600 75600 126000 79800 metal5 -121800 75600 126000 79800 metal4 -121800 67200 126000 79800 metal4 -121800 67200 126000 71400 metal3 -121800 67200 130200 71400 metal3 -126000 67200 130200 71400 metal2 -126000 50400 130200 71400 metal2 -126000 50400 130200 54600 metal2 -126000 50400 134400 54600 metal3 -130200 50400 134400 54600 metal2 -130200 46200 134400 54600 metal2 -130200 46200 134400 50400 metal2 -130200 46200 151200 50400 metal3 -147000 46200 151200 50400 metal2 -147000 46200 151200 67200 metal2 -147000 63000 151200 67200 metal2 -147000 63000 163800 67200 metal3 -159600 63000 163800 67200 metal3 -159600 63000 163800 92400 metal4 +117600 88200 130200 92400 metal5 +126000 88200 130200 92400 metal4 +126000 88200 130200 92400 metal3 +126000 88200 130200 92400 metal2 +126000 84000 130200 92400 metal2 +126000 84000 130200 88200 metal2 +126000 84000 147000 88200 metal3 +142800 84000 147000 88200 metal3 +142800 84000 147000 92400 metal4 +142800 88200 147000 92400 metal4 +142800 88200 163800 92400 metal5 159600 88200 163800 92400 metal4 -155400 88200 163800 92400 metal5 -155400 88200 159600 92400 metal5 -155400 88200 159600 100800 metal6 -155400 96600 159600 100800 metal5 -155400 96600 159600 100800 metal4 -155400 96600 159600 100800 metal3 -155400 96600 159600 100800 metal2 -155400 96600 159600 100800 metal1 -151200 109200 155400 130200 metal4 -151200 109200 155400 113400 metal3 -151200 109200 155400 113400 metal2 -151200 96600 155400 113400 metal2 -151200 96600 155400 100800 metal2 -151200 96600 159600 100800 metal3 -71400 113400 75600 117600 metal5 -71400 113400 75600 134400 metal6 -71400 130200 75600 134400 metal5 -71400 130200 79800 134400 metal5 -75600 130200 79800 134400 metal4 -75600 130200 79800 134400 metal3 -75600 130200 79800 134400 metal2 -147000 130200 151200 138600 metal2 -147000 130200 151200 134400 metal2 -147000 130200 155400 134400 metal3 -151200 130200 155400 134400 metal3 -151200 126000 155400 134400 metal4 -75600 121800 79800 126000 metal1 -75600 121800 79800 126000 metal2 +159600 88200 163800 100800 metal4 +75600 155400 117600 159600 metal5 +71400 113400 75600 121800 metal4 +71400 117600 75600 121800 metal4 +67200 117600 75600 121800 metal5 +67200 117600 71400 121800 metal4 +67200 117600 71400 126000 metal4 +67200 121800 71400 126000 metal4 +63000 121800 71400 126000 metal5 +63000 121800 67200 126000 metal5 +63000 121800 67200 147000 metal6 +63000 142800 67200 147000 metal5 +58800 142800 67200 147000 metal5 +58800 142800 63000 147000 metal4 +58800 142800 63000 155400 metal4 +58800 151200 63000 155400 metal3 +54600 151200 63000 155400 metal3 +54600 151200 58800 155400 metal3 +54600 151200 58800 180600 metal4 +54600 176400 58800 180600 metal4 +54600 176400 79800 180600 metal5 +75600 176400 79800 180600 metal5 +75600 155400 79800 180600 metal6 +75600 155400 79800 159600 metal5 +147000 130200 151200 138600 metal6 +147000 130200 151200 134400 metal5 +147000 130200 155400 134400 metal5 +75600 121800 79800 159600 metal6 +75600 121800 79800 126000 metal5 +75600 121800 79800 126000 metal4 75600 121800 79800 126000 metal3 -75600 121800 79800 134400 metal4 +75600 121800 79800 126000 metal2 +75600 121800 79800 126000 metal1 138600 117600 142800 121800 metal1 138600 117600 142800 121800 metal2 138600 117600 142800 121800 metal3 138600 117600 142800 121800 metal4 138600 117600 147000 121800 metal5 -142800 117600 147000 121800 metal5 -142800 117600 147000 130200 metal6 -142800 126000 147000 130200 metal5 -142800 126000 155400 130200 metal5 -151200 126000 155400 130200 metal4 +142800 117600 147000 121800 metal4 +142800 117600 147000 121800 metal3 +142800 117600 147000 121800 metal2 +142800 117600 147000 130200 metal2 +142800 126000 147000 130200 metal2 +142800 126000 155400 130200 metal3 +151200 126000 155400 130200 metal3 +151200 126000 155400 134400 metal4 ) _161_ ( 75600 117600 79800 121800 metal1 75600 117600 79800 121800 metal2 -75600 117600 79800 121800 metal3 -75600 117600 79800 126000 metal4 -75600 121800 79800 126000 metal3 -75600 121800 84000 126000 metal3 -79800 121800 84000 126000 metal2 +75600 117600 84000 121800 metal3 +79800 117600 84000 121800 metal2 +79800 117600 84000 126000 metal2 79800 121800 84000 126000 metal1 ) _162_ @@ -2554,69 +2547,58 @@ _164_ ( 63000 113400 67200 117600 metal1 63000 113400 67200 117600 metal2 -63000 113400 71400 117600 metal3 -67200 113400 71400 117600 metal2 +63000 113400 67200 117600 metal3 +63000 109200 67200 117600 metal4 +63000 109200 67200 113400 metal3 +63000 109200 71400 113400 metal3 +67200 109200 71400 113400 metal2 +67200 109200 71400 117600 metal2 67200 113400 71400 117600 metal1 ) _165_ ( -138600 42000 172200 46200 metal5 -168000 42000 172200 46200 metal4 -168000 42000 172200 63000 metal4 -168000 58800 172200 63000 metal3 -168000 58800 180600 63000 metal3 -176400 58800 180600 63000 metal3 -176400 58800 180600 117600 metal4 -176400 113400 180600 117600 metal4 -155400 113400 180600 117600 metal5 -155400 113400 159600 117600 metal5 -155400 113400 159600 142800 metal6 -155400 138600 159600 142800 metal5 -155400 138600 159600 142800 metal4 -142800 134400 147000 138600 metal1 +134400 134400 147000 138600 metal3 142800 134400 147000 138600 metal2 -142800 134400 147000 138600 metal3 -142800 134400 147000 138600 metal4 -134400 134400 147000 138600 metal5 +142800 134400 147000 138600 metal1 +147000 134400 151200 138600 metal3 +147000 134400 151200 142800 metal4 +147000 138600 151200 142800 metal3 +147000 138600 163800 142800 metal3 +159600 138600 163800 142800 metal2 +159600 130200 163800 142800 metal2 +159600 130200 163800 134400 metal2 +159600 130200 168000 134400 metal3 +163800 130200 168000 134400 metal3 +163800 75600 168000 134400 metal4 +163800 75600 168000 79800 metal3 +151200 75600 168000 79800 metal3 +151200 75600 155400 79800 metal3 +151200 50400 155400 79800 metal4 +151200 50400 155400 54600 metal4 +134400 50400 155400 54600 metal5 +134400 50400 138600 54600 metal5 +134400 50400 138600 79800 metal6 +134400 75600 138600 79800 metal5 +134400 75600 138600 79800 metal4 +134400 75600 138600 79800 metal3 +121800 147000 138600 151200 metal3 +134400 147000 138600 151200 metal3 +134400 147000 138600 151200 metal4 +134400 147000 138600 151200 metal5 +134400 134400 138600 151200 metal6 +134400 134400 138600 138600 metal5 134400 134400 138600 138600 metal4 134400 134400 138600 138600 metal3 134400 134400 138600 138600 metal2 134400 134400 138600 138600 metal1 -113400 134400 117600 138600 metal1 -113400 134400 117600 138600 metal2 -109200 134400 117600 138600 metal3 -109200 134400 113400 138600 metal3 -109200 134400 113400 138600 metal4 -109200 134400 113400 138600 metal5 -109200 134400 113400 168000 metal6 -109200 163800 113400 168000 metal5 -88200 134400 96600 138600 metal5 -92400 134400 96600 138600 metal4 -92400 134400 96600 138600 metal3 -92400 134400 96600 138600 metal2 -92400 126000 96600 138600 metal2 -92400 126000 96600 130200 metal2 -92400 126000 96600 130200 metal3 -92400 126000 96600 130200 metal4 -92400 126000 96600 130200 metal5 -92400 113400 96600 130200 metal6 -92400 113400 96600 117600 metal5 -92400 113400 96600 117600 metal4 -92400 113400 96600 117600 metal3 -92400 113400 96600 117600 metal2 -92400 113400 96600 117600 metal1 113400 84000 117600 88200 metal1 113400 84000 117600 88200 metal2 113400 84000 117600 88200 metal3 -113400 84000 117600 88200 metal4 -113400 84000 117600 88200 metal5 -113400 84000 117600 100800 metal6 -113400 96600 117600 100800 metal5 -109200 96600 117600 100800 metal5 -109200 96600 113400 100800 metal5 -109200 96600 113400 105000 metal6 -109200 100800 113400 105000 metal5 -109200 100800 113400 105000 metal4 +113400 84000 117600 100800 metal4 +113400 96600 117600 100800 metal3 +109200 96600 117600 100800 metal3 +109200 96600 113400 100800 metal3 +109200 96600 113400 105000 metal4 109200 100800 113400 105000 metal3 109200 100800 113400 105000 metal2 109200 100800 113400 105000 metal1 @@ -2627,70 +2609,53 @@ _165_ 88200 105000 92400 109200 metal3 88200 105000 92400 109200 metal2 88200 105000 92400 109200 metal1 -142800 134400 151200 138600 metal5 -113400 63000 117600 88200 metal6 -113400 63000 117600 67200 metal5 -113400 63000 121800 67200 metal5 -117600 63000 121800 67200 metal5 -117600 54600 121800 67200 metal6 -117600 54600 121800 58800 metal5 -117600 54600 134400 58800 metal5 -130200 54600 134400 58800 metal5 -130200 50400 134400 58800 metal6 -130200 50400 134400 54600 metal5 -130200 50400 138600 54600 metal5 -134400 50400 138600 54600 metal4 -134400 42000 138600 54600 metal4 -134400 42000 138600 46200 metal4 -134400 42000 142800 46200 metal5 +138600 75600 142800 84000 metal2 +138600 75600 142800 79800 metal1 +142800 134400 151200 138600 metal3 +113400 79800 117600 88200 metal2 +113400 79800 117600 84000 metal2 +113400 79800 130200 84000 metal3 +126000 79800 130200 84000 metal2 +126000 75600 130200 84000 metal2 +126000 75600 130200 79800 metal2 +126000 75600 138600 79800 metal3 +88200 134400 92400 184800 metal2 +88200 180600 92400 184800 metal2 +88200 180600 126000 184800 metal3 +121800 180600 126000 184800 metal2 +121800 147000 126000 184800 metal2 88200 134400 92400 138600 metal1 88200 134400 92400 138600 metal2 88200 134400 92400 138600 metal3 88200 134400 92400 138600 metal4 -88200 134400 92400 138600 metal5 -88200 134400 92400 159600 metal6 -88200 155400 92400 159600 metal5 -88200 155400 100800 159600 metal5 -96600 155400 100800 159600 metal5 -96600 155400 100800 168000 metal6 -96600 163800 100800 168000 metal5 -96600 163800 113400 168000 metal5 -109200 163800 113400 172200 metal6 -109200 168000 113400 172200 metal5 -109200 168000 142800 172200 metal5 -138600 168000 142800 172200 metal5 -138600 159600 142800 172200 metal6 -138600 159600 142800 163800 metal5 -138600 159600 155400 163800 metal5 -151200 159600 155400 163800 metal5 -151200 147000 155400 163800 metal6 -151200 147000 155400 151200 metal5 -151200 147000 159600 151200 metal5 -155400 147000 159600 151200 metal4 -155400 138600 159600 151200 metal4 -147000 134400 151200 138600 metal5 -147000 117600 151200 138600 metal6 -147000 117600 151200 121800 metal5 -147000 117600 151200 121800 metal4 +88200 134400 96600 138600 metal5 +92400 134400 96600 138600 metal5 +92400 113400 96600 138600 metal6 +92400 113400 96600 117600 metal5 +92400 113400 96600 117600 metal4 +92400 113400 96600 117600 metal3 +92400 113400 96600 117600 metal2 +92400 113400 96600 117600 metal1 +147000 117600 151200 138600 metal4 147000 117600 151200 121800 metal3 147000 117600 151200 121800 metal2 147000 117600 151200 121800 metal1 -138600 42000 142800 46200 metal5 -138600 42000 142800 79800 metal6 -138600 75600 142800 79800 metal5 -138600 75600 142800 79800 metal4 -138600 75600 142800 79800 metal3 -138600 75600 142800 79800 metal2 -138600 75600 142800 79800 metal1 -138600 75600 142800 84000 metal6 -138600 79800 142800 84000 metal5 -138600 79800 142800 84000 metal4 -138600 79800 142800 84000 metal3 +113400 134400 117600 138600 metal1 +113400 134400 117600 138600 metal2 +113400 134400 126000 138600 metal3 +121800 134400 126000 138600 metal3 +121800 134400 126000 138600 metal4 +121800 134400 126000 138600 metal5 +121800 134400 126000 151200 metal6 +121800 147000 126000 151200 metal5 +121800 147000 126000 151200 metal4 +121800 147000 126000 151200 metal3 +121800 147000 126000 151200 metal2 +134400 75600 138600 84000 metal4 +134400 79800 138600 84000 metal3 +134400 79800 142800 84000 metal3 138600 79800 142800 84000 metal2 138600 79800 142800 84000 metal1 -147000 138600 159600 142800 metal5 -147000 138600 151200 142800 metal5 -147000 134400 151200 142800 metal6 ) _166_ ( @@ -2705,11 +2670,7 @@ _167_ ( 100800 84000 105000 88200 metal1 100800 84000 105000 88200 metal2 -100800 84000 105000 88200 metal3 -100800 84000 105000 88200 metal4 -100800 84000 109200 88200 metal5 -105000 84000 109200 88200 metal4 -105000 84000 109200 88200 metal3 +100800 84000 109200 88200 metal3 105000 84000 109200 88200 metal2 105000 84000 109200 88200 metal1 ) @@ -2727,24 +2688,22 @@ _168_ ) _169_ ( -130200 105000 134400 109200 metal5 -130200 96600 134400 109200 metal6 -130200 96600 134400 100800 metal5 -130200 96600 134400 100800 metal4 -130200 96600 134400 100800 metal3 -130200 96600 134400 100800 metal2 -130200 96600 134400 100800 metal1 +126000 109200 134400 113400 metal3 121800 100800 126000 105000 metal1 121800 100800 126000 105000 metal2 121800 100800 126000 105000 metal3 121800 100800 126000 109200 metal4 121800 105000 126000 109200 metal3 121800 105000 130200 109200 metal3 -130200 105000 138600 109200 metal5 -134400 105000 138600 109200 metal4 -134400 105000 138600 109200 metal3 -134400 105000 138600 109200 metal2 -134400 105000 138600 109200 metal1 +130200 96600 134400 100800 metal1 +130200 96600 134400 100800 metal2 +130200 96600 134400 100800 metal3 +130200 96600 134400 100800 metal4 +130200 96600 134400 100800 metal5 +130200 96600 134400 113400 metal6 +130200 109200 134400 113400 metal5 +130200 109200 134400 113400 metal4 +130200 109200 134400 113400 metal3 126000 109200 130200 113400 metal1 126000 109200 130200 113400 metal2 126000 109200 130200 113400 metal3 @@ -2755,9 +2714,12 @@ _169_ 126000 105000 130200 109200 metal4 126000 105000 130200 109200 metal3 126000 105000 130200 109200 metal2 -126000 109200 134400 113400 metal5 -130200 109200 134400 113400 metal5 -130200 105000 134400 113400 metal6 +130200 109200 138600 113400 metal5 +134400 109200 138600 113400 metal4 +134400 105000 138600 113400 metal4 +134400 105000 138600 109200 metal3 +134400 105000 138600 109200 metal2 +134400 105000 138600 109200 metal1 126000 100800 130200 109200 metal2 126000 100800 130200 105000 metal1 ) @@ -2771,30 +2733,29 @@ _170_ ) _171_ ( -113400 100800 117600 105000 metal1 -113400 100800 117600 105000 metal2 -113400 100800 117600 105000 metal3 -113400 100800 117600 105000 metal4 -113400 100800 130200 105000 metal5 -126000 100800 130200 105000 metal5 -126000 96600 130200 105000 metal6 -126000 96600 130200 100800 metal5 -126000 96600 134400 100800 metal5 +113400 100800 121800 105000 metal3 +117600 100800 121800 105000 metal3 +117600 96600 121800 105000 metal4 +117600 96600 121800 100800 metal4 +117600 96600 134400 100800 metal5 130200 96600 134400 100800 metal4 130200 96600 134400 100800 metal3 130200 96600 134400 100800 metal2 130200 96600 134400 100800 metal1 -113400 100800 117600 113400 metal4 +113400 100800 117600 105000 metal1 +113400 100800 117600 105000 metal2 +113400 100800 117600 105000 metal3 +113400 100800 117600 105000 metal4 +113400 100800 117600 105000 metal5 +113400 100800 117600 113400 metal6 +113400 109200 117600 113400 metal5 +113400 109200 117600 113400 metal4 113400 109200 117600 113400 metal3 113400 109200 117600 113400 metal2 113400 109200 117600 113400 metal1 138600 100800 142800 105000 metal1 138600 100800 142800 105000 metal2 -138600 100800 142800 105000 metal3 -138600 100800 142800 105000 metal4 -130200 100800 142800 105000 metal5 -130200 100800 134400 105000 metal4 -130200 100800 134400 105000 metal3 +130200 100800 142800 105000 metal3 130200 100800 134400 105000 metal2 130200 100800 134400 105000 metal1 130200 96600 134400 105000 metal2 @@ -2807,89 +2768,87 @@ _172_ 113400 126000 117600 130200 metal4 113400 126000 121800 130200 metal5 117600 126000 121800 130200 metal4 -117600 126000 121800 130200 metal3 -117600 126000 121800 130200 metal2 -117600 121800 121800 126000 metal1 -117600 121800 121800 126000 metal2 -117600 121800 121800 126000 metal3 117600 121800 121800 130200 metal4 -117600 126000 121800 134400 metal2 -117600 130200 121800 134400 metal2 -117600 130200 126000 134400 metal3 -121800 130200 126000 134400 metal2 -121800 126000 126000 134400 metal2 +117600 121800 121800 126000 metal3 +117600 121800 121800 126000 metal2 +117600 121800 121800 126000 metal1 +117600 126000 126000 130200 metal5 +121800 126000 126000 130200 metal4 +121800 126000 126000 130200 metal3 +121800 126000 126000 130200 metal2 121800 126000 126000 130200 metal1 ) _173_ ( -113400 126000 117600 130200 metal1 -113400 126000 117600 130200 metal2 +109200 134400 113400 138600 metal1 +109200 130200 113400 138600 metal2 +109200 130200 113400 134400 metal2 +109200 130200 117600 134400 metal3 +113400 130200 117600 134400 metal2 +113400 130200 117600 134400 metal1 +109200 126000 113400 130200 metal2 109200 126000 117600 130200 metal3 +113400 126000 117600 130200 metal2 +113400 126000 117600 130200 metal1 105000 126000 109200 130200 metal1 105000 126000 109200 130200 metal2 105000 126000 113400 130200 metal3 -109200 126000 113400 130200 metal3 -109200 126000 113400 134400 metal4 -109200 130200 113400 138600 metal4 -109200 134400 113400 138600 metal3 -109200 134400 113400 138600 metal2 -109200 134400 113400 138600 metal1 -109200 130200 113400 134400 metal4 -109200 130200 117600 134400 metal5 -113400 130200 117600 134400 metal4 -113400 130200 117600 134400 metal3 -113400 130200 117600 134400 metal2 -113400 130200 117600 134400 metal1 +109200 126000 113400 134400 metal2 ) _174_ ( -109200 100800 113400 105000 metal1 -109200 100800 113400 105000 metal2 -109200 100800 113400 105000 metal3 -109200 100800 113400 113400 metal4 +109200 100800 113400 117600 metal4 100800 100800 105000 105000 metal1 -100800 96600 105000 105000 metal2 -100800 96600 105000 100800 metal2 -100800 96600 105000 100800 metal3 -100800 96600 105000 100800 metal4 -100800 96600 113400 100800 metal5 -109200 96600 113400 100800 metal4 -109200 96600 113400 105000 metal4 -109200 109200 113400 113400 metal3 -109200 109200 113400 113400 metal4 -109200 109200 113400 113400 metal5 -109200 109200 113400 130200 metal6 +100800 100800 105000 105000 metal2 +100800 100800 105000 105000 metal3 +100800 100800 105000 105000 metal4 +100800 100800 113400 105000 metal5 +109200 100800 113400 105000 metal4 +109200 100800 113400 105000 metal3 +109200 100800 113400 105000 metal2 +109200 100800 113400 105000 metal1 +109200 113400 113400 117600 metal4 +109200 113400 113400 117600 metal5 +109200 113400 113400 130200 metal6 109200 126000 113400 130200 metal5 109200 126000 117600 130200 metal5 113400 126000 117600 130200 metal4 113400 126000 117600 130200 metal3 113400 126000 117600 130200 metal2 113400 126000 117600 130200 metal1 -109200 109200 117600 113400 metal3 -113400 109200 117600 113400 metal2 -113400 109200 117600 117600 metal2 +109200 113400 117600 117600 metal5 +113400 113400 117600 117600 metal4 +113400 113400 117600 117600 metal3 +113400 113400 117600 117600 metal2 113400 113400 117600 117600 metal1 ) _175_ ( -142800 92400 147000 100800 metal2 -147000 96600 151200 105000 metal2 -147000 100800 151200 105000 metal2 -147000 100800 155400 105000 metal3 -151200 100800 155400 105000 metal2 -151200 100800 155400 105000 metal1 -138600 92400 142800 100800 metal2 +142800 92400 147000 96600 metal1 +142800 92400 147000 96600 metal2 +142800 92400 147000 96600 metal3 +142800 92400 147000 96600 metal4 +142800 92400 151200 96600 metal5 +147000 92400 151200 96600 metal4 +147000 88200 151200 96600 metal4 +147000 88200 151200 92400 metal3 +147000 88200 155400 92400 metal3 +151200 88200 155400 92400 metal2 +151200 88200 155400 100800 metal2 138600 96600 142800 100800 metal1 +138600 92400 142800 100800 metal2 +151200 96600 155400 105000 metal2 +151200 100800 155400 105000 metal1 +147000 96600 151200 100800 metal1 +147000 96600 151200 100800 metal2 +147000 96600 155400 100800 metal3 +151200 96600 155400 100800 metal2 +142800 96600 151200 100800 metal3 +142800 96600 147000 100800 metal2 +142800 96600 147000 100800 metal1 138600 92400 142800 96600 metal1 138600 92400 142800 96600 metal2 138600 92400 147000 96600 metal3 -142800 92400 147000 96600 metal2 -142800 92400 147000 96600 metal1 -142800 96600 147000 100800 metal1 -142800 96600 147000 100800 metal2 -142800 96600 151200 100800 metal3 -147000 96600 151200 100800 metal2 -147000 96600 151200 100800 metal1 ) _176_ ( @@ -2912,35 +2871,35 @@ _177_ 113400 100800 117600 105000 metal3 113400 100800 117600 105000 metal2 113400 100800 117600 105000 metal1 -117600 100800 121800 105000 metal1 -117600 100800 121800 113400 metal2 +117600 105000 121800 113400 metal2 117600 109200 121800 113400 metal1 -113400 100800 121800 105000 metal1 -134400 88200 138600 92400 metal3 -134400 88200 138600 92400 metal4 -134400 88200 142800 92400 metal5 -138600 88200 142800 92400 metal5 -138600 88200 142800 96600 metal6 -138600 92400 142800 96600 metal5 -138600 92400 142800 96600 metal4 -138600 92400 142800 96600 metal3 -138600 92400 142800 96600 metal2 +113400 100800 117600 109200 metal4 +113400 105000 117600 109200 metal4 +113400 105000 121800 109200 metal5 +117600 105000 121800 109200 metal4 +117600 105000 121800 109200 metal3 +117600 105000 121800 109200 metal2 +134400 92400 142800 96600 metal3 +117600 105000 130200 109200 metal5 +126000 105000 130200 109200 metal5 +126000 92400 130200 109200 metal6 +126000 92400 130200 96600 metal5 +126000 92400 138600 96600 metal5 +134400 92400 138600 96600 metal4 +134400 92400 138600 96600 metal3 +134400 92400 138600 96600 metal2 138600 92400 142800 96600 metal1 -134400 96600 142800 100800 metal3 +138600 92400 142800 96600 metal2 +138600 92400 142800 96600 metal3 +138600 92400 142800 96600 metal4 +138600 92400 142800 96600 metal5 +138600 92400 142800 100800 metal6 +138600 96600 142800 100800 metal5 +138600 96600 142800 100800 metal4 +138600 96600 142800 100800 metal3 138600 96600 142800 100800 metal2 138600 96600 142800 100800 metal1 -117600 96600 121800 105000 metal2 -117600 96600 121800 100800 metal2 -117600 96600 121800 100800 metal3 -117600 88200 121800 100800 metal4 -117600 88200 121800 92400 metal4 -117600 88200 130200 92400 metal5 -126000 88200 130200 92400 metal4 -126000 88200 130200 92400 metal3 -126000 88200 138600 92400 metal3 -134400 88200 138600 100800 metal4 -134400 96600 138600 100800 metal3 -134400 96600 138600 100800 metal2 +134400 92400 138600 100800 metal2 134400 96600 138600 100800 metal1 ) _178_ @@ -3004,9 +2963,11 @@ _183_ _184_ ( 109200 113400 113400 117600 metal1 -109200 105000 113400 117600 metal2 -109200 105000 113400 109200 metal2 -109200 105000 117600 109200 metal3 +109200 113400 113400 117600 metal2 +109200 113400 117600 117600 metal3 +113400 113400 117600 117600 metal3 +113400 105000 117600 117600 metal4 +113400 105000 117600 109200 metal3 113400 105000 117600 109200 metal2 113400 105000 117600 109200 metal1 ) @@ -3021,10 +2982,10 @@ _186_ 138600 100800 142800 105000 metal1 138600 100800 142800 105000 metal2 138600 100800 142800 105000 metal3 -138600 100800 142800 105000 metal4 -138600 100800 151200 105000 metal5 -147000 100800 151200 105000 metal4 -147000 96600 151200 105000 metal4 +138600 96600 142800 105000 metal4 +138600 96600 142800 100800 metal4 +138600 96600 151200 100800 metal5 +147000 96600 151200 100800 metal4 147000 96600 151200 100800 metal3 147000 96600 151200 100800 metal2 147000 96600 151200 100800 metal1 @@ -3055,16 +3016,19 @@ _189_ 121800 105000 126000 109200 metal1 121800 105000 126000 109200 metal2 121800 105000 126000 109200 metal3 -121800 105000 126000 117600 metal4 -121800 113400 126000 117600 metal3 -121800 113400 138600 117600 metal3 -134400 113400 138600 117600 metal3 -134400 105000 138600 117600 metal4 -134400 105000 138600 109200 metal3 -134400 105000 138600 109200 metal2 -134400 100800 138600 109200 metal2 -134400 100800 138600 105000 metal2 -134400 100800 142800 105000 metal3 +121800 105000 126000 113400 metal4 +121800 109200 126000 113400 metal4 +121800 109200 130200 113400 metal5 +126000 109200 130200 113400 metal4 +126000 109200 130200 117600 metal4 +126000 113400 130200 117600 metal4 +126000 113400 138600 117600 metal5 +134400 113400 138600 117600 metal5 +134400 100800 138600 117600 metal6 +134400 100800 138600 105000 metal5 +134400 100800 142800 105000 metal5 +138600 100800 142800 105000 metal4 +138600 100800 142800 105000 metal3 138600 100800 142800 105000 metal2 138600 100800 142800 105000 metal1 ) @@ -3135,9 +3099,10 @@ _197_ 113400 121800 117600 126000 metal1 113400 121800 117600 126000 metal2 113400 121800 117600 126000 metal3 -113400 109200 117600 126000 metal4 -113400 109200 117600 113400 metal3 -113400 109200 117600 113400 metal2 +113400 117600 117600 126000 metal4 +113400 117600 117600 121800 metal3 +113400 117600 117600 121800 metal2 +113400 109200 117600 121800 metal2 113400 109200 117600 113400 metal1 ) _198_ @@ -3150,9 +3115,12 @@ _199_ ( 105000 96600 109200 100800 metal1 105000 96600 109200 100800 metal2 -105000 96600 117600 100800 metal3 -113400 96600 117600 100800 metal2 -113400 96600 117600 109200 metal2 +105000 96600 113400 100800 metal3 +109200 96600 113400 100800 metal2 +109200 96600 113400 109200 metal2 +109200 105000 113400 109200 metal2 +109200 105000 117600 109200 metal3 +113400 105000 117600 109200 metal2 113400 105000 117600 109200 metal1 ) _200_ @@ -3181,18 +3149,19 @@ _201_ 79800 71400 84000 75600 metal1 79800 71400 84000 75600 metal2 79800 71400 88200 75600 metal3 -84000 71400 88200 75600 metal2 100800 67200 105000 71400 metal1 -100800 67200 105000 75600 metal2 -84000 71400 88200 79800 metal2 -84000 75600 88200 79800 metal2 -84000 75600 100800 79800 metal3 -96600 75600 100800 79800 metal2 -96600 71400 100800 79800 metal2 -96600 71400 100800 75600 metal2 -96600 71400 105000 75600 metal3 +100800 67200 105000 71400 metal2 +100800 67200 105000 71400 metal3 +100800 67200 105000 75600 metal4 +100800 71400 105000 75600 metal3 100800 71400 105000 75600 metal2 100800 71400 105000 75600 metal1 +84000 71400 88200 75600 metal3 +84000 71400 88200 79800 metal4 +84000 75600 88200 79800 metal4 +84000 75600 105000 79800 metal5 +100800 75600 105000 79800 metal4 +100800 71400 105000 79800 metal4 84000 71400 92400 75600 metal3 88200 71400 92400 75600 metal2 88200 71400 92400 75600 metal1 @@ -3214,6 +3183,10 @@ _203_ 75600 84000 84000 88200 metal3 79800 84000 84000 88200 metal2 79800 84000 84000 88200 metal1 +71400 79800 75600 88200 metal4 +71400 79800 75600 84000 metal3 +71400 79800 75600 84000 metal2 +71400 79800 75600 84000 metal1 71400 84000 75600 88200 metal1 71400 84000 75600 88200 metal2 71400 84000 75600 88200 metal3 @@ -3225,49 +3198,58 @@ _203_ 75600 84000 79800 88200 metal1 63000 79800 67200 84000 metal1 63000 79800 67200 84000 metal2 -63000 79800 75600 84000 metal3 -71400 79800 75600 84000 metal2 -71400 79800 75600 84000 metal1 -71400 79800 75600 88200 metal2 +63000 79800 71400 84000 metal3 +67200 79800 71400 84000 metal3 +67200 79800 71400 88200 metal4 +67200 84000 71400 88200 metal4 +67200 84000 75600 88200 metal5 ) _204_ ( 71400 92400 75600 96600 metal1 71400 92400 75600 96600 metal2 -71400 92400 79800 96600 metal3 +71400 92400 75600 96600 metal3 +71400 88200 75600 96600 metal4 +71400 88200 75600 92400 metal3 +71400 88200 79800 92400 metal3 +75600 88200 79800 92400 metal1 +75600 88200 79800 92400 metal2 +75600 88200 79800 92400 metal3 +75600 88200 79800 96600 metal4 +75600 92400 79800 96600 metal3 75600 92400 79800 96600 metal2 75600 92400 79800 96600 metal1 -75600 84000 79800 88200 metal1 75600 84000 79800 92400 metal2 -75600 88200 79800 92400 metal1 -75600 88200 79800 96600 metal2 -75600 92400 84000 96600 metal3 -79800 92400 84000 96600 metal2 -79800 84000 84000 96600 metal2 +75600 84000 79800 88200 metal1 +75600 88200 84000 92400 metal3 +79800 88200 84000 92400 metal2 +79800 84000 84000 92400 metal2 79800 84000 84000 88200 metal1 ) _205_ ( -88200 88200 92400 92400 metal1 -88200 88200 92400 92400 metal2 -88200 88200 96600 92400 metal3 -92400 88200 96600 92400 metal3 -92400 88200 96600 100800 metal4 -92400 96600 96600 100800 metal3 +88200 88200 92400 96600 metal2 +88200 92400 92400 96600 metal2 +88200 92400 96600 96600 metal3 +92400 92400 96600 96600 metal2 +92400 92400 96600 100800 metal2 +92400 96600 96600 100800 metal2 92400 96600 105000 100800 metal3 100800 96600 105000 100800 metal1 100800 96600 105000 100800 metal2 100800 96600 105000 100800 metal3 -100800 96600 105000 105000 metal4 -100800 100800 105000 105000 metal4 -100800 100800 109200 105000 metal5 -105000 100800 109200 105000 metal4 -105000 100800 109200 105000 metal3 +100800 96600 105000 100800 metal4 +100800 96600 109200 100800 metal5 +105000 96600 109200 100800 metal4 +105000 96600 109200 105000 metal4 +105000 100800 109200 105000 metal3 105000 100800 109200 105000 metal2 105000 100800 109200 105000 metal1 79800 88200 84000 92400 metal1 79800 88200 84000 92400 metal2 79800 88200 92400 92400 metal3 +88200 88200 92400 92400 metal2 +88200 88200 92400 92400 metal1 ) _206_ ( @@ -3287,21 +3269,34 @@ _206_ ) _207_ ( -88200 58800 92400 63000 metal1 -88200 58800 92400 63000 metal2 -88200 58800 92400 63000 metal3 88200 58800 92400 67200 metal4 88200 63000 92400 67200 metal3 88200 63000 92400 67200 metal2 88200 63000 92400 67200 metal1 -92400 58800 96600 63000 metal2 -92400 58800 100800 63000 metal3 -96600 58800 100800 63000 metal2 -96600 58800 100800 71400 metal2 -96600 67200 100800 71400 metal1 -88200 58800 96600 63000 metal3 -92400 54600 96600 63000 metal2 92400 54600 96600 58800 metal1 +92400 54600 96600 58800 metal2 +92400 54600 96600 58800 metal3 +92400 54600 96600 58800 metal4 +92400 54600 100800 58800 metal5 +96600 54600 100800 58800 metal4 +96600 54600 100800 63000 metal4 +96600 58800 100800 63000 metal3 +96600 58800 105000 63000 metal3 +100800 58800 105000 63000 metal3 +100800 58800 105000 71400 metal4 +100800 67200 105000 71400 metal4 +96600 67200 105000 71400 metal5 +96600 67200 100800 71400 metal4 +96600 67200 100800 71400 metal3 +96600 67200 100800 71400 metal2 +96600 67200 100800 71400 metal1 +88200 58800 92400 63000 metal1 +88200 58800 92400 63000 metal2 +88200 58800 92400 63000 metal3 +88200 58800 92400 63000 metal4 +88200 58800 96600 63000 metal5 +92400 58800 96600 63000 metal4 +92400 54600 96600 63000 metal4 ) _208_ ( @@ -3310,28 +3305,29 @@ _208_ 92400 54600 100800 58800 metal3 96600 54600 100800 58800 metal2 96600 54600 100800 58800 metal1 -96600 54600 100800 63000 metal2 -96600 58800 100800 63000 metal2 -96600 58800 105000 63000 metal3 +96600 54600 105000 58800 metal3 +100800 54600 105000 58800 metal3 +100800 54600 105000 63000 metal4 +100800 58800 105000 63000 metal3 100800 58800 105000 63000 metal2 100800 58800 105000 63000 metal1 ) _209_ ( -96600 42000 100800 50400 metal2 -96600 46200 100800 50400 metal1 96600 37800 100800 42000 metal1 -96600 33600 100800 42000 metal2 -96600 33600 100800 37800 metal2 -96600 33600 105000 37800 metal3 -100800 33600 105000 37800 metal2 -100800 33600 105000 42000 metal2 +96600 37800 100800 42000 metal2 +96600 37800 100800 42000 metal3 +96600 37800 100800 50400 metal4 +96600 46200 100800 50400 metal3 +96600 46200 100800 50400 metal2 +96600 46200 100800 50400 metal1 +96600 37800 105000 42000 metal3 +100800 37800 105000 42000 metal2 100800 37800 105000 42000 metal1 92400 42000 96600 46200 metal1 -92400 42000 96600 46200 metal2 -92400 42000 100800 46200 metal3 -96600 42000 100800 46200 metal2 -96600 37800 100800 46200 metal2 +92400 37800 96600 46200 metal2 +92400 37800 96600 42000 metal2 +92400 37800 100800 42000 metal3 ) _210_ ( @@ -3343,74 +3339,74 @@ _210_ 96600 54600 100800 58800 metal2 96600 54600 100800 58800 metal1 92400 50400 96600 54600 metal1 -92400 46200 96600 54600 metal2 -92400 46200 96600 50400 metal2 -92400 46200 100800 50400 metal3 +92400 50400 96600 54600 metal2 +92400 50400 96600 54600 metal3 +92400 42000 96600 54600 metal4 +92400 42000 96600 46200 metal3 +92400 42000 100800 46200 metal3 +96600 42000 100800 46200 metal2 +96600 42000 100800 50400 metal2 ) _211_ ( 100800 50400 105000 54600 metal1 -100800 46200 105000 54600 metal2 -100800 46200 105000 50400 metal2 -100800 46200 109200 50400 metal3 -105000 46200 109200 50400 metal2 +100800 50400 105000 54600 metal2 +100800 50400 109200 54600 metal3 +105000 50400 109200 54600 metal2 +105000 46200 109200 54600 metal2 105000 46200 109200 50400 metal1 -105000 46200 109200 58800 metal2 105000 54600 109200 58800 metal1 +105000 50400 109200 58800 metal2 ) _212_ ( -96600 50400 100800 58800 metal2 -96600 54600 100800 58800 metal1 96600 46200 100800 54600 metal2 -96600 46200 100800 50400 metal1 -92400 50400 96600 54600 metal1 -92400 50400 96600 54600 metal2 -92400 50400 100800 54600 metal3 +96600 54600 100800 58800 metal1 +96600 50400 100800 58800 metal2 96600 50400 100800 54600 metal2 96600 50400 105000 54600 metal3 100800 50400 105000 54600 metal2 100800 50400 105000 54600 metal1 +96600 46200 100800 50400 metal1 +96600 46200 100800 50400 metal2 +92400 46200 100800 50400 metal3 +92400 46200 96600 50400 metal2 +92400 46200 96600 54600 metal2 +92400 50400 96600 54600 metal1 ) _213_ ( 96600 84000 100800 88200 metal3 -96600 84000 100800 113400 metal4 -96600 109200 100800 113400 metal4 -96600 109200 105000 113400 metal5 -100800 109200 105000 113400 metal5 -100800 105000 105000 113400 metal6 -100800 105000 105000 109200 metal5 -100800 105000 109200 109200 metal5 -105000 105000 109200 109200 metal4 -105000 100800 109200 109200 metal4 -105000 100800 109200 105000 metal3 -105000 100800 109200 105000 metal2 -105000 100800 109200 105000 metal1 +96600 84000 100800 92400 metal4 +96600 88200 100800 92400 metal3 +96600 88200 105000 92400 metal3 +100800 88200 105000 92400 metal3 +100800 88200 105000 96600 metal4 +100800 92400 105000 96600 metal4 +100800 92400 109200 96600 metal5 +105000 92400 109200 96600 metal4 +105000 92400 109200 100800 metal4 +105000 96600 109200 100800 metal3 +105000 96600 109200 100800 metal2 +105000 96600 109200 100800 metal1 92400 84000 96600 88200 metal1 92400 84000 96600 88200 metal2 92400 84000 100800 88200 metal3 -96600 75600 100800 88200 metal4 -96600 75600 100800 79800 metal4 -96600 75600 105000 79800 metal5 -100800 75600 105000 79800 metal5 -100800 54600 105000 79800 metal6 -100800 54600 105000 58800 metal5 -96600 54600 105000 58800 metal5 -96600 54600 100800 58800 metal4 -96600 54600 100800 58800 metal3 -96600 54600 100800 58800 metal2 -96600 54600 100800 58800 metal1 105000 96600 109200 105000 metal2 -105000 96600 109200 100800 metal1 +105000 100800 109200 105000 metal1 +96600 54600 100800 58800 metal1 +96600 54600 100800 63000 metal2 +96600 58800 100800 63000 metal2 +96600 58800 100800 63000 metal3 +96600 58800 100800 88200 metal4 ) _214_ ( 100800 96600 105000 100800 metal1 -100800 92400 105000 100800 metal2 -100800 92400 105000 96600 metal2 -100800 92400 109200 96600 metal3 -105000 92400 109200 96600 metal2 +100800 96600 105000 100800 metal2 +100800 96600 109200 100800 metal3 +105000 96600 109200 100800 metal2 +105000 92400 109200 100800 metal2 105000 92400 109200 96600 metal1 ) _215_ @@ -3419,10 +3415,8 @@ _215_ 92400 88200 96600 96600 metal2 92400 92400 96600 96600 metal2 92400 92400 105000 96600 metal3 -100800 92400 105000 96600 metal3 -100800 92400 105000 100800 metal4 -100800 96600 105000 100800 metal3 -100800 96600 105000 100800 metal2 +100800 92400 105000 96600 metal2 +100800 92400 105000 100800 metal2 100800 96600 105000 100800 metal1 ) _216_ @@ -3438,29 +3432,24 @@ _216_ _217_ ( 71400 84000 75600 88200 metal1 -71400 84000 75600 88200 metal2 -71400 84000 75600 88200 metal3 -71400 79800 75600 88200 metal4 -71400 79800 75600 84000 metal3 +71400 79800 75600 88200 metal2 +71400 79800 75600 84000 metal2 71400 79800 79800 84000 metal3 75600 79800 79800 84000 metal2 75600 79800 79800 84000 metal1 ) _218_ ( -67200 75600 71400 79800 metal1 -67200 75600 71400 79800 metal2 -67200 75600 71400 79800 metal3 -67200 75600 71400 84000 metal4 -67200 79800 71400 84000 metal4 -67200 79800 75600 84000 metal5 -71400 79800 75600 84000 metal4 -71400 79800 75600 84000 metal3 +67200 75600 71400 84000 metal2 +67200 79800 71400 84000 metal2 +67200 79800 75600 84000 metal3 71400 79800 75600 84000 metal2 71400 79800 75600 84000 metal1 63000 75600 67200 79800 metal1 63000 75600 67200 79800 metal2 63000 75600 71400 79800 metal3 +67200 75600 71400 79800 metal2 +67200 75600 71400 79800 metal1 ) _219_ ( @@ -3475,15 +3464,13 @@ _220_ ( 75600 75600 79800 79800 metal1 75600 75600 79800 79800 metal2 -75600 75600 88200 79800 metal3 -84000 75600 88200 79800 metal2 -84000 75600 88200 88200 metal2 -84000 84000 88200 88200 metal2 -84000 84000 92400 88200 metal3 -88200 84000 92400 88200 metal3 -88200 79800 92400 88200 metal4 -88200 79800 92400 84000 metal4 -88200 79800 96600 84000 metal5 +75600 75600 84000 79800 metal3 +79800 75600 84000 79800 metal3 +79800 75600 84000 79800 metal4 +79800 75600 84000 79800 metal5 +79800 75600 84000 84000 metal6 +79800 79800 84000 84000 metal5 +79800 79800 96600 84000 metal5 92400 79800 96600 84000 metal4 92400 79800 96600 84000 metal3 92400 79800 96600 84000 metal2 @@ -3491,30 +3478,24 @@ _220_ ) _221_ ( -92400 63000 96600 71400 metal2 92400 63000 96600 67200 metal2 -92400 63000 105000 67200 metal3 -100800 63000 105000 67200 metal3 -100800 58800 105000 67200 metal4 -100800 58800 105000 63000 metal4 -100800 58800 113400 63000 metal5 -109200 58800 113400 63000 metal4 -109200 58800 113400 67200 metal4 -109200 63000 113400 67200 metal3 -109200 63000 117600 67200 metal3 -113400 63000 117600 67200 metal2 -113400 63000 117600 71400 metal2 -113400 67200 117600 71400 metal2 -113400 67200 121800 71400 metal3 +92400 63000 96600 67200 metal3 +92400 58800 96600 67200 metal4 +92400 58800 96600 63000 metal4 +92400 58800 121800 63000 metal5 +117600 58800 121800 63000 metal5 +117600 58800 121800 71400 metal6 +117600 67200 121800 71400 metal5 +117600 67200 121800 71400 metal4 +117600 67200 121800 71400 metal3 +117600 67200 121800 71400 metal2 +117600 67200 121800 71400 metal1 88200 67200 92400 71400 metal1 -88200 67200 92400 71400 metal2 -88200 67200 96600 71400 metal3 -92400 67200 96600 71400 metal2 +88200 63000 92400 71400 metal2 +88200 63000 92400 67200 metal2 +88200 63000 96600 67200 metal3 92400 71400 96600 75600 metal1 -92400 67200 96600 75600 metal2 -117600 67200 121800 71400 metal1 -117600 67200 121800 71400 metal2 -117600 67200 121800 71400 metal3 +92400 63000 96600 75600 metal2 117600 67200 121800 75600 metal4 117600 71400 121800 75600 metal3 117600 71400 121800 75600 metal2 @@ -3567,16 +3548,21 @@ _226_ ) _227_ ( -84000 58800 88200 63000 metal1 -84000 58800 88200 63000 metal2 -84000 58800 92400 63000 metal3 -88200 58800 92400 63000 metal2 -88200 58800 92400 67200 metal2 +84000 58800 88200 67200 metal2 +84000 63000 88200 67200 metal2 +84000 63000 92400 67200 metal3 +88200 63000 92400 67200 metal2 88200 63000 92400 67200 metal1 79800 54600 84000 58800 metal1 -79800 54600 84000 63000 metal2 -79800 58800 84000 63000 metal2 -79800 58800 88200 63000 metal3 +79800 54600 84000 58800 metal2 +79800 54600 84000 58800 metal3 +79800 54600 84000 58800 metal4 +79800 54600 88200 58800 metal5 +84000 54600 88200 58800 metal4 +84000 54600 88200 63000 metal4 +84000 58800 88200 63000 metal3 +84000 58800 88200 63000 metal2 +84000 58800 88200 63000 metal1 ) _228_ ( @@ -3585,30 +3571,22 @@ _228_ 88200 58800 92400 63000 metal3 88200 58800 92400 63000 metal4 84000 58800 92400 63000 metal5 -84000 58800 88200 63000 metal4 -84000 58800 88200 84000 metal4 -84000 79800 88200 84000 metal4 -84000 79800 92400 84000 metal5 -88200 79800 92400 84000 metal5 -88200 79800 92400 96600 metal6 -88200 92400 92400 96600 metal5 -88200 92400 92400 96600 metal4 -88200 92400 92400 96600 metal3 -88200 92400 96600 96600 metal3 -92400 92400 96600 96600 metal3 -92400 92400 96600 96600 metal4 -92400 92400 96600 96600 metal5 -92400 88200 96600 96600 metal6 -92400 88200 96600 92400 metal5 -92400 88200 96600 92400 metal4 -92400 88200 96600 92400 metal3 +84000 58800 88200 63000 metal5 +84000 58800 88200 88200 metal6 +84000 84000 88200 88200 metal5 +84000 84000 92400 88200 metal5 +88200 84000 92400 88200 metal4 +88200 84000 92400 92400 metal4 +88200 88200 92400 92400 metal3 +88200 88200 96600 92400 metal3 92400 88200 96600 92400 metal2 92400 88200 96600 92400 metal1 ) _229_ ( -96600 105000 100800 109200 metal2 -96600 105000 100800 109200 metal3 +96600 100800 100800 105000 metal2 +96600 100800 100800 105000 metal3 +96600 100800 100800 109200 metal4 96600 105000 100800 109200 metal4 96600 105000 105000 109200 metal5 100800 105000 105000 109200 metal4 @@ -3617,12 +3595,9 @@ _229_ 100800 105000 105000 109200 metal1 92400 100800 96600 105000 metal1 92400 100800 96600 105000 metal2 -92400 100800 96600 105000 metal3 -92400 100800 96600 109200 metal4 -92400 105000 96600 109200 metal4 -92400 105000 100800 109200 metal5 -96600 88200 100800 109200 metal2 +92400 100800 100800 105000 metal3 96600 88200 100800 92400 metal1 +96600 88200 100800 105000 metal2 ) _230_ ( @@ -3638,19 +3613,20 @@ _230_ ) _231_ ( -105000 50400 109200 54600 metal1 -105000 50400 109200 54600 metal2 -105000 50400 109200 54600 metal3 -105000 50400 109200 63000 metal4 +105000 54600 109200 63000 metal4 105000 58800 109200 63000 metal3 105000 58800 109200 63000 metal2 105000 58800 109200 63000 metal1 100800 54600 105000 58800 metal1 100800 54600 105000 58800 metal2 100800 54600 105000 58800 metal3 -100800 50400 105000 58800 metal4 -100800 50400 105000 54600 metal3 -100800 50400 109200 54600 metal3 +100800 54600 105000 58800 metal4 +100800 54600 109200 58800 metal5 +105000 54600 109200 58800 metal4 +105000 50400 109200 54600 metal1 +105000 50400 109200 54600 metal2 +105000 50400 109200 54600 metal3 +105000 50400 109200 58800 metal4 ) _232_ ( @@ -3678,51 +3654,58 @@ _234_ ) _235_ ( -100800 100800 105000 105000 metal5 -100800 100800 105000 109200 metal6 -100800 105000 105000 109200 metal5 -100800 105000 105000 109200 metal4 -100800 105000 105000 109200 metal3 -100800 105000 105000 109200 metal2 100800 105000 105000 109200 metal1 +100800 105000 105000 109200 metal2 +100800 105000 105000 109200 metal3 +100800 105000 105000 109200 metal4 +100800 105000 105000 109200 metal5 +100800 100800 105000 109200 metal6 +100800 100800 105000 105000 metal5 92400 100800 96600 105000 metal1 92400 100800 96600 105000 metal2 92400 100800 96600 105000 metal3 92400 100800 96600 105000 metal4 92400 100800 105000 105000 metal5 -100800 58800 105000 63000 metal1 -100800 58800 105000 67200 metal2 -100800 63000 105000 67200 metal2 +100800 63000 105000 105000 metal6 +100800 63000 105000 67200 metal5 +100800 63000 105000 67200 metal4 100800 63000 105000 67200 metal3 -100800 63000 105000 79800 metal4 -100800 75600 105000 79800 metal4 -100800 75600 105000 79800 metal5 -100800 75600 105000 105000 metal6 +100800 63000 105000 67200 metal2 +100800 58800 105000 67200 metal2 +100800 58800 105000 63000 metal1 ) _236_ ( 100800 105000 105000 109200 metal1 100800 105000 105000 109200 metal2 -100800 105000 109200 109200 metal3 -105000 105000 109200 109200 metal3 -105000 105000 109200 109200 metal4 -105000 105000 121800 109200 metal5 -117600 105000 121800 109200 metal5 -117600 105000 121800 117600 metal6 -117600 113400 121800 117600 metal5 -117600 113400 121800 117600 metal4 -117600 113400 121800 117600 metal3 -117600 113400 126000 117600 metal3 -121800 113400 126000 117600 metal2 -121800 113400 126000 130200 metal2 -121800 126000 126000 130200 metal2 -121800 126000 126000 130200 metal3 -121800 126000 126000 130200 metal4 -121800 126000 134400 130200 metal5 -130200 126000 134400 130200 metal4 -130200 126000 134400 134400 metal4 +100800 105000 105000 109200 metal3 +100800 105000 105000 109200 metal4 +100800 105000 105000 109200 metal5 +100800 105000 105000 113400 metal6 +100800 109200 105000 113400 metal5 +100800 109200 121800 113400 metal5 +117600 109200 121800 113400 metal4 +117600 109200 121800 113400 metal3 +117600 109200 126000 113400 metal3 +121800 109200 126000 113400 metal2 +121800 109200 126000 126000 metal2 +121800 121800 126000 126000 metal2 +121800 121800 126000 126000 metal3 +121800 121800 126000 126000 metal4 +121800 121800 130200 126000 metal5 +126000 121800 130200 126000 metal4 +126000 121800 130200 134400 metal4 +126000 130200 130200 134400 metal3 +126000 130200 134400 134400 metal3 +130200 130200 134400 134400 metal3 130200 130200 134400 134400 metal4 -130200 130200 147000 134400 metal5 +130200 130200 138600 134400 metal5 +134400 130200 138600 134400 metal4 +134400 130200 138600 134400 metal3 +134400 130200 142800 134400 metal3 +138600 130200 142800 134400 metal3 +138600 130200 142800 134400 metal4 +138600 130200 147000 134400 metal5 142800 130200 147000 134400 metal5 142800 126000 147000 134400 metal6 142800 126000 147000 130200 metal5 @@ -3761,14 +3744,14 @@ _239_ 96600 117600 100800 126000 metal2 96600 121800 100800 126000 metal2 96600 121800 105000 126000 metal3 -100800 117600 105000 121800 metal1 -100800 117600 105000 121800 metal2 -100800 117600 105000 121800 metal3 -100800 109200 105000 121800 metal4 -100800 109200 105000 113400 metal3 -100800 109200 105000 113400 metal2 100800 109200 105000 113400 metal1 -100800 121800 105000 126000 metal1 +100800 109200 105000 113400 metal2 +100800 109200 105000 113400 metal3 +100800 109200 105000 121800 metal4 +100800 117600 105000 121800 metal3 +100800 117600 105000 121800 metal2 +100800 117600 105000 121800 metal1 +100800 121800 105000 126000 metal1 100800 121800 105000 126000 metal2 100800 121800 105000 126000 metal3 100800 117600 105000 126000 metal4 @@ -3811,11 +3794,9 @@ _243_ ) _244_ ( -88200 100800 92400 105000 metal4 -88200 100800 96600 105000 metal5 -92400 100800 96600 105000 metal5 -92400 96600 96600 105000 metal6 -92400 96600 96600 100800 metal5 +88200 96600 96600 100800 metal3 +92400 96600 96600 100800 metal3 +92400 96600 96600 100800 metal4 92400 96600 105000 100800 metal5 100800 96600 105000 100800 metal4 100800 96600 105000 100800 metal3 @@ -3825,14 +3806,14 @@ _244_ 71400 96600 75600 100800 metal2 71400 96600 75600 100800 metal3 71400 96600 75600 100800 metal4 -71400 96600 75600 100800 metal5 -71400 96600 75600 109200 metal6 -71400 105000 75600 109200 metal5 -71400 105000 88200 109200 metal5 -84000 105000 88200 109200 metal5 -84000 100800 88200 109200 metal6 -84000 100800 88200 105000 metal5 -84000 100800 92400 105000 metal5 +71400 96600 92400 100800 metal5 +88200 96600 92400 100800 metal4 +88200 96600 92400 100800 metal3 +88200 96600 92400 100800 metal2 +88200 96600 92400 100800 metal1 +63000 84000 71400 88200 metal3 +67200 84000 71400 88200 metal3 +67200 84000 71400 88200 metal4 67200 84000 71400 88200 metal5 67200 84000 71400 96600 metal6 67200 92400 71400 96600 metal5 @@ -3841,177 +3822,167 @@ _244_ 71400 92400 75600 96600 metal3 71400 92400 75600 96600 metal2 71400 92400 75600 100800 metal2 -67200 75600 71400 88200 metal6 -67200 75600 71400 79800 metal5 -67200 75600 71400 79800 metal4 -67200 71400 71400 79800 metal4 -67200 71400 71400 75600 metal3 -63000 71400 71400 75600 metal3 -63000 71400 67200 75600 metal2 -63000 67200 67200 75600 metal2 -63000 67200 67200 71400 metal2 -63000 67200 67200 71400 metal3 -63000 58800 67200 71400 metal4 -92400 25200 105000 29400 metal5 -100800 25200 105000 29400 metal5 -100800 25200 105000 42000 metal6 -100800 37800 105000 42000 metal5 +63000 84000 67200 88200 metal1 +63000 84000 67200 88200 metal2 +63000 84000 67200 88200 metal3 +63000 84000 67200 88200 metal4 +63000 84000 67200 88200 metal5 +63000 58800 67200 88200 metal6 +63000 58800 67200 63000 metal5 +63000 58800 67200 63000 metal4 +63000 58800 67200 63000 metal3 +63000 58800 67200 63000 metal2 +63000 58800 67200 63000 metal1 +88200 25200 100800 29400 metal5 +96600 25200 100800 29400 metal5 +96600 25200 100800 37800 metal6 +96600 33600 100800 37800 metal5 +96600 33600 100800 37800 metal4 +96600 33600 100800 37800 metal3 +96600 33600 105000 37800 metal3 +100800 33600 105000 37800 metal3 +100800 33600 105000 42000 metal4 +100800 37800 105000 42000 metal4 100800 37800 109200 42000 metal5 105000 37800 109200 42000 metal4 105000 37800 109200 42000 metal3 105000 37800 109200 42000 metal2 105000 37800 109200 46200 metal2 105000 42000 109200 46200 metal1 -88200 37800 92400 42000 metal1 -88200 37800 92400 42000 metal2 -88200 37800 92400 42000 metal3 -88200 37800 92400 42000 metal4 +88200 25200 92400 29400 metal3 +88200 25200 92400 29400 metal4 +88200 25200 92400 29400 metal5 +88200 25200 92400 42000 metal6 88200 37800 92400 42000 metal5 -88200 33600 92400 42000 metal6 -88200 33600 92400 37800 metal5 -88200 33600 96600 37800 metal5 -92400 33600 96600 37800 metal5 -92400 25200 96600 37800 metal6 -92400 25200 96600 29400 metal5 -63000 58800 67200 63000 metal1 -63000 58800 67200 63000 metal2 -63000 58800 67200 63000 metal3 -63000 58800 67200 63000 metal4 +88200 37800 92400 42000 metal4 +88200 37800 92400 42000 metal3 +88200 37800 92400 42000 metal2 +88200 37800 92400 42000 metal1 +54600 58800 67200 63000 metal5 +54600 58800 58800 63000 metal4 +54600 0 58800 63000 metal4 +54600 0 58800 4200 metal3 +54600 0 84000 4200 metal3 +79800 0 84000 4200 metal3 +79800 0 84000 29400 metal4 +79800 25200 84000 29400 metal3 +79800 25200 92400 29400 metal3 63000 58800 71400 63000 metal5 67200 58800 71400 63000 metal5 -67200 46200 71400 63000 metal6 -67200 46200 71400 50400 metal5 -67200 46200 71400 50400 metal4 +67200 50400 71400 63000 metal6 +67200 50400 71400 54600 metal5 +67200 50400 71400 54600 metal4 +67200 46200 71400 54600 metal4 67200 46200 71400 50400 metal3 67200 46200 71400 50400 metal2 67200 46200 71400 50400 metal1 -67200 42000 71400 50400 metal6 -67200 42000 71400 46200 metal5 -63000 42000 71400 46200 metal5 -63000 42000 67200 46200 metal5 -63000 8400 67200 46200 metal6 -63000 8400 67200 12600 metal5 -63000 8400 96600 12600 metal5 -92400 8400 96600 12600 metal5 -92400 8400 96600 29400 metal6 -63000 84000 67200 88200 metal1 -63000 84000 67200 88200 metal2 -63000 84000 67200 88200 metal3 -63000 84000 67200 88200 metal4 -63000 84000 71400 88200 metal5 -88200 96600 92400 100800 metal1 -88200 96600 92400 100800 metal2 -88200 96600 92400 100800 metal3 -88200 96600 92400 105000 metal4 ) _245_ ( -134400 126000 142800 130200 metal3 -138600 126000 142800 130200 metal2 -138600 126000 142800 130200 metal1 -130200 134400 134400 138600 metal1 -130200 134400 134400 138600 metal2 -130200 134400 134400 138600 metal3 -130200 134400 134400 138600 metal4 -109200 134400 134400 138600 metal5 -109200 134400 113400 138600 metal5 -109200 130200 113400 138600 metal6 -109200 130200 113400 134400 metal5 -100800 130200 113400 134400 metal5 -130200 134400 138600 138600 metal3 -134400 134400 138600 138600 metal3 -134400 126000 138600 138600 metal4 -134400 126000 138600 130200 metal3 -142800 113400 147000 117600 metal2 -142800 113400 147000 117600 metal3 -142800 113400 147000 117600 metal4 -134400 113400 147000 117600 metal5 -134400 113400 138600 117600 metal4 -126000 113400 138600 117600 metal5 -126000 113400 130200 117600 metal4 -126000 113400 130200 117600 metal3 -126000 113400 130200 117600 metal2 -126000 113400 130200 117600 metal1 -100800 134400 105000 138600 metal1 -100800 134400 105000 138600 metal2 -100800 134400 105000 138600 metal3 -100800 130200 105000 138600 metal4 -113400 79800 117600 84000 metal1 -113400 79800 117600 84000 metal2 +109200 84000 113400 88200 metal1 +109200 84000 113400 88200 metal2 +109200 84000 113400 88200 metal3 +109200 84000 113400 88200 metal4 +109200 84000 117600 88200 metal5 +113400 84000 117600 88200 metal4 +113400 79800 117600 88200 metal4 113400 79800 117600 84000 metal3 -113400 79800 117600 84000 metal4 -113400 79800 130200 84000 metal5 -126000 79800 130200 84000 metal4 -126000 75600 130200 84000 metal4 -126000 75600 130200 79800 metal4 -126000 75600 134400 79800 metal5 -130200 75600 134400 79800 metal5 -130200 75600 134400 84000 metal6 +113400 79800 117600 84000 metal2 +113400 79800 117600 84000 metal1 +142800 84000 147000 88200 metal2 +142800 84000 147000 88200 metal3 +142800 84000 147000 88200 metal4 +130200 84000 147000 88200 metal5 +130200 84000 134400 88200 metal5 +130200 79800 134400 88200 metal6 130200 79800 134400 84000 metal5 130200 79800 134400 84000 metal4 130200 79800 134400 84000 metal3 130200 79800 134400 84000 metal2 130200 79800 134400 84000 metal1 -130200 79800 134400 88200 metal6 -130200 84000 134400 88200 metal5 -130200 84000 134400 88200 metal4 -130200 84000 134400 88200 metal3 -130200 84000 147000 88200 metal3 -134400 113400 138600 130200 metal4 -147000 113400 151200 117600 metal1 -147000 113400 151200 117600 metal2 -142800 113400 151200 117600 metal3 -109200 84000 113400 88200 metal1 -109200 84000 113400 88200 metal2 -109200 84000 113400 88200 metal3 -109200 84000 113400 88200 metal4 -105000 84000 113400 88200 metal5 -105000 84000 109200 88200 metal4 -105000 84000 109200 100800 metal4 -105000 96600 109200 100800 metal3 -100800 96600 109200 100800 metal3 -100800 96600 105000 100800 metal2 +121800 134400 134400 138600 metal5 +130200 134400 134400 138600 metal4 +130200 134400 134400 138600 metal3 +130200 134400 134400 138600 metal2 +130200 134400 134400 138600 metal1 +109200 92400 113400 96600 metal4 +109200 92400 121800 96600 metal5 +117600 92400 121800 96600 metal5 +117600 92400 121800 113400 metal6 +117600 109200 121800 113400 metal5 +117600 109200 126000 113400 metal5 +121800 109200 126000 113400 metal4 +121800 109200 126000 117600 metal4 +100800 126000 105000 130200 metal1 +100800 126000 105000 130200 metal2 +100800 126000 105000 130200 metal3 +100800 126000 105000 130200 metal4 +100800 126000 105000 130200 metal5 +100800 126000 105000 134400 metal6 +100800 130200 105000 134400 metal5 +100800 130200 105000 134400 metal4 +142800 84000 147000 96600 metal2 +142800 92400 147000 96600 metal2 +142800 92400 147000 96600 metal3 +142800 92400 147000 96600 metal4 +142800 92400 147000 96600 metal5 +142800 92400 147000 117600 metal6 +142800 113400 147000 117600 metal5 +138600 113400 147000 117600 metal5 +138600 113400 142800 117600 metal5 +138600 109200 142800 117600 metal6 +138600 109200 142800 113400 metal5 +134400 109200 142800 113400 metal5 +134400 109200 138600 113400 metal4 +134400 109200 138600 117600 metal4 +134400 113400 138600 117600 metal4 +134400 113400 138600 117600 metal5 +134400 113400 138600 130200 metal6 +134400 126000 138600 130200 metal5 +134400 126000 138600 130200 metal4 +134400 126000 138600 130200 metal3 +109200 84000 113400 96600 metal4 +100800 130200 117600 134400 metal5 +113400 130200 117600 134400 metal5 +113400 130200 117600 138600 metal6 +113400 134400 117600 138600 metal5 +113400 134400 126000 138600 metal5 +100800 134400 105000 138600 metal1 +100800 134400 105000 138600 metal2 +100800 134400 105000 138600 metal3 +100800 130200 105000 138600 metal4 +134400 126000 142800 130200 metal3 +138600 126000 142800 130200 metal2 +138600 126000 142800 130200 metal1 100800 96600 105000 100800 metal1 -142800 109200 147000 117600 metal2 -142800 109200 147000 113400 metal2 -142800 109200 151200 113400 metal3 -147000 109200 151200 113400 metal3 -147000 105000 151200 113400 metal4 -147000 105000 151200 109200 metal3 -147000 105000 155400 109200 metal3 -151200 105000 155400 109200 metal3 -151200 100800 155400 109200 metal4 -151200 100800 155400 105000 metal4 -151200 100800 168000 105000 metal5 -163800 100800 168000 105000 metal4 -163800 96600 168000 105000 metal4 -163800 96600 168000 100800 metal3 -163800 96600 176400 100800 metal3 -172200 96600 176400 100800 metal3 -172200 92400 176400 100800 metal4 -172200 92400 176400 96600 metal3 -168000 92400 176400 96600 metal3 -168000 92400 172200 96600 metal3 -168000 84000 172200 96600 metal4 -168000 84000 172200 88200 metal4 -142800 84000 172200 88200 metal5 -142800 84000 147000 88200 metal4 -142800 84000 147000 88200 metal3 +100800 96600 105000 100800 metal2 +100800 96600 105000 100800 metal3 +100800 96600 105000 100800 metal4 +100800 96600 109200 100800 metal5 +105000 96600 109200 100800 metal5 +105000 92400 109200 100800 metal6 +105000 92400 109200 96600 metal5 +105000 92400 113400 96600 metal5 142800 79800 147000 88200 metal4 142800 79800 147000 84000 metal3 142800 79800 147000 84000 metal2 142800 79800 147000 84000 metal1 -109200 79800 113400 88200 metal4 -109200 79800 113400 84000 metal4 -109200 79800 117600 84000 metal5 -100800 130200 105000 134400 metal4 -100800 130200 105000 134400 metal5 -100800 126000 105000 134400 metal6 -100800 126000 105000 130200 metal5 -100800 126000 105000 130200 metal4 -100800 126000 105000 130200 metal3 -100800 126000 105000 130200 metal2 -100800 126000 105000 130200 metal1 +130200 134400 138600 138600 metal3 +134400 134400 138600 138600 metal3 +134400 126000 138600 138600 metal4 +142800 113400 151200 117600 metal5 +147000 113400 151200 117600 metal4 +147000 113400 151200 117600 metal3 +147000 113400 151200 117600 metal2 +147000 113400 151200 117600 metal1 +121800 134400 126000 138600 metal5 +121800 113400 126000 138600 metal6 +121800 113400 126000 117600 metal5 +121800 113400 126000 117600 metal4 +121800 113400 126000 117600 metal3 +121800 113400 130200 117600 metal3 +126000 113400 130200 117600 metal2 +126000 113400 130200 117600 metal1 ) _246_ ( @@ -4038,80 +4009,45 @@ _248_ 113400 37800 117600 42000 metal2 113400 37800 117600 46200 metal2 113400 42000 117600 46200 metal2 -113400 42000 134400 46200 metal3 -130200 42000 134400 46200 metal3 -130200 42000 134400 58800 metal4 -130200 54600 134400 58800 metal3 -130200 54600 180600 58800 metal3 -176400 54600 180600 58800 metal2 -176400 54600 180600 63000 metal2 -176400 58800 180600 63000 metal2 -176400 58800 184800 63000 metal3 -180600 58800 184800 63000 metal2 -180600 58800 184800 75600 metal2 -180600 71400 184800 75600 metal2 -180600 71400 189000 75600 metal3 -184800 71400 189000 75600 metal2 -184800 71400 189000 180600 metal2 -184800 176400 189000 180600 metal2 -172200 176400 189000 180600 metal3 -172200 176400 176400 180600 metal3 -172200 176400 176400 197400 metal4 -172200 193200 176400 197400 metal4 -117600 193200 176400 197400 metal5 -117600 193200 121800 197400 metal5 -117600 130200 121800 197400 metal6 -117600 130200 121800 134400 metal5 -117600 130200 130200 134400 metal5 -126000 130200 130200 134400 metal5 -126000 117600 130200 134400 metal6 +113400 42000 121800 46200 metal3 +117600 42000 121800 46200 metal2 +117600 42000 121800 50400 metal2 +117600 46200 121800 50400 metal2 +117600 46200 134400 50400 metal3 +130200 46200 134400 50400 metal3 +130200 37800 134400 50400 metal4 +130200 37800 134400 42000 metal3 +130200 37800 189000 42000 metal3 +184800 37800 189000 42000 metal2 +184800 37800 189000 168000 metal2 +184800 163800 189000 168000 metal2 +163800 163800 189000 168000 metal3 +163800 163800 168000 168000 metal3 +163800 163800 168000 184800 metal4 +163800 180600 168000 184800 metal4 +126000 180600 168000 184800 metal5 +126000 180600 130200 184800 metal5 +126000 117600 130200 184800 metal6 126000 117600 130200 121800 metal5 126000 117600 130200 121800 metal4 126000 117600 130200 121800 metal3 126000 117600 130200 121800 metal2 126000 117600 130200 121800 metal1 -130200 67200 134400 75600 metal4 -130200 71400 134400 75600 metal3 -130200 71400 134400 75600 metal2 -130200 71400 134400 75600 metal1 88200 33600 92400 37800 metal1 88200 33600 92400 37800 metal2 88200 33600 92400 37800 metal3 -88200 33600 92400 37800 metal4 -88200 33600 92400 37800 metal5 -88200 21000 92400 37800 metal6 -88200 21000 92400 25200 metal5 -88200 21000 100800 25200 metal5 -96600 21000 100800 25200 metal5 -96600 8400 100800 25200 metal6 -96600 8400 100800 12600 metal5 -96600 8400 109200 12600 metal5 -105000 8400 109200 12600 metal4 -105000 8400 109200 16800 metal4 -105000 12600 109200 16800 metal4 -105000 12600 113400 16800 metal5 -109200 12600 113400 16800 metal5 -109200 12600 113400 42000 metal6 -109200 37800 113400 42000 metal5 -109200 37800 113400 42000 metal4 +88200 25200 92400 37800 metal4 +88200 25200 92400 29400 metal3 +88200 25200 100800 29400 metal3 +96600 25200 100800 29400 metal3 +96600 25200 100800 29400 metal4 +96600 25200 113400 29400 metal5 +109200 25200 113400 29400 metal5 +109200 25200 113400 37800 metal6 +109200 33600 113400 37800 metal5 +109200 33600 113400 37800 metal4 +109200 33600 113400 42000 metal4 109200 37800 113400 42000 metal3 -58800 92400 63000 96600 metal1 -58800 92400 63000 96600 metal2 -58800 92400 63000 96600 metal3 -58800 84000 63000 96600 metal4 -58800 84000 63000 88200 metal3 -58800 84000 63000 88200 metal2 -58800 79800 63000 88200 metal2 -58800 79800 63000 84000 metal2 -58800 79800 63000 84000 metal3 -58800 75600 63000 84000 metal4 -58800 75600 63000 79800 metal3 -58800 75600 63000 79800 metal2 -58800 75600 63000 79800 metal1 -58800 63000 63000 79800 metal2 -58800 92400 63000 100800 metal2 -58800 96600 63000 100800 metal2 -58800 96600 67200 100800 metal3 63000 96600 67200 100800 metal3 63000 96600 67200 100800 metal4 63000 96600 67200 100800 metal5 @@ -4119,38 +4055,53 @@ _248_ 63000 100800 67200 105000 metal5 63000 100800 67200 105000 metal4 63000 100800 67200 105000 metal3 -63000 100800 71400 105000 metal3 -67200 100800 71400 105000 metal2 -67200 100800 71400 109200 metal2 -67200 105000 71400 109200 metal2 -67200 105000 71400 109200 metal3 -67200 105000 71400 109200 metal4 -67200 105000 75600 109200 metal5 -71400 105000 75600 109200 metal4 -71400 105000 75600 109200 metal3 -71400 105000 79800 109200 metal3 -75600 105000 79800 109200 metal2 -75600 100800 79800 109200 metal2 -75600 100800 79800 105000 metal1 +54600 100800 67200 105000 metal3 +54600 100800 58800 105000 metal3 +54600 100800 58800 105000 metal4 +54600 100800 58800 105000 metal5 +54600 100800 58800 109200 metal6 +54600 105000 58800 109200 metal5 +50400 105000 58800 109200 metal5 +50400 105000 54600 109200 metal5 +50400 96600 54600 109200 metal6 +50400 96600 54600 100800 metal5 +37800 96600 54600 100800 metal5 +37800 96600 42000 100800 metal4 +37800 88200 42000 100800 metal4 +37800 88200 42000 92400 metal3 +33600 88200 42000 92400 metal3 +33600 88200 37800 92400 metal2 +33600 58800 37800 92400 metal2 +33600 58800 37800 63000 metal2 +33600 58800 63000 63000 metal3 58800 63000 63000 67200 metal2 58800 63000 63000 67200 metal3 -58800 63000 63000 67200 metal4 -58800 63000 63000 67200 metal5 -58800 46200 63000 67200 metal6 -58800 46200 63000 50400 metal5 -58800 46200 63000 50400 metal4 -58800 46200 63000 50400 metal3 -58800 46200 71400 50400 metal3 -67200 46200 71400 50400 metal2 -67200 42000 71400 50400 metal2 -130200 67200 134400 71400 metal4 -126000 67200 134400 71400 metal5 -126000 67200 130200 71400 metal4 -126000 67200 130200 75600 metal4 +58800 58800 63000 67200 metal4 +58800 58800 63000 63000 metal3 +63000 96600 71400 100800 metal3 +67200 96600 71400 100800 metal3 +67200 96600 71400 100800 metal4 +67200 96600 75600 100800 metal5 +71400 96600 75600 100800 metal4 +71400 96600 75600 105000 metal4 +71400 100800 75600 105000 metal3 +71400 100800 79800 105000 metal3 +75600 100800 79800 105000 metal2 +75600 100800 79800 105000 metal1 +58800 63000 63000 79800 metal2 +58800 75600 63000 79800 metal1 +130200 71400 134400 75600 metal1 +130200 71400 134400 75600 metal2 +130200 71400 134400 75600 metal3 +130200 71400 134400 75600 metal4 +126000 71400 134400 75600 metal5 +126000 71400 130200 75600 metal4 126000 71400 130200 75600 metal3 -121800 71400 130200 75600 metal3 -121800 71400 126000 75600 metal2 -121800 71400 126000 79800 metal2 +126000 71400 130200 75600 metal2 +126000 71400 130200 79800 metal2 +126000 75600 130200 79800 metal2 +121800 75600 130200 79800 metal3 +121800 75600 126000 79800 metal2 121800 75600 126000 79800 metal1 67200 42000 71400 46200 metal1 67200 42000 71400 46200 metal2 @@ -4162,127 +4113,114 @@ _248_ 67200 29400 75600 33600 metal5 71400 29400 75600 33600 metal4 71400 29400 75600 33600 metal3 -71400 29400 84000 33600 metal3 -79800 29400 84000 33600 metal2 -79800 29400 84000 37800 metal2 -79800 33600 84000 37800 metal2 -79800 33600 92400 37800 metal3 +71400 29400 79800 33600 metal3 +75600 29400 79800 33600 metal2 +75600 29400 79800 37800 metal2 +75600 33600 79800 37800 metal2 +75600 33600 92400 37800 metal3 109200 37800 113400 50400 metal4 109200 46200 113400 50400 metal3 109200 46200 113400 50400 metal2 109200 46200 113400 50400 metal1 +58800 92400 63000 96600 metal1 +58800 92400 63000 100800 metal2 +58800 96600 63000 100800 metal2 +58800 96600 67200 100800 metal3 58800 63000 67200 67200 metal3 63000 63000 67200 67200 metal2 63000 63000 67200 67200 metal1 -130200 54600 134400 71400 metal4 +130200 46200 134400 75600 metal4 +58800 46200 63000 63000 metal4 +58800 46200 63000 50400 metal3 +58800 46200 71400 50400 metal3 +67200 46200 71400 50400 metal2 +67200 42000 71400 50400 metal2 ) _249_ ( -142800 75600 147000 79800 metal1 -142800 75600 147000 79800 metal2 -142800 75600 147000 79800 metal3 -142800 75600 147000 79800 metal4 -142800 75600 172200 79800 metal5 -168000 75600 172200 79800 metal5 -168000 75600 172200 130200 metal6 -168000 126000 172200 130200 metal5 -168000 126000 172200 130200 metal4 -168000 126000 172200 130200 metal3 +142800 113400 147000 117600 metal3 +142800 113400 147000 134400 metal4 +142800 130200 147000 134400 metal3 +142800 130200 147000 134400 metal2 +142800 130200 147000 134400 metal1 92400 130200 96600 134400 metal1 -92400 130200 96600 134400 metal2 -92400 130200 96600 134400 metal3 -92400 130200 96600 142800 metal4 -92400 138600 96600 142800 metal4 -92400 138600 100800 142800 metal5 -96600 138600 100800 142800 metal5 -96600 138600 100800 147000 metal6 -96600 142800 100800 147000 metal5 -96600 142800 100800 147000 metal4 -96600 142800 100800 147000 metal3 -96600 142800 105000 147000 metal3 -100800 142800 105000 147000 metal3 -100800 142800 105000 147000 metal4 -100800 142800 105000 147000 metal5 -100800 142800 105000 151200 metal6 -100800 147000 105000 151200 metal5 -100800 147000 105000 151200 metal4 -100800 147000 105000 159600 metal4 -100800 155400 105000 159600 metal3 -100800 155400 130200 159600 metal3 -126000 155400 130200 159600 metal2 -126000 155400 130200 159600 metal3 -126000 155400 130200 193200 metal4 -126000 189000 130200 193200 metal3 -126000 189000 134400 193200 metal3 -130200 189000 134400 193200 metal2 -130200 184800 134400 193200 metal2 -130200 184800 134400 189000 metal2 -130200 184800 163800 189000 metal3 -159600 184800 163800 189000 metal3 -159600 142800 163800 189000 metal4 -159600 142800 163800 147000 metal4 -159600 142800 172200 147000 metal5 -168000 142800 172200 147000 metal5 -168000 126000 172200 147000 metal6 +92400 130200 96600 138600 metal2 +92400 134400 96600 138600 metal2 +92400 134400 105000 138600 metal3 +100800 134400 105000 138600 metal3 +100800 134400 105000 142800 metal4 +100800 138600 105000 142800 metal1 +100800 138600 105000 142800 metal2 +100800 138600 105000 142800 metal3 +100800 138600 105000 142800 metal4 +100800 138600 105000 142800 metal5 +100800 138600 105000 155400 metal6 +100800 151200 105000 155400 metal5 +100800 151200 126000 155400 metal5 +121800 151200 126000 155400 metal4 +121800 142800 126000 155400 metal4 +121800 142800 126000 147000 metal3 +121800 142800 130200 147000 metal3 +126000 142800 130200 147000 metal3 +126000 142800 130200 147000 metal4 +126000 142800 147000 147000 metal5 +142800 142800 147000 147000 metal4 +142800 130200 147000 147000 metal4 121800 75600 126000 79800 metal1 121800 75600 126000 79800 metal2 121800 75600 126000 79800 metal3 121800 75600 126000 79800 metal4 -121800 75600 130200 79800 metal5 -126000 75600 130200 79800 metal4 -126000 75600 130200 79800 metal3 -126000 75600 134400 79800 metal3 -130200 75600 134400 79800 metal3 -130200 75600 134400 79800 metal4 -130200 75600 147000 79800 metal5 -142800 121800 147000 130200 metal2 -142800 121800 147000 126000 metal2 -142800 121800 147000 126000 metal3 -142800 113400 147000 126000 metal4 -142800 113400 147000 117600 metal4 -142800 113400 151200 117600 metal5 -147000 113400 151200 117600 metal4 -147000 113400 151200 117600 metal3 +121800 75600 147000 79800 metal5 +142800 75600 147000 79800 metal4 +142800 75600 147000 79800 metal3 +142800 75600 147000 79800 metal2 +142800 75600 147000 79800 metal1 +142800 113400 151200 117600 metal3 147000 113400 151200 117600 metal2 147000 113400 151200 117600 metal1 -105000 79800 109200 84000 metal1 -105000 79800 109200 84000 metal2 +117600 75600 126000 79800 metal3 +117600 71400 121800 79800 metal4 +117600 71400 121800 75600 metal3 +117600 71400 121800 75600 metal2 +117600 71400 121800 75600 metal1 105000 79800 113400 84000 metal3 109200 79800 113400 84000 metal3 109200 75600 113400 84000 metal4 -109200 75600 113400 79800 metal3 -109200 75600 117600 79800 metal3 -113400 75600 117600 79800 metal3 -113400 71400 117600 79800 metal4 -113400 71400 117600 75600 metal3 -113400 71400 121800 75600 metal3 -117600 71400 121800 75600 metal2 -117600 71400 121800 75600 metal1 -117600 75600 126000 79800 metal3 +109200 75600 113400 79800 metal4 +109200 75600 121800 79800 metal5 +117600 75600 121800 79800 metal4 +117600 75600 121800 79800 metal3 117600 75600 121800 79800 metal2 117600 75600 121800 79800 metal1 100800 84000 105000 88200 metal1 100800 84000 105000 88200 metal2 100800 84000 105000 88200 metal3 -100800 79800 105000 88200 metal4 -100800 79800 105000 84000 metal3 -100800 79800 109200 84000 metal3 -142800 126000 147000 130200 metal2 -142800 126000 147000 130200 metal3 -142800 126000 147000 134400 metal4 -142800 130200 147000 134400 metal3 -142800 130200 147000 134400 metal2 -142800 130200 147000 134400 metal1 -100800 138600 105000 147000 metal6 -100800 138600 105000 142800 metal5 -100800 138600 105000 142800 metal4 -100800 138600 105000 142800 metal3 -100800 138600 105000 142800 metal2 -100800 138600 105000 142800 metal1 -113400 75600 121800 79800 metal3 -126000 138600 130200 159600 metal2 +100800 84000 105000 88200 metal4 +100800 84000 109200 88200 metal5 +105000 84000 109200 88200 metal5 +105000 79800 109200 88200 metal6 +105000 79800 109200 84000 metal5 +105000 79800 109200 84000 metal4 +105000 79800 109200 84000 metal3 +105000 79800 109200 84000 metal2 +105000 79800 109200 84000 metal1 +142800 75600 151200 79800 metal5 +147000 75600 151200 79800 metal5 +147000 75600 151200 105000 metal6 +147000 100800 151200 105000 metal5 +147000 100800 151200 105000 metal4 +147000 100800 151200 109200 metal4 +147000 105000 151200 109200 metal3 +142800 105000 151200 109200 metal3 +142800 105000 147000 109200 metal3 +142800 105000 147000 117600 metal4 +121800 138600 126000 147000 metal4 +121800 138600 126000 142800 metal4 +121800 138600 130200 142800 metal5 +126000 138600 130200 142800 metal4 +126000 138600 130200 142800 metal3 +126000 138600 130200 142800 metal2 126000 138600 130200 142800 metal1 -142800 126000 172200 130200 metal3 ) _250_ ( @@ -4291,11 +4229,13 @@ _250_ 100800 126000 105000 130200 metal3 100800 121800 105000 130200 metal4 100800 121800 105000 126000 metal4 -100800 121800 109200 126000 metal5 -105000 121800 109200 126000 metal5 -105000 100800 109200 126000 metal6 -105000 100800 109200 105000 metal5 -105000 100800 113400 105000 metal5 +100800 121800 113400 126000 metal5 +109200 121800 113400 126000 metal4 +109200 113400 113400 126000 metal4 +109200 113400 113400 117600 metal4 +109200 113400 113400 117600 metal5 +109200 100800 113400 117600 metal6 +109200 100800 113400 105000 metal5 109200 100800 113400 105000 metal4 109200 100800 113400 105000 metal3 109200 100800 113400 105000 metal2 @@ -4309,213 +4249,174 @@ _251_ ) _252_ ( -79800 84000 88200 88200 metal3 -84000 84000 88200 88200 metal3 -84000 84000 88200 96600 metal4 -84000 92400 88200 96600 metal4 -84000 92400 88200 96600 metal5 -84000 92400 88200 100800 metal6 -84000 96600 88200 100800 metal5 +84000 92400 88200 96600 metal3 +84000 92400 88200 100800 metal4 +84000 96600 88200 100800 metal4 84000 96600 96600 100800 metal5 92400 96600 96600 100800 metal4 92400 96600 96600 100800 metal3 92400 96600 96600 100800 metal2 92400 96600 96600 100800 metal1 -75600 79800 79800 84000 metal1 -75600 79800 79800 84000 metal2 -75600 79800 79800 84000 metal3 -75600 79800 79800 84000 metal4 75600 79800 84000 84000 metal5 -79800 79800 84000 84000 metal4 -79800 79800 84000 88200 metal4 +79800 79800 84000 84000 metal5 +79800 79800 84000 88200 metal6 +79800 84000 84000 88200 metal5 +79800 84000 84000 88200 metal4 79800 84000 84000 88200 metal3 +79800 84000 88200 88200 metal3 +84000 84000 88200 88200 metal3 +84000 84000 88200 96600 metal4 +67200 67200 71400 71400 metal1 +67200 67200 71400 71400 metal2 +67200 67200 75600 71400 metal3 +92400 29400 96600 37800 metal4 +92400 29400 96600 33600 metal4 +92400 29400 105000 33600 metal5 +100800 29400 105000 33600 metal5 +100800 29400 105000 50400 metal6 +100800 46200 105000 50400 metal5 +100800 46200 105000 50400 metal4 +100800 46200 105000 50400 metal3 +100800 46200 105000 50400 metal2 +100800 46200 105000 50400 metal1 71400 67200 75600 71400 metal3 71400 67200 75600 71400 metal4 71400 67200 75600 71400 metal5 71400 58800 75600 71400 metal6 71400 58800 75600 63000 metal5 -92400 33600 96600 37800 metal1 -92400 33600 96600 37800 metal2 -92400 33600 96600 37800 metal3 -92400 33600 96600 37800 metal4 -92400 33600 96600 37800 metal5 -92400 33600 96600 42000 metal6 -92400 37800 96600 42000 metal5 -92400 37800 96600 42000 metal4 -92400 37800 96600 42000 metal3 -92400 37800 100800 42000 metal3 -96600 37800 100800 42000 metal3 -96600 37800 100800 42000 metal4 -96600 37800 100800 42000 metal5 -96600 37800 100800 46200 metal6 -96600 42000 100800 46200 metal5 -96600 42000 100800 46200 metal4 -96600 42000 100800 46200 metal3 -96600 42000 105000 46200 metal3 -100800 42000 105000 46200 metal2 -100800 42000 105000 50400 metal2 -100800 46200 105000 50400 metal1 71400 58800 79800 63000 metal5 75600 58800 79800 63000 metal5 -75600 50400 79800 63000 metal6 -75600 50400 79800 54600 metal5 -71400 50400 79800 54600 metal5 -71400 50400 75600 54600 metal5 -71400 46200 75600 54600 metal6 -71400 46200 75600 50400 metal5 -71400 46200 79800 50400 metal5 -75600 46200 79800 50400 metal4 -75600 42000 79800 50400 metal4 +75600 46200 79800 63000 metal6 +75600 46200 79800 50400 metal5 +71400 67200 79800 71400 metal5 +75600 67200 79800 71400 metal5 +75600 67200 79800 84000 metal6 +75600 79800 79800 84000 metal5 +75600 79800 79800 84000 metal4 +75600 79800 79800 84000 metal3 +75600 79800 79800 84000 metal2 +75600 79800 79800 84000 metal1 +75600 46200 84000 50400 metal5 +79800 46200 84000 50400 metal5 +79800 33600 84000 50400 metal6 +79800 33600 84000 37800 metal5 +79800 33600 96600 37800 metal5 +92400 33600 96600 37800 metal4 +92400 33600 96600 37800 metal3 +92400 33600 96600 37800 metal2 +92400 33600 96600 37800 metal1 +75600 42000 79800 50400 metal6 +75600 42000 79800 46200 metal5 +75600 42000 79800 46200 metal4 75600 42000 79800 46200 metal3 75600 42000 79800 46200 metal2 75600 42000 79800 46200 metal1 -71400 67200 79800 71400 metal5 -75600 67200 79800 71400 metal4 -75600 67200 79800 84000 metal4 -67200 58800 75600 63000 metal5 -67200 58800 71400 63000 metal4 -67200 50400 71400 63000 metal4 -67200 50400 71400 54600 metal3 -63000 50400 71400 54600 metal3 -63000 50400 67200 54600 metal2 -63000 50400 67200 58800 metal2 -63000 54600 67200 58800 metal2 -58800 54600 67200 58800 metal3 -58800 54600 63000 58800 metal3 -58800 8400 63000 58800 metal4 -58800 8400 63000 12600 metal3 -58800 8400 71400 12600 metal3 -67200 8400 71400 12600 metal2 -67200 8400 71400 16800 metal2 -67200 12600 71400 16800 metal2 -67200 12600 92400 16800 metal3 -88200 12600 92400 16800 metal3 -88200 12600 92400 29400 metal4 -88200 25200 92400 29400 metal3 -88200 25200 96600 29400 metal3 -92400 25200 96600 29400 metal3 -92400 25200 96600 37800 metal4 -67200 67200 71400 71400 metal1 -67200 67200 71400 71400 metal2 -67200 67200 75600 71400 metal3 -79800 84000 84000 96600 metal4 -79800 92400 84000 96600 metal3 -79800 92400 84000 96600 metal2 79800 92400 84000 96600 metal1 +79800 92400 84000 96600 metal2 +79800 92400 88200 96600 metal3 ) _253_ ( -96600 109200 100800 113400 metal5 -96600 79800 100800 113400 metal6 -96600 79800 100800 84000 metal5 -96600 79800 100800 84000 metal4 -96600 79800 100800 84000 metal3 -96600 79800 100800 84000 metal2 -96600 75600 100800 84000 metal2 +96600 105000 100800 109200 metal5 +96600 75600 100800 109200 metal6 +96600 75600 100800 79800 metal5 +96600 75600 100800 79800 metal4 +96600 75600 100800 79800 metal3 +96600 75600 100800 79800 metal2 96600 75600 100800 79800 metal1 130200 79800 134400 84000 metal1 130200 79800 134400 84000 metal2 130200 79800 134400 84000 metal3 130200 79800 134400 84000 metal4 -130200 79800 138600 84000 metal5 -134400 109200 138600 113400 metal5 -134400 79800 138600 113400 metal6 -134400 79800 138600 84000 metal5 -134400 79800 138600 84000 metal4 -134400 79800 138600 84000 metal3 -96600 138600 105000 142800 metal5 -100800 138600 105000 142800 metal5 -100800 130200 105000 142800 metal6 +130200 79800 134400 84000 metal5 +130200 46200 134400 84000 metal6 +130200 46200 134400 50400 metal5 +130200 46200 138600 50400 metal5 +134400 46200 138600 50400 metal4 +134400 42000 138600 50400 metal4 +134400 42000 138600 46200 metal3 +134400 42000 176400 46200 metal3 +172200 42000 176400 46200 metal3 +172200 42000 176400 113400 metal4 +172200 109200 176400 113400 metal4 +163800 109200 176400 113400 metal5 +96600 134400 105000 138600 metal5 +100800 134400 105000 138600 metal5 +100800 130200 105000 138600 metal6 100800 130200 105000 134400 metal5 100800 130200 105000 134400 metal4 100800 130200 105000 134400 metal3 100800 130200 105000 134400 metal2 100800 130200 105000 134400 metal1 -126000 79800 134400 84000 metal5 -126000 79800 130200 84000 metal4 -126000 79800 130200 84000 metal3 -126000 79800 130200 84000 metal2 -126000 75600 130200 84000 metal2 -126000 75600 130200 79800 metal2 -121800 75600 130200 79800 metal3 -121800 75600 126000 79800 metal2 -121800 75600 126000 84000 metal2 -121800 79800 126000 84000 metal2 -117600 79800 126000 84000 metal3 -117600 79800 121800 84000 metal2 -117600 79800 121800 84000 metal1 -130200 130200 134400 134400 metal1 -130200 130200 134400 134400 metal2 -130200 130200 134400 134400 metal3 -130200 130200 134400 134400 metal4 -130200 130200 134400 134400 metal5 -130200 121800 134400 134400 metal6 -130200 121800 134400 126000 metal5 -130200 121800 134400 126000 metal4 -130200 121800 134400 126000 metal3 126000 117600 130200 121800 metal1 126000 117600 130200 126000 metal2 126000 121800 130200 126000 metal2 126000 121800 134400 126000 metal3 +130200 121800 134400 126000 metal3 +130200 121800 134400 126000 metal4 +130200 121800 134400 126000 metal5 +130200 121800 134400 134400 metal6 +130200 130200 134400 134400 metal5 +130200 130200 134400 134400 metal4 +130200 130200 134400 134400 metal3 +130200 130200 134400 134400 metal2 +130200 130200 134400 134400 metal1 75600 96600 79800 100800 metal1 -75600 96600 79800 100800 metal2 -75600 96600 79800 100800 metal3 -75600 96600 79800 100800 metal4 -75600 96600 84000 100800 metal5 -79800 96600 84000 100800 metal4 -79800 96600 84000 100800 metal3 -79800 96600 84000 100800 metal2 -96600 138600 100800 142800 metal2 -96600 138600 100800 142800 metal3 -96600 138600 100800 142800 metal4 -96600 138600 100800 142800 metal5 -96600 130200 100800 142800 metal6 -96600 130200 100800 134400 metal5 -96600 130200 100800 134400 metal4 -96600 130200 100800 134400 metal3 -96600 130200 100800 134400 metal2 -96600 130200 100800 134400 metal1 -79800 96600 84000 113400 metal4 -79800 109200 84000 113400 metal3 -79800 109200 88200 113400 metal3 -84000 109200 88200 113400 metal3 -84000 109200 88200 113400 metal4 -84000 109200 100800 113400 metal5 -130200 109200 134400 126000 metal6 -130200 109200 134400 113400 metal5 -130200 109200 138600 113400 metal5 -96600 109200 100800 134400 metal6 -134400 79800 142800 84000 metal3 -138600 79800 142800 84000 metal2 -138600 79800 142800 84000 metal1 -134400 109200 142800 113400 metal5 -138600 109200 142800 113400 metal4 -138600 109200 142800 113400 metal3 -138600 109200 147000 113400 metal3 -142800 109200 147000 113400 metal3 -142800 109200 147000 113400 metal4 -142800 109200 151200 113400 metal5 +75600 96600 79800 105000 metal2 +75600 100800 79800 105000 metal2 +75600 100800 79800 105000 metal3 +75600 100800 79800 105000 metal4 +75600 100800 84000 105000 metal5 +79800 100800 84000 105000 metal4 +79800 100800 84000 105000 metal3 +79800 100800 84000 105000 metal2 +130200 130200 134400 142800 metal6 +130200 138600 134400 142800 metal5 +130200 138600 138600 142800 metal5 +134400 138600 138600 142800 metal4 +134400 138600 138600 142800 metal3 +134400 138600 138600 142800 metal2 +134400 138600 138600 168000 metal2 +96600 130200 100800 134400 metal1 +96600 130200 100800 134400 metal2 +96600 130200 100800 134400 metal3 +96600 130200 100800 134400 metal4 +96600 130200 100800 134400 metal5 +96600 105000 100800 134400 metal6 +79800 100800 96600 105000 metal5 +92400 100800 96600 105000 metal4 +92400 100800 96600 109200 metal4 +92400 105000 96600 109200 metal4 +92400 105000 100800 109200 metal5 +147000 109200 168000 113400 metal5 147000 109200 151200 113400 metal4 147000 109200 151200 113400 metal3 147000 109200 151200 113400 metal2 147000 109200 151200 113400 metal1 -79800 92400 84000 100800 metal2 +96600 130200 100800 138600 metal6 +96600 134400 100800 138600 metal5 +130200 79800 142800 84000 metal5 +138600 79800 142800 84000 metal4 +138600 79800 142800 84000 metal3 +138600 79800 142800 84000 metal2 +138600 79800 142800 84000 metal1 +117600 79800 134400 84000 metal5 +117600 79800 121800 84000 metal4 +117600 79800 121800 84000 metal3 +117600 79800 121800 84000 metal2 +117600 79800 121800 84000 metal1 +134400 163800 138600 168000 metal2 +134400 163800 138600 168000 metal3 +134400 163800 138600 168000 metal4 +134400 163800 168000 168000 metal5 +163800 163800 168000 168000 metal5 +163800 109200 168000 168000 metal6 +163800 109200 168000 113400 metal5 +96600 134400 100800 168000 metal6 +96600 163800 100800 168000 metal5 +96600 163800 138600 168000 metal5 +79800 92400 84000 105000 metal2 79800 92400 84000 96600 metal1 -96600 138600 100800 151200 metal2 -96600 147000 100800 151200 metal2 -96600 147000 100800 151200 metal3 -96600 147000 100800 151200 metal4 -96600 147000 105000 151200 metal5 -100800 147000 105000 151200 metal5 -100800 147000 105000 180600 metal6 -100800 176400 105000 180600 metal5 -100800 176400 126000 180600 metal5 -121800 176400 126000 180600 metal4 -121800 163800 126000 180600 metal4 -121800 163800 126000 168000 metal4 -121800 163800 134400 168000 metal5 -130200 163800 134400 168000 metal5 -130200 130200 134400 168000 metal6 ) _254_ ( @@ -4554,22 +4455,15 @@ _257_ 88200 138600 92400 142800 metal1 88200 138600 92400 142800 metal2 88200 138600 105000 142800 metal3 -100800 138600 105000 142800 metal3 -100800 134400 105000 142800 metal4 -100800 134400 105000 138600 metal3 -100800 134400 105000 138600 metal2 +100800 138600 105000 142800 metal2 +100800 134400 105000 142800 metal2 100800 134400 105000 138600 metal1 ) _258_ ( -105000 130200 109200 134400 metal1 -105000 126000 109200 134400 metal2 -105000 126000 109200 130200 metal2 -105000 126000 109200 130200 metal3 -105000 126000 109200 130200 metal4 -105000 126000 113400 130200 metal5 -109200 126000 113400 130200 metal4 -109200 121800 113400 130200 metal4 +105000 130200 113400 134400 metal3 +109200 130200 113400 134400 metal3 +109200 121800 113400 134400 metal4 109200 121800 113400 126000 metal3 109200 121800 113400 126000 metal2 109200 121800 113400 126000 metal1 @@ -4581,6 +4475,11 @@ _258_ 100800 117600 105000 130200 metal6 100800 126000 105000 130200 metal5 100800 126000 109200 130200 metal5 +105000 126000 109200 130200 metal4 +105000 126000 109200 134400 metal4 +105000 130200 109200 134400 metal3 +105000 130200 109200 134400 metal2 +105000 130200 109200 134400 metal1 ) _259_ ( @@ -4604,10 +4503,10 @@ _261_ ) _262_ ( -113400 130200 117600 134400 metal1 -113400 130200 117600 134400 metal2 -113400 130200 117600 134400 metal3 113400 121800 117600 134400 metal4 +113400 130200 117600 134400 metal3 +113400 130200 117600 134400 metal2 +113400 130200 117600 134400 metal1 113400 121800 117600 126000 metal3 113400 121800 117600 126000 metal4 113400 121800 117600 126000 metal5 @@ -4646,11 +4545,7 @@ _265_ _266_ ( 130200 130200 134400 134400 metal1 -130200 130200 134400 134400 metal2 -130200 130200 134400 134400 metal3 -130200 130200 134400 138600 metal4 -130200 134400 134400 138600 metal3 -130200 134400 134400 138600 metal2 +130200 130200 134400 138600 metal2 130200 134400 134400 138600 metal1 ) _267_ @@ -4691,44 +4586,37 @@ _272_ ( 138600 84000 142800 92400 metal2 138600 84000 142800 88200 metal1 -138600 88200 142800 92400 metal1 -138600 88200 142800 92400 metal2 -138600 88200 142800 92400 metal3 -138600 88200 142800 96600 metal4 -130200 96600 134400 100800 metal3 -130200 96600 134400 100800 metal4 -130200 96600 134400 100800 metal5 -130200 92400 134400 100800 metal6 -130200 92400 134400 96600 metal5 -130200 92400 134400 96600 metal4 -130200 92400 134400 96600 metal3 -130200 92400 142800 96600 metal3 +134400 96600 138600 100800 metal1 +134400 96600 138600 100800 metal2 +134400 96600 138600 100800 metal3 +134400 92400 138600 100800 metal4 +134400 92400 138600 96600 metal3 117600 96600 121800 100800 metal1 117600 96600 121800 100800 metal2 117600 96600 121800 100800 metal3 -117600 96600 121800 100800 metal4 -117600 96600 130200 100800 metal5 -126000 96600 130200 100800 metal4 -126000 96600 130200 100800 metal3 -126000 96600 134400 100800 metal3 +117600 92400 121800 100800 metal4 +117600 92400 121800 96600 metal4 +117600 92400 130200 96600 metal5 +126000 92400 130200 96600 metal4 +126000 92400 130200 96600 metal3 +126000 92400 138600 96600 metal3 117600 113400 121800 117600 metal1 117600 113400 121800 117600 metal2 117600 113400 121800 117600 metal3 -117600 96600 121800 117600 metal4 -138600 92400 142800 96600 metal3 -138600 92400 142800 96600 metal4 -138600 92400 142800 96600 metal5 -138600 92400 142800 100800 metal6 -138600 96600 142800 100800 metal5 -138600 96600 142800 100800 metal4 -138600 96600 142800 100800 metal3 +117600 105000 121800 117600 metal4 +117600 105000 121800 109200 metal3 +117600 105000 121800 109200 metal2 +117600 96600 121800 109200 metal2 +134400 88200 138600 96600 metal4 +134400 88200 138600 92400 metal4 +134400 88200 142800 92400 metal5 +138600 88200 142800 92400 metal4 +138600 88200 142800 92400 metal3 +138600 88200 142800 92400 metal2 +138600 88200 142800 92400 metal1 +134400 96600 142800 100800 metal3 138600 96600 142800 100800 metal2 138600 96600 142800 100800 metal1 -130200 96600 138600 100800 metal5 -134400 96600 138600 100800 metal4 -134400 96600 138600 100800 metal3 -134400 96600 138600 100800 metal2 -134400 96600 138600 100800 metal1 ) _273_ ( @@ -4771,19 +4659,13 @@ _276_ ) _277_ ( -147000 92400 151200 96600 metal1 -147000 92400 151200 96600 metal2 -147000 92400 151200 96600 metal3 -147000 92400 151200 100800 metal4 -147000 96600 151200 100800 metal4 -142800 96600 151200 100800 metal5 -142800 96600 147000 100800 metal4 -142800 96600 147000 100800 metal3 -142800 96600 147000 100800 metal2 -142800 96600 147000 100800 metal1 142800 92400 147000 96600 metal1 142800 92400 147000 96600 metal2 142800 92400 151200 96600 metal3 +147000 92400 151200 96600 metal2 +147000 92400 151200 96600 metal1 +142800 92400 147000 100800 metal2 +142800 96600 147000 100800 metal1 ) _278_ ( @@ -4831,33 +4713,34 @@ _283_ ( 130200 100800 134400 105000 metal1 130200 100800 134400 105000 metal2 -130200 100800 138600 105000 metal3 -134400 100800 138600 105000 metal3 -134400 96600 138600 105000 metal4 -134400 96600 138600 100800 metal1 -134400 96600 138600 100800 metal2 -134400 96600 138600 100800 metal3 +130200 100800 134400 105000 metal3 +130200 96600 134400 105000 metal4 +130200 96600 134400 100800 metal4 +130200 96600 138600 100800 metal5 134400 96600 138600 100800 metal4 -134400 96600 147000 100800 metal5 -142800 96600 147000 100800 metal4 -142800 96600 147000 105000 metal4 +134400 96600 138600 100800 metal3 +134400 96600 138600 100800 metal2 +134400 96600 138600 100800 metal1 +134400 96600 142800 100800 metal5 +138600 96600 142800 100800 metal5 +138600 96600 142800 105000 metal6 +138600 100800 142800 105000 metal5 +138600 100800 147000 105000 metal5 +142800 100800 147000 105000 metal4 142800 100800 147000 105000 metal3 142800 100800 147000 105000 metal2 142800 100800 147000 105000 metal1 ) _284_ ( +130200 96600 134400 100800 metal3 +130200 92400 134400 100800 metal4 +130200 92400 134400 96600 metal3 +130200 92400 134400 96600 metal2 +130200 92400 134400 96600 metal1 126000 96600 130200 100800 metal1 126000 96600 130200 100800 metal2 -126000 96600 130200 100800 metal3 -126000 92400 130200 100800 metal4 -126000 92400 130200 96600 metal3 -126000 92400 134400 96600 metal3 -130200 92400 134400 96600 metal1 -130200 92400 134400 96600 metal2 -130200 92400 134400 96600 metal3 -130200 92400 134400 100800 metal4 -130200 96600 134400 100800 metal3 +126000 96600 134400 100800 metal3 130200 96600 138600 100800 metal3 134400 96600 138600 100800 metal2 134400 96600 138600 100800 metal1 @@ -4882,16 +4765,22 @@ _286_ _287_ ( 92400 113400 96600 117600 metal1 -92400 109200 96600 117600 metal2 -92400 109200 96600 113400 metal2 -92400 109200 105000 113400 metal3 -100800 109200 105000 113400 metal3 -100800 109200 105000 113400 metal4 -100800 109200 109200 113400 metal5 -105000 109200 109200 113400 metal4 -105000 109200 109200 117600 metal4 -105000 113400 109200 117600 metal4 -105000 113400 130200 117600 metal5 +92400 113400 96600 117600 metal2 +92400 113400 96600 117600 metal3 +92400 113400 96600 117600 metal4 +92400 113400 100800 117600 metal5 +96600 113400 100800 117600 metal4 +96600 113400 100800 117600 metal3 +96600 113400 100800 117600 metal2 +96600 109200 100800 117600 metal2 +96600 109200 100800 113400 metal2 +96600 109200 117600 113400 metal3 +113400 109200 117600 113400 metal3 +113400 109200 117600 113400 metal4 +113400 109200 117600 113400 metal5 +113400 109200 117600 117600 metal6 +113400 113400 117600 117600 metal5 +113400 113400 130200 117600 metal5 126000 113400 130200 117600 metal4 126000 113400 130200 117600 metal3 126000 113400 130200 117600 metal2 @@ -4979,18 +4868,11 @@ _296_ _297_ ( 113400 96600 117600 100800 metal1 -113400 96600 117600 100800 metal2 -113400 96600 117600 100800 metal3 -113400 96600 117600 100800 metal4 -113400 96600 117600 100800 metal5 -113400 96600 117600 105000 metal6 -113400 100800 117600 105000 metal5 -113400 100800 117600 105000 metal4 +113400 96600 117600 105000 metal2 +113400 100800 117600 105000 metal2 113400 100800 117600 105000 metal3 -113400 100800 130200 105000 metal3 -126000 100800 130200 105000 metal3 -126000 100800 130200 105000 metal4 -126000 100800 134400 105000 metal5 +113400 100800 117600 105000 metal4 +113400 100800 134400 105000 metal5 130200 100800 134400 105000 metal4 130200 100800 134400 105000 metal3 130200 100800 134400 105000 metal2 @@ -4998,31 +4880,55 @@ _297_ ) _298_ ( -75600 84000 79800 92400 metal2 -75600 84000 79800 88200 metal1 -75600 96600 88200 100800 metal3 -84000 96600 88200 100800 metal3 -84000 92400 88200 100800 metal4 -84000 92400 88200 96600 metal4 -84000 92400 92400 96600 metal5 -88200 92400 92400 96600 metal4 -88200 92400 117600 96600 metal5 -113400 92400 117600 96600 metal4 -113400 92400 117600 100800 metal4 -113400 96600 117600 100800 metal3 -113400 96600 117600 100800 metal2 -113400 96600 117600 100800 metal1 -88200 88200 92400 96600 metal4 -88200 88200 92400 92400 metal3 -88200 88200 92400 92400 metal2 -88200 88200 92400 92400 metal1 75600 96600 79800 100800 metal1 75600 96600 79800 100800 metal2 75600 96600 79800 100800 metal3 -75600 88200 79800 100800 metal4 -75600 88200 79800 92400 metal3 -75600 88200 79800 92400 metal2 +75600 92400 79800 100800 metal4 75600 88200 79800 92400 metal1 +75600 88200 79800 92400 metal2 +75600 88200 79800 92400 metal3 +75600 88200 79800 92400 metal4 +75600 88200 79800 92400 metal5 +75600 84000 79800 92400 metal6 +75600 84000 79800 88200 metal5 +75600 84000 79800 88200 metal4 +75600 84000 79800 88200 metal3 +75600 84000 79800 88200 metal2 +75600 84000 79800 88200 metal1 +75600 92400 84000 96600 metal3 +79800 92400 84000 96600 metal3 +79800 88200 84000 96600 metal4 +79800 88200 84000 92400 metal4 +79800 88200 92400 92400 metal5 +88200 88200 92400 92400 metal4 +88200 88200 92400 92400 metal3 +88200 88200 92400 92400 metal2 +88200 88200 92400 92400 metal1 +88200 88200 92400 113400 metal4 +88200 109200 92400 113400 metal4 +88200 109200 105000 113400 metal5 +100800 109200 105000 113400 metal4 +100800 105000 105000 113400 metal4 +100800 105000 105000 109200 metal4 +100800 105000 117600 109200 metal5 +113400 105000 117600 109200 metal4 +113400 105000 117600 109200 metal3 +113400 105000 117600 109200 metal2 +113400 100800 117600 109200 metal2 +113400 100800 117600 105000 metal2 +113400 100800 117600 105000 metal3 +113400 100800 117600 105000 metal4 +113400 100800 117600 105000 metal5 +113400 96600 117600 105000 metal6 +113400 96600 117600 100800 metal5 +113400 96600 117600 100800 metal4 +113400 96600 117600 100800 metal3 +113400 96600 117600 100800 metal2 +113400 96600 117600 100800 metal1 +75600 92400 79800 96600 metal3 +75600 92400 79800 96600 metal4 +75600 92400 79800 96600 metal5 +75600 88200 79800 96600 metal6 ) _299_ ( @@ -5053,35 +4959,35 @@ _302_ 71400 71400 75600 75600 metal3 71400 71400 75600 75600 metal4 71400 71400 79800 75600 metal5 -75600 71400 79800 75600 metal5 -75600 71400 79800 88200 metal6 -75600 84000 79800 88200 metal5 -75600 84000 79800 88200 metal4 -75600 84000 79800 88200 metal3 -75600 84000 79800 88200 metal2 -75600 84000 79800 88200 metal1 -75600 88200 84000 92400 metal5 -79800 88200 84000 92400 metal5 -79800 75600 84000 92400 metal6 -79800 75600 84000 79800 metal5 -79800 75600 84000 79800 metal4 -79800 75600 84000 79800 metal3 -79800 75600 84000 79800 metal2 -79800 75600 84000 79800 metal1 +75600 71400 79800 75600 metal4 +75600 71400 79800 84000 metal4 75600 88200 79800 92400 metal1 75600 88200 79800 92400 metal2 75600 88200 79800 92400 metal3 75600 88200 79800 92400 metal4 -75600 88200 79800 92400 metal5 -75600 84000 79800 92400 metal6 +75600 88200 84000 92400 metal5 +79800 88200 84000 92400 metal4 +79800 79800 84000 92400 metal4 +79800 75600 84000 79800 metal1 +79800 75600 84000 79800 metal2 +79800 75600 84000 79800 metal3 +79800 75600 84000 84000 metal4 +75600 79800 79800 84000 metal4 +75600 79800 84000 84000 metal5 +79800 79800 84000 84000 metal4 +75600 79800 79800 88200 metal4 +75600 84000 79800 88200 metal3 +75600 84000 79800 88200 metal2 +75600 84000 79800 88200 metal1 ) _303_ ( 71400 84000 75600 88200 metal1 -71400 84000 75600 92400 metal2 -71400 88200 75600 92400 metal2 -71400 88200 79800 92400 metal3 -75600 88200 79800 92400 metal2 +71400 84000 75600 96600 metal2 +71400 92400 75600 96600 metal2 +71400 92400 79800 96600 metal3 +75600 92400 79800 96600 metal2 +75600 88200 79800 96600 metal2 75600 88200 79800 92400 metal1 ) _304_ @@ -5122,10 +5028,12 @@ _306_ ( 63000 84000 67200 88200 metal1 63000 84000 67200 88200 metal2 -63000 84000 71400 88200 metal3 -67200 84000 71400 88200 metal3 -67200 79800 71400 88200 metal4 -67200 79800 71400 84000 metal4 +63000 84000 67200 88200 metal3 +63000 84000 67200 88200 metal4 +63000 84000 71400 88200 metal5 +67200 84000 71400 88200 metal5 +67200 79800 71400 88200 metal6 +67200 79800 71400 84000 metal5 67200 79800 79800 84000 metal5 75600 79800 79800 84000 metal4 75600 79800 79800 84000 metal3 @@ -5137,12 +5045,11 @@ _307_ 58800 75600 63000 79800 metal1 58800 75600 63000 79800 metal2 58800 75600 63000 79800 metal3 -58800 75600 63000 79800 metal4 -58800 75600 67200 79800 metal5 -63000 75600 67200 79800 metal5 -63000 75600 67200 88200 metal6 -63000 84000 67200 88200 metal5 -63000 84000 67200 88200 metal4 +58800 75600 63000 84000 metal4 +58800 79800 63000 84000 metal4 +58800 79800 67200 84000 metal5 +63000 79800 67200 84000 metal4 +63000 79800 67200 88200 metal4 63000 84000 67200 88200 metal3 63000 84000 67200 88200 metal2 63000 84000 67200 88200 metal1 @@ -5183,12 +5090,9 @@ _311_ 79800 75600 84000 79800 metal3 79800 75600 84000 79800 metal2 79800 75600 84000 79800 metal1 -79800 75600 84000 84000 metal4 -79800 79800 84000 84000 metal4 -79800 79800 88200 84000 metal5 -84000 79800 88200 84000 metal4 -84000 79800 88200 84000 metal3 -84000 79800 88200 84000 metal2 +79800 75600 88200 79800 metal3 +84000 75600 88200 79800 metal2 +84000 75600 88200 84000 metal2 84000 79800 88200 84000 metal1 ) _312_ @@ -5202,11 +5106,7 @@ _313_ 67200 67200 71400 71400 metal1 67200 67200 71400 71400 metal2 67200 67200 71400 71400 metal3 -67200 67200 71400 71400 metal4 -67200 67200 71400 71400 metal5 -67200 58800 71400 71400 metal6 -67200 58800 71400 63000 metal5 -67200 58800 71400 63000 metal4 +67200 58800 71400 71400 metal4 67200 58800 71400 63000 metal3 67200 58800 71400 63000 metal2 67200 58800 71400 63000 metal1 @@ -5220,10 +5120,10 @@ _314_ _315_ ( 113400 84000 117600 88200 metal1 -113400 79800 117600 88200 metal2 -113400 79800 117600 84000 metal2 -113400 79800 121800 84000 metal3 -117600 79800 121800 84000 metal2 +113400 84000 117600 88200 metal2 +113400 84000 121800 88200 metal3 +117600 84000 121800 88200 metal2 +117600 79800 121800 88200 metal2 117600 79800 121800 84000 metal1 ) _316_ @@ -5237,33 +5137,33 @@ _317_ 79800 75600 84000 79800 metal2 79800 75600 84000 79800 metal3 79800 75600 84000 79800 metal4 -79800 75600 84000 79800 metal5 -79800 67200 84000 79800 metal6 -79800 67200 84000 71400 metal5 -79800 67200 96600 71400 metal5 -92400 67200 96600 71400 metal4 +79800 75600 88200 79800 metal5 +84000 75600 88200 79800 metal4 +84000 75600 88200 79800 metal3 +84000 75600 96600 79800 metal3 +92400 75600 96600 79800 metal3 +92400 67200 96600 79800 metal4 92400 67200 96600 71400 metal3 92400 67200 96600 71400 metal2 92400 67200 96600 71400 metal1 ) _318_ ( -88200 63000 92400 67200 metal2 -88200 63000 96600 67200 metal3 -92400 63000 96600 67200 metal3 -92400 63000 96600 71400 metal4 -92400 67200 96600 71400 metal4 -92400 67200 100800 71400 metal5 +88200 67200 92400 71400 metal2 +88200 67200 92400 71400 metal3 +88200 67200 92400 71400 metal4 +88200 67200 100800 71400 metal5 96600 67200 100800 71400 metal4 96600 67200 100800 71400 metal3 96600 67200 100800 71400 metal2 96600 67200 100800 71400 metal1 -88200 63000 92400 75600 metal2 88200 71400 92400 75600 metal1 +88200 67200 92400 75600 metal2 84000 67200 88200 71400 metal1 -84000 63000 88200 71400 metal2 -84000 63000 88200 67200 metal2 -84000 63000 92400 67200 metal3 +84000 67200 88200 71400 metal2 +84000 67200 88200 71400 metal3 +84000 67200 88200 71400 metal4 +84000 67200 92400 71400 metal5 ) _319_ ( @@ -5278,12 +5178,9 @@ _320_ ( 92400 71400 96600 75600 metal1 92400 71400 96600 75600 metal2 -92400 71400 100800 75600 metal3 -96600 71400 100800 75600 metal3 -96600 67200 100800 75600 metal4 -96600 67200 100800 71400 metal3 -96600 67200 105000 71400 metal3 -100800 67200 105000 71400 metal2 +92400 71400 105000 75600 metal3 +100800 71400 105000 75600 metal2 +100800 67200 105000 75600 metal2 100800 67200 105000 71400 metal1 ) _321_ @@ -5325,32 +5222,37 @@ _326_ ) _327_ ( +96600 46200 100800 50400 metal1 +96600 46200 100800 50400 metal2 +96600 46200 100800 50400 metal3 +96600 46200 100800 50400 metal4 96600 46200 109200 50400 metal5 105000 46200 109200 50400 metal4 105000 46200 109200 50400 metal3 105000 46200 109200 50400 metal2 105000 46200 109200 50400 metal1 -88200 79800 92400 84000 metal1 -88200 79800 92400 84000 metal2 -88200 79800 92400 84000 metal3 -88200 79800 92400 84000 metal4 -88200 79800 100800 84000 metal5 -96600 79800 100800 84000 metal5 -96600 46200 100800 84000 metal6 -96600 46200 100800 50400 metal5 -96600 46200 100800 50400 metal4 -96600 46200 100800 50400 metal3 -96600 46200 100800 50400 metal2 -96600 46200 100800 50400 metal1 92400 50400 96600 54600 metal1 92400 50400 96600 54600 metal2 92400 50400 96600 54600 metal3 92400 50400 96600 54600 metal4 -88200 50400 96600 54600 metal5 -88200 50400 92400 54600 metal5 -88200 46200 92400 54600 metal6 -88200 46200 92400 50400 metal5 -88200 46200 100800 50400 metal5 +92400 50400 96600 54600 metal5 +92400 46200 96600 54600 metal6 +92400 46200 96600 50400 metal5 +92400 46200 100800 50400 metal5 +88200 79800 92400 84000 metal1 +88200 79800 92400 84000 metal2 +88200 79800 92400 84000 metal3 +88200 79800 92400 84000 metal4 +88200 79800 92400 84000 metal5 +88200 67200 92400 84000 metal6 +88200 67200 92400 71400 metal5 +88200 67200 92400 71400 metal4 +88200 67200 92400 71400 metal3 +88200 67200 96600 71400 metal3 +92400 67200 96600 71400 metal3 +92400 67200 96600 71400 metal4 +92400 67200 96600 71400 metal5 +92400 50400 96600 71400 metal6 ) _328_ ( @@ -5364,9 +5266,15 @@ _329_ 84000 42000 88200 46200 metal2 84000 42000 88200 46200 metal3 84000 42000 88200 46200 metal4 -84000 42000 109200 46200 metal5 -105000 42000 109200 46200 metal4 -105000 42000 109200 46200 metal3 +84000 42000 100800 46200 metal5 +96600 42000 100800 46200 metal5 +96600 37800 100800 46200 metal6 +96600 37800 100800 42000 metal5 +96600 37800 105000 42000 metal5 +100800 37800 105000 42000 metal4 +100800 37800 105000 46200 metal4 +100800 42000 105000 46200 metal3 +100800 42000 109200 46200 metal3 105000 42000 109200 46200 metal2 105000 42000 109200 46200 metal1 ) @@ -5392,30 +5300,25 @@ _332_ 100800 46200 105000 50400 metal1 100800 46200 105000 50400 metal2 100800 46200 105000 50400 metal3 -100800 46200 105000 50400 metal4 -100800 46200 105000 50400 metal5 -100800 46200 105000 58800 metal6 -100800 54600 105000 58800 metal5 -100800 54600 105000 58800 metal4 +100800 46200 105000 58800 metal4 100800 54600 105000 58800 metal3 100800 54600 105000 58800 metal2 100800 54600 105000 58800 metal1 96600 42000 100800 46200 metal1 96600 42000 100800 46200 metal2 96600 42000 100800 46200 metal3 -96600 37800 100800 46200 metal4 -96600 37800 100800 42000 metal4 -96600 37800 105000 42000 metal5 -100800 37800 105000 42000 metal5 -100800 37800 105000 50400 metal6 +96600 42000 100800 46200 metal4 +96600 42000 105000 46200 metal5 +100800 42000 105000 46200 metal4 +100800 42000 105000 50400 metal4 ) _333_ ( 96600 37800 100800 42000 metal1 -96600 37800 100800 42000 metal2 -96600 37800 105000 42000 metal3 -100800 37800 105000 42000 metal2 -100800 37800 105000 46200 metal2 +96600 37800 100800 46200 metal2 +96600 42000 100800 46200 metal2 +96600 42000 105000 46200 metal3 +100800 42000 105000 46200 metal2 100800 42000 105000 46200 metal1 ) _334_ @@ -5447,31 +5350,34 @@ _336_ ) _337_ ( -88200 46200 92400 50400 metal1 -88200 46200 92400 54600 metal2 -88200 50400 92400 54600 metal2 88200 50400 96600 54600 metal3 92400 50400 96600 54600 metal2 92400 50400 96600 54600 metal1 84000 46200 88200 50400 metal1 +84000 46200 88200 50400 metal2 +84000 46200 88200 50400 metal3 +84000 46200 88200 50400 metal4 +84000 46200 88200 50400 metal5 +84000 46200 88200 54600 metal6 +84000 50400 88200 54600 metal5 +84000 50400 92400 54600 metal5 +88200 50400 92400 54600 metal4 +88200 50400 92400 54600 metal3 +88200 50400 92400 54600 metal2 +88200 46200 92400 54600 metal2 +88200 46200 92400 50400 metal1 +) +_338_ +( +84000 46200 88200 50400 metal1 84000 42000 88200 50400 metal2 84000 42000 88200 46200 metal2 84000 42000 92400 46200 metal3 88200 42000 92400 46200 metal2 88200 42000 92400 50400 metal2 -) -_338_ -( -84000 50400 88200 54600 metal1 -84000 50400 88200 54600 metal2 -84000 50400 92400 54600 metal3 -88200 50400 92400 54600 metal3 -88200 46200 92400 54600 metal4 -88200 46200 92400 50400 metal3 -88200 46200 92400 50400 metal2 88200 46200 92400 50400 metal1 84000 46200 88200 54600 metal2 -84000 46200 88200 50400 metal1 +84000 50400 88200 54600 metal1 ) _339_ ( @@ -5572,26 +5478,64 @@ _348_ 109200 84000 113400 88200 metal1 109200 84000 113400 88200 metal2 109200 84000 113400 88200 metal3 -109200 84000 113400 88200 metal4 -109200 84000 113400 88200 metal5 -109200 84000 113400 92400 metal6 -109200 88200 113400 92400 metal5 -109200 88200 121800 92400 metal5 -117600 88200 121800 92400 metal5 -117600 88200 121800 109200 metal6 -117600 105000 121800 109200 metal5 -117600 105000 126000 109200 metal5 -121800 105000 126000 109200 metal5 -121800 105000 126000 117600 metal6 -121800 113400 126000 117600 metal5 -121800 113400 126000 117600 metal4 -121800 113400 126000 130200 metal4 -121800 126000 126000 130200 metal4 -117600 126000 126000 130200 metal5 -117600 126000 121800 130200 metal4 -117600 126000 121800 138600 metal4 -117600 134400 121800 138600 metal3 -113400 134400 121800 138600 metal3 +109200 79800 113400 88200 metal4 +109200 79800 113400 84000 metal3 +109200 79800 117600 84000 metal3 +113400 79800 117600 84000 metal3 +113400 75600 117600 84000 metal4 +113400 75600 117600 79800 metal3 +113400 75600 117600 79800 metal2 +113400 71400 117600 79800 metal2 +113400 71400 117600 75600 metal2 +113400 71400 126000 75600 metal3 +121800 71400 126000 75600 metal3 +121800 71400 126000 75600 metal4 +121800 71400 130200 75600 metal5 +126000 71400 130200 75600 metal4 +126000 58800 130200 75600 metal4 +126000 58800 130200 63000 metal3 +126000 58800 142800 63000 metal3 +138600 58800 142800 63000 metal2 +138600 29400 142800 63000 metal2 +138600 29400 142800 33600 metal2 +138600 29400 147000 33600 metal3 +142800 29400 147000 33600 metal2 +142800 16800 147000 33600 metal2 +142800 16800 147000 21000 metal2 +142800 16800 159600 21000 metal3 +155400 16800 159600 21000 metal2 +155400 16800 159600 58800 metal2 +155400 54600 159600 58800 metal2 +155400 54600 163800 58800 metal3 +159600 54600 163800 58800 metal3 +159600 54600 163800 92400 metal4 +159600 88200 163800 92400 metal4 +159600 88200 180600 92400 metal5 +176400 88200 180600 92400 metal5 +176400 88200 180600 151200 metal6 +176400 147000 180600 151200 metal5 +168000 147000 180600 151200 metal5 +168000 147000 172200 151200 metal4 +168000 147000 172200 172200 metal4 +168000 168000 172200 172200 metal3 +151200 168000 172200 172200 metal3 +151200 168000 155400 172200 metal3 +151200 168000 155400 201600 metal4 +151200 197400 155400 201600 metal4 +130200 197400 155400 201600 metal5 +130200 197400 134400 201600 metal4 +130200 151200 134400 201600 metal4 +130200 151200 134400 155400 metal3 +117600 151200 134400 155400 metal3 +117600 151200 121800 155400 metal3 +117600 151200 121800 155400 metal4 +117600 151200 121800 155400 metal5 +117600 138600 121800 155400 metal6 +117600 138600 121800 142800 metal5 +113400 138600 121800 142800 metal5 +113400 138600 117600 142800 metal4 +113400 134400 117600 142800 metal4 +113400 134400 117600 138600 metal3 113400 134400 117600 138600 metal2 113400 134400 117600 138600 metal1 ) @@ -5627,21 +5571,61 @@ _351_ ) _352_ ( -75600 46200 79800 50400 metal1 -75600 46200 79800 50400 metal2 -75600 46200 84000 50400 metal3 105000 37800 109200 42000 metal1 105000 37800 109200 42000 metal2 105000 37800 109200 42000 metal3 105000 37800 109200 50400 metal4 105000 46200 109200 50400 metal3 105000 46200 113400 50400 metal3 -109200 46200 113400 50400 metal2 -109200 46200 113400 58800 metal2 -109200 54600 113400 58800 metal2 -109200 54600 113400 58800 metal3 -109200 54600 113400 63000 metal4 -109200 58800 113400 63000 metal3 +109200 46200 113400 50400 metal3 +109200 46200 113400 54600 metal4 +109200 50400 113400 54600 metal3 +109200 50400 113400 54600 metal2 +109200 50400 113400 63000 metal2 +79800 46200 88200 50400 metal5 +84000 46200 88200 50400 metal5 +84000 8400 88200 50400 metal6 +84000 8400 88200 12600 metal5 +84000 8400 109200 12600 metal5 +105000 8400 109200 12600 metal4 +105000 8400 109200 42000 metal4 +100800 75600 105000 84000 metal4 +100800 75600 105000 79800 metal4 +100800 75600 109200 79800 metal5 +105000 75600 109200 79800 metal4 +105000 71400 109200 79800 metal4 +105000 71400 109200 75600 metal4 +105000 71400 109200 75600 metal5 +105000 67200 109200 75600 metal6 +105000 67200 109200 71400 metal5 +105000 67200 109200 71400 metal4 +105000 67200 109200 71400 metal3 +105000 67200 109200 71400 metal2 +105000 67200 109200 71400 metal1 +84000 96600 88200 100800 metal1 +84000 92400 88200 100800 metal2 +75600 46200 79800 50400 metal1 +75600 46200 79800 50400 metal2 +75600 46200 84000 50400 metal3 +84000 84000 88200 96600 metal2 +84000 84000 88200 88200 metal2 +84000 84000 96600 88200 metal3 +92400 84000 96600 88200 metal2 +92400 79800 96600 88200 metal2 +92400 79800 96600 84000 metal2 +92400 79800 96600 84000 metal3 +92400 79800 96600 84000 metal4 +92400 79800 105000 84000 metal5 +100800 79800 105000 84000 metal4 +100800 79800 105000 84000 metal3 +100800 79800 105000 84000 metal2 +100800 79800 105000 84000 metal1 +105000 63000 109200 71400 metal6 +105000 63000 109200 67200 metal5 +105000 63000 109200 67200 metal4 +105000 58800 109200 67200 metal4 +105000 58800 109200 63000 metal3 +105000 58800 113400 63000 metal3 109200 58800 113400 63000 metal2 109200 58800 113400 63000 metal1 79800 46200 84000 50400 metal3 @@ -5653,202 +5637,128 @@ _352_ 79800 63000 84000 67200 metal3 79800 63000 84000 67200 metal2 79800 63000 84000 67200 metal1 -88200 88200 92400 96600 metal2 -88200 88200 92400 92400 metal2 -88200 88200 92400 92400 metal3 -88200 84000 92400 92400 metal4 -88200 84000 92400 88200 metal3 -88200 84000 96600 88200 metal3 -92400 84000 96600 88200 metal2 -92400 79800 96600 88200 metal2 -92400 79800 96600 84000 metal2 -92400 79800 100800 84000 metal3 -96600 79800 100800 84000 metal3 -96600 79800 100800 84000 metal4 -96600 79800 105000 84000 metal5 -100800 79800 105000 84000 metal4 -100800 79800 105000 84000 metal3 -100800 79800 105000 84000 metal2 -100800 79800 105000 84000 metal1 -79800 25200 84000 50400 metal6 -79800 25200 84000 29400 metal5 -79800 25200 88200 29400 metal5 -84000 25200 88200 29400 metal4 -84000 16800 88200 29400 metal4 -84000 16800 88200 21000 metal3 -84000 16800 109200 21000 metal3 -105000 16800 109200 21000 metal3 -105000 16800 109200 42000 metal4 -109200 58800 113400 71400 metal2 -109200 67200 113400 71400 metal2 -109200 67200 113400 71400 metal3 -109200 67200 113400 71400 metal4 -105000 67200 113400 71400 metal5 -105000 67200 109200 71400 metal4 -105000 67200 109200 71400 metal3 -105000 67200 109200 71400 metal2 -105000 67200 109200 71400 metal1 -84000 96600 88200 100800 metal1 -84000 92400 88200 100800 metal2 84000 92400 88200 96600 metal2 84000 92400 92400 96600 metal3 88200 92400 92400 96600 metal2 88200 92400 92400 96600 metal1 -105000 67200 109200 75600 metal2 -105000 71400 109200 75600 metal2 -105000 71400 109200 75600 metal3 -105000 71400 109200 75600 metal4 -105000 71400 109200 75600 metal5 -105000 71400 109200 84000 metal6 -105000 79800 109200 84000 metal5 -100800 79800 109200 84000 metal5 ) _353_ ( -113400 189000 117600 193200 metal4 -113400 189000 138600 193200 metal5 -134400 189000 138600 193200 metal4 -134400 189000 138600 193200 metal3 -134400 189000 138600 193200 metal2 -147000 92400 155400 96600 metal5 -147000 92400 151200 96600 metal5 -147000 63000 151200 96600 metal6 -147000 63000 151200 67200 metal5 -121800 63000 151200 67200 metal5 -121800 63000 126000 67200 metal5 -121800 63000 126000 92400 metal6 -121800 88200 126000 92400 metal5 -121800 88200 126000 92400 metal4 -121800 88200 126000 92400 metal3 -121800 88200 126000 92400 metal2 -121800 88200 126000 92400 metal1 -113400 142800 117600 147000 metal1 -113400 142800 117600 147000 metal2 -113400 142800 117600 147000 metal3 -113400 142800 117600 147000 metal4 -113400 142800 117600 147000 metal5 -113400 138600 117600 147000 metal6 -113400 138600 117600 142800 metal5 -113400 138600 121800 142800 metal5 -117600 138600 121800 142800 metal4 -117600 138600 121800 142800 metal3 -117600 138600 121800 142800 metal2 -117600 138600 121800 142800 metal1 -50400 105000 54600 109200 metal3 -50400 105000 54600 109200 metal4 -50400 105000 54600 109200 metal5 -50400 105000 54600 130200 metal6 -50400 126000 54600 130200 metal5 -50400 126000 67200 130200 metal5 -63000 126000 67200 130200 metal4 -63000 126000 67200 163800 metal4 -134400 138600 138600 193200 metal2 -134400 138600 138600 142800 metal2 -134400 138600 138600 142800 metal3 -134400 138600 138600 142800 metal4 -134400 138600 142800 142800 metal5 -138600 138600 142800 142800 metal5 -138600 134400 142800 142800 metal6 -138600 134400 142800 138600 metal5 -138600 134400 142800 138600 metal4 -138600 134400 142800 138600 metal3 -138600 134400 142800 138600 metal2 -138600 134400 142800 138600 metal1 +138600 117600 142800 121800 metal1 +138600 117600 142800 121800 metal2 +138600 117600 142800 121800 metal3 +138600 117600 142800 121800 metal4 +138600 117600 142800 121800 metal5 +138600 117600 142800 134400 metal6 +138600 130200 142800 134400 metal5 +138600 130200 142800 134400 metal4 88200 117600 92400 121800 metal1 88200 117600 92400 121800 metal2 88200 117600 92400 121800 metal3 88200 117600 92400 121800 metal4 88200 117600 92400 121800 metal5 -88200 117600 92400 138600 metal6 -88200 134400 92400 138600 metal5 -71400 134400 92400 138600 metal5 -71400 134400 75600 138600 metal5 -71400 134400 75600 163800 metal6 -71400 159600 75600 163800 metal5 -63000 159600 75600 163800 metal5 -63000 159600 67200 163800 metal4 -50400 92400 54600 109200 metal6 -50400 92400 54600 96600 metal5 -50400 92400 54600 96600 metal4 -50400 92400 54600 96600 metal3 -50400 92400 58800 96600 metal3 -54600 92400 58800 96600 metal3 -54600 92400 58800 100800 metal4 -54600 96600 58800 100800 metal3 -54600 96600 58800 100800 metal2 -54600 96600 58800 100800 metal1 -50400 105000 58800 109200 metal3 -54600 105000 58800 109200 metal2 -54600 105000 58800 113400 metal2 -54600 109200 58800 113400 metal2 -54600 109200 58800 113400 metal3 -54600 109200 58800 113400 metal4 -54600 109200 63000 113400 metal5 -58800 109200 63000 113400 metal4 -58800 105000 63000 113400 metal4 -58800 105000 63000 109200 metal4 -58800 105000 63000 109200 metal5 -58800 84000 63000 109200 metal6 -58800 84000 63000 88200 metal5 -58800 84000 63000 88200 metal4 -58800 84000 63000 88200 metal3 -58800 84000 63000 88200 metal2 -58800 84000 63000 88200 metal1 88200 92400 92400 121800 metal6 88200 92400 92400 96600 metal5 88200 92400 92400 96600 metal4 88200 92400 92400 96600 metal3 88200 92400 92400 96600 metal2 88200 92400 92400 96600 metal1 -138600 117600 142800 138600 metal6 -138600 117600 142800 121800 metal5 -138600 117600 142800 121800 metal4 -138600 117600 142800 121800 metal3 -138600 117600 142800 121800 metal2 -138600 117600 142800 121800 metal1 -134400 189000 163800 193200 metal3 -159600 189000 163800 193200 metal2 -159600 184800 163800 193200 metal2 -159600 184800 163800 189000 metal2 -159600 184800 168000 189000 metal3 -163800 184800 168000 189000 metal3 -163800 159600 168000 189000 metal4 -163800 159600 168000 163800 metal3 -163800 159600 172200 163800 metal3 -168000 159600 172200 163800 metal3 -168000 92400 172200 163800 metal4 -168000 92400 172200 96600 metal4 -151200 92400 172200 96600 metal5 -63000 159600 67200 180600 metal4 -63000 176400 67200 180600 metal3 -63000 176400 71400 180600 metal3 -67200 176400 71400 180600 metal3 -67200 176400 71400 193200 metal4 -67200 189000 71400 193200 metal4 -67200 189000 117600 193200 metal5 -113400 172200 117600 193200 metal4 -113400 172200 117600 176400 metal3 -113400 172200 117600 176400 metal2 -113400 163800 117600 176400 metal2 -113400 163800 117600 168000 metal2 -113400 163800 121800 168000 metal3 -117600 163800 121800 168000 metal3 -117600 155400 121800 168000 metal4 -117600 155400 121800 159600 metal4 -113400 155400 121800 159600 metal5 -113400 155400 117600 159600 metal5 -113400 142800 117600 159600 metal6 -151200 92400 155400 96600 metal1 -151200 92400 155400 96600 metal2 -151200 92400 155400 96600 metal3 -151200 92400 155400 96600 metal4 -151200 92400 155400 96600 metal5 -151200 92400 155400 105000 metal6 -151200 100800 155400 105000 metal5 -151200 100800 155400 105000 metal4 -151200 100800 155400 105000 metal3 -151200 100800 155400 105000 metal2 +121800 88200 126000 92400 metal1 +121800 88200 126000 92400 metal2 +121800 88200 126000 92400 metal3 +121800 88200 126000 92400 metal4 +121800 88200 126000 92400 metal5 +121800 88200 126000 117600 metal6 +121800 113400 126000 117600 metal5 +121800 113400 126000 117600 metal4 +121800 113400 126000 126000 metal4 +121800 121800 126000 126000 metal3 +113400 142800 117600 147000 metal1 +113400 142800 117600 147000 metal2 +113400 142800 117600 147000 metal3 +113400 138600 117600 147000 metal4 +113400 138600 117600 142800 metal3 +113400 138600 121800 142800 metal3 +117600 138600 121800 142800 metal2 +117600 138600 121800 142800 metal1 +134400 130200 142800 134400 metal5 +134400 130200 138600 134400 metal5 +134400 126000 138600 134400 metal6 +134400 126000 138600 130200 metal5 +134400 126000 138600 130200 metal4 +134400 126000 138600 130200 metal3 +126000 126000 138600 130200 metal3 +126000 126000 130200 130200 metal2 +126000 121800 130200 130200 metal2 +126000 121800 130200 126000 metal2 +121800 121800 130200 126000 metal3 +138600 117600 147000 121800 metal3 +142800 117600 147000 121800 metal2 +142800 109200 147000 121800 metal2 +142800 109200 147000 113400 metal2 +142800 109200 155400 113400 metal3 +151200 109200 155400 113400 metal2 +151200 100800 155400 113400 metal2 +54600 96600 58800 100800 metal1 +54600 96600 58800 100800 metal2 +54600 96600 58800 100800 metal3 +54600 92400 58800 100800 metal4 +54600 92400 58800 96600 metal4 +54600 92400 63000 96600 metal5 +58800 84000 63000 88200 metal1 +58800 84000 63000 96600 metal2 +58800 92400 63000 96600 metal2 +58800 92400 63000 96600 metal3 +58800 92400 63000 96600 metal4 +58800 92400 63000 96600 metal5 +58800 92400 63000 126000 metal6 +58800 121800 63000 126000 metal5 +58800 121800 63000 126000 metal4 +58800 121800 63000 130200 metal4 +58800 126000 63000 130200 metal3 +58800 126000 67200 130200 metal3 +63000 126000 67200 130200 metal2 +63000 126000 67200 147000 metal2 151200 100800 155400 105000 metal1 +151200 100800 155400 105000 metal2 +151200 100800 155400 105000 metal3 +151200 92400 155400 105000 metal4 +151200 92400 155400 96600 metal3 +151200 92400 155400 96600 metal2 +151200 92400 155400 96600 metal1 +138600 130200 142800 138600 metal4 +138600 134400 142800 138600 metal3 +138600 134400 142800 138600 metal2 +138600 134400 142800 138600 metal1 +63000 142800 67200 147000 metal2 +63000 142800 71400 147000 metal3 +67200 142800 71400 147000 metal2 +67200 126000 71400 147000 metal2 +67200 126000 71400 130200 metal2 +67200 126000 84000 130200 metal3 +79800 126000 84000 130200 metal3 +79800 126000 84000 130200 metal4 +79800 126000 88200 130200 metal5 +84000 126000 88200 130200 metal4 +84000 121800 88200 130200 metal4 +84000 121800 88200 126000 metal4 +84000 121800 92400 126000 metal5 +88200 121800 92400 126000 metal5 +88200 117600 92400 126000 metal6 +63000 142800 67200 184800 metal2 +63000 180600 67200 184800 metal2 +63000 180600 88200 184800 metal3 +84000 180600 88200 184800 metal2 +84000 176400 88200 184800 metal2 +84000 176400 88200 180600 metal2 +84000 176400 117600 180600 metal3 +113400 176400 117600 180600 metal3 +113400 142800 117600 180600 metal4 +117600 130200 121800 142800 metal2 +117600 130200 121800 134400 metal2 +117600 130200 126000 134400 metal3 +121800 130200 126000 134400 metal3 +121800 121800 126000 134400 metal4 ) _354_ ( @@ -5896,10 +5806,10 @@ _359_ _360_ ( 138600 117600 142800 121800 metal1 -138600 117600 142800 121800 metal2 -138600 117600 147000 121800 metal3 -142800 117600 147000 121800 metal2 -142800 117600 147000 126000 metal2 +138600 117600 142800 126000 metal2 +138600 121800 142800 126000 metal2 +138600 121800 147000 126000 metal3 +142800 121800 147000 126000 metal2 142800 121800 147000 126000 metal1 ) _361_ @@ -5916,11 +5826,10 @@ _362_ 54600 75600 58800 79800 metal1 54600 75600 58800 79800 metal2 54600 75600 58800 79800 metal3 -54600 75600 58800 84000 metal4 -54600 79800 58800 84000 metal4 -54600 79800 63000 84000 metal5 -58800 79800 63000 84000 metal5 -58800 79800 63000 88200 metal6 +54600 75600 58800 79800 metal4 +54600 75600 63000 79800 metal5 +58800 75600 63000 79800 metal5 +58800 75600 63000 88200 metal6 58800 84000 63000 88200 metal5 58800 84000 63000 88200 metal4 58800 84000 63000 88200 metal3 @@ -5959,8 +5868,10 @@ _367_ 71400 37800 75600 42000 metal1 71400 37800 75600 42000 metal2 71400 37800 79800 42000 metal3 -75600 37800 79800 42000 metal2 -75600 37800 79800 50400 metal2 +75600 37800 79800 42000 metal3 +75600 37800 79800 50400 metal4 +75600 46200 79800 50400 metal3 +75600 46200 79800 50400 metal2 75600 46200 79800 50400 metal1 ) _368_ @@ -5983,37 +5894,46 @@ _369_ _370_ ( 84000 63000 88200 67200 metal1 -84000 58800 88200 67200 metal2 -84000 58800 88200 63000 metal2 -84000 58800 88200 63000 metal3 -84000 58800 88200 63000 metal4 -79800 58800 88200 63000 metal5 +84000 63000 88200 67200 metal2 +84000 63000 88200 67200 metal3 +84000 63000 88200 67200 metal4 +79800 63000 88200 67200 metal5 +79800 63000 84000 67200 metal4 +79800 63000 84000 67200 metal3 +79800 63000 84000 67200 metal2 +79800 58800 84000 67200 metal2 +79800 58800 84000 63000 metal2 +79800 58800 84000 63000 metal3 79800 58800 84000 63000 metal4 -79800 54600 84000 63000 metal4 -79800 54600 84000 58800 metal4 -54600 54600 84000 58800 metal5 -54600 54600 58800 58800 metal4 -54600 54600 58800 67200 metal4 -54600 63000 58800 67200 metal4 -29400 63000 58800 67200 metal5 -29400 63000 33600 67200 metal5 -29400 63000 33600 121800 metal6 +75600 58800 84000 63000 metal5 +75600 58800 79800 63000 metal4 +75600 46200 79800 63000 metal4 +75600 46200 79800 50400 metal4 +71400 46200 79800 50400 metal5 +71400 46200 75600 50400 metal4 +71400 37800 75600 50400 metal4 +71400 37800 75600 42000 metal4 +54600 37800 75600 42000 metal5 +54600 37800 58800 42000 metal5 +54600 37800 58800 71400 metal6 +54600 67200 58800 71400 metal5 +29400 67200 58800 71400 metal5 +29400 67200 33600 71400 metal5 +29400 67200 33600 121800 metal6 29400 117600 33600 121800 metal5 29400 117600 37800 121800 metal5 33600 117600 37800 121800 metal4 -33600 117600 37800 159600 metal4 -33600 155400 37800 159600 metal3 -33600 155400 50400 159600 metal3 -46200 155400 50400 159600 metal2 -46200 155400 50400 172200 metal2 -46200 168000 50400 172200 metal2 -46200 168000 92400 172200 metal3 -88200 168000 92400 172200 metal3 -88200 168000 92400 176400 metal4 -88200 172200 92400 176400 metal4 -88200 172200 121800 176400 metal5 -117600 172200 121800 176400 metal4 -117600 172200 121800 176400 metal3 +33600 117600 37800 163800 metal4 +33600 159600 37800 163800 metal3 +33600 159600 79800 163800 metal3 +75600 159600 79800 163800 metal2 +75600 159600 79800 172200 metal2 +75600 168000 79800 172200 metal2 +75600 168000 105000 172200 metal3 +100800 168000 105000 172200 metal2 +100800 168000 105000 176400 metal2 +100800 172200 105000 176400 metal2 +100800 172200 121800 176400 metal3 117600 172200 121800 176400 metal2 117600 172200 121800 176400 metal1 ) @@ -6024,10 +5944,13 @@ _371_ 105000 25200 109200 29400 metal3 105000 25200 109200 29400 metal4 105000 25200 109200 29400 metal5 -105000 25200 109200 67200 metal6 -105000 63000 109200 67200 metal5 -105000 63000 109200 67200 metal4 -105000 63000 109200 67200 metal3 +105000 25200 109200 37800 metal6 +105000 33600 109200 37800 metal5 +105000 33600 121800 37800 metal5 +117600 33600 121800 37800 metal4 +117600 33600 121800 67200 metal4 +117600 63000 121800 67200 metal3 +105000 63000 121800 67200 metal3 105000 63000 109200 67200 metal2 105000 63000 109200 67200 metal1 ) @@ -6036,23 +5959,27 @@ _372_ 113400 63000 117600 67200 metal1 113400 63000 117600 67200 metal2 113400 63000 117600 67200 metal3 -113400 58800 117600 67200 metal4 -113400 58800 117600 63000 metal4 -113400 58800 159600 63000 metal5 -155400 58800 159600 63000 metal4 -155400 58800 159600 84000 metal4 +113400 63000 117600 67200 metal4 +113400 63000 117600 67200 metal5 +113400 54600 117600 67200 metal6 +113400 54600 117600 58800 metal5 +113400 54600 117600 58800 metal4 +113400 54600 117600 58800 metal3 +113400 54600 159600 58800 metal3 +155400 54600 159600 58800 metal3 +155400 54600 159600 84000 metal4 155400 79800 159600 84000 metal3 -155400 79800 168000 84000 metal3 -163800 79800 168000 84000 metal2 -163800 79800 168000 113400 metal2 -163800 109200 168000 113400 metal2 -159600 109200 168000 113400 metal3 -159600 109200 163800 113400 metal2 -159600 109200 163800 147000 metal2 -159600 142800 163800 147000 metal2 -147000 142800 163800 147000 metal3 -147000 142800 151200 147000 metal2 -147000 142800 151200 176400 metal2 +155400 79800 172200 84000 metal3 +168000 79800 172200 84000 metal3 +168000 79800 172200 151200 metal4 +168000 147000 172200 151200 metal3 +151200 147000 172200 151200 metal3 +151200 147000 155400 151200 metal2 +151200 147000 155400 159600 metal2 +151200 155400 155400 159600 metal2 +147000 155400 155400 159600 metal3 +147000 155400 151200 159600 metal2 +147000 155400 151200 176400 metal2 147000 172200 151200 176400 metal2 126000 172200 151200 176400 metal3 126000 172200 130200 176400 metal2 @@ -6076,64 +6003,38 @@ _374_ 63000 29400 67200 37800 metal2 63000 29400 67200 33600 metal2 63000 29400 75600 33600 metal3 -71400 29400 75600 33600 metal3 -71400 29400 75600 42000 metal4 -71400 37800 75600 42000 metal3 -71400 37800 75600 42000 metal2 +71400 29400 75600 33600 metal2 +71400 29400 75600 42000 metal2 71400 37800 75600 42000 metal1 ) _375_ ( 21000 84000 25200 88200 metal1 21000 84000 25200 88200 metal2 -12600 84000 25200 88200 metal3 -12600 84000 16800 88200 metal2 -12600 84000 16800 142800 metal2 -12600 138600 16800 142800 metal2 -12600 138600 25200 142800 metal3 -21000 138600 25200 142800 metal2 -21000 138600 25200 147000 metal2 -21000 142800 25200 147000 metal2 -21000 142800 50400 147000 metal3 -46200 142800 50400 147000 metal2 -46200 142800 50400 159600 metal2 -46200 155400 50400 159600 metal2 -46200 155400 58800 159600 metal3 -54600 155400 58800 159600 metal3 -54600 155400 58800 180600 metal4 -54600 176400 58800 180600 metal3 -54600 176400 63000 180600 metal3 -58800 176400 63000 180600 metal2 -58800 172200 63000 180600 metal2 -58800 172200 63000 176400 metal2 -58800 172200 75600 176400 metal3 -71400 172200 75600 176400 metal3 -71400 142800 75600 176400 metal4 -71400 142800 75600 147000 metal4 -71400 142800 88200 147000 metal5 -84000 142800 88200 147000 metal4 -84000 142800 88200 147000 metal3 -84000 142800 88200 147000 metal2 -84000 138600 88200 147000 metal2 -84000 138600 88200 142800 metal2 +21000 84000 25200 88200 metal3 +21000 84000 25200 88200 metal4 +21000 84000 25200 88200 metal5 +21000 84000 25200 159600 metal6 +21000 155400 25200 159600 metal5 +21000 155400 79800 159600 metal5 +75600 155400 79800 159600 metal4 +75600 138600 79800 159600 metal4 +75600 138600 79800 142800 metal3 +75600 138600 88200 142800 metal3 84000 138600 88200 142800 metal3 -84000 138600 88200 142800 metal4 -84000 138600 96600 142800 metal5 -92400 138600 96600 142800 metal5 -92400 126000 96600 142800 metal6 -92400 126000 96600 130200 metal5 +84000 126000 88200 142800 metal4 +84000 126000 88200 130200 metal4 +84000 126000 96600 130200 metal5 92400 126000 96600 130200 metal4 -92400 121800 96600 130200 metal4 +92400 126000 96600 130200 metal3 +92400 126000 96600 130200 metal2 +92400 121800 96600 130200 metal2 +92400 121800 96600 126000 metal2 92400 121800 96600 126000 metal3 -92400 121800 100800 126000 metal3 -96600 121800 100800 126000 metal2 -96600 100800 100800 126000 metal2 -96600 100800 100800 105000 metal2 -92400 100800 100800 105000 metal3 -92400 100800 96600 105000 metal3 -92400 100800 96600 105000 metal4 -92400 100800 96600 105000 metal5 -92400 84000 96600 105000 metal6 +92400 113400 96600 126000 metal4 +92400 113400 96600 117600 metal4 +92400 113400 96600 117600 metal5 +92400 84000 96600 117600 metal6 92400 84000 96600 88200 metal5 92400 84000 96600 88200 metal4 92400 84000 96600 88200 metal3 @@ -6143,15 +6044,11 @@ _375_ _376_ ( 142800 134400 147000 138600 metal1 -142800 134400 147000 138600 metal2 -142800 134400 147000 138600 metal3 -142800 134400 147000 163800 metal4 -142800 159600 147000 163800 metal3 -142800 159600 151200 163800 metal3 -147000 159600 151200 163800 metal3 -147000 159600 151200 176400 metal4 -147000 172200 151200 176400 metal4 -147000 172200 155400 176400 metal5 +142800 134400 147000 176400 metal2 +142800 172200 147000 176400 metal2 +142800 172200 147000 176400 metal3 +142800 172200 147000 176400 metal4 +142800 172200 155400 176400 metal5 151200 172200 155400 176400 metal4 151200 172200 155400 176400 metal3 151200 172200 155400 176400 metal2 @@ -6164,59 +6061,37 @@ _377_ 109200 100800 113400 105000 metal3 109200 100800 113400 105000 metal4 109200 100800 113400 105000 metal5 -109200 100800 113400 113400 metal6 -109200 109200 113400 113400 metal5 -109200 109200 121800 113400 metal5 -117600 109200 121800 113400 metal4 -117600 109200 121800 113400 metal3 -117600 109200 126000 113400 metal3 -121800 109200 126000 113400 metal2 -121800 109200 126000 117600 metal2 -121800 113400 126000 117600 metal2 -121800 113400 126000 117600 metal3 -121800 113400 126000 117600 metal4 -121800 113400 126000 117600 metal5 -121800 113400 126000 126000 metal6 -121800 121800 126000 126000 metal5 -121800 121800 130200 126000 metal5 -126000 121800 130200 126000 metal4 -126000 121800 130200 134400 metal4 -126000 130200 130200 134400 metal4 -126000 130200 130200 134400 metal5 -126000 130200 130200 142800 metal6 -126000 138600 130200 142800 metal5 -126000 138600 130200 142800 metal4 -126000 138600 130200 142800 metal3 -126000 138600 134400 142800 metal3 -130200 138600 134400 142800 metal2 -130200 138600 134400 147000 metal2 -130200 142800 134400 147000 metal2 -130200 142800 138600 147000 metal3 -134400 142800 138600 147000 metal3 -134400 142800 138600 147000 metal4 -134400 142800 151200 147000 metal5 -147000 142800 151200 147000 metal4 -147000 142800 151200 159600 metal4 -147000 155400 151200 159600 metal3 -147000 155400 155400 159600 metal3 -151200 155400 155400 159600 metal3 -151200 155400 155400 168000 metal4 -151200 163800 155400 168000 metal3 -151200 163800 184800 168000 metal3 -180600 163800 184800 168000 metal3 -180600 130200 184800 168000 metal4 -180600 130200 184800 134400 metal3 -176400 130200 184800 134400 metal3 -176400 130200 180600 134400 metal3 -176400 117600 180600 134400 metal4 -176400 117600 180600 121800 metal4 -172200 117600 180600 121800 metal5 -172200 117600 176400 121800 metal5 -172200 92400 176400 121800 metal6 -172200 92400 176400 96600 metal5 -172200 92400 176400 96600 metal4 -172200 92400 176400 96600 metal3 -172200 92400 176400 96600 metal2 +109200 96600 113400 105000 metal6 +109200 96600 113400 100800 metal5 +109200 96600 113400 100800 metal4 +109200 92400 113400 100800 metal4 +109200 92400 113400 96600 metal3 +109200 92400 121800 96600 metal3 +117600 92400 121800 96600 metal3 +117600 84000 121800 96600 metal4 +117600 84000 121800 88200 metal4 +117600 84000 134400 88200 metal5 +130200 84000 134400 88200 metal5 +130200 84000 134400 92400 metal6 +130200 88200 134400 92400 metal5 +130200 88200 138600 92400 metal5 +134400 88200 138600 92400 metal5 +134400 75600 138600 92400 metal6 +134400 75600 138600 79800 metal5 +134400 75600 138600 79800 metal4 +134400 71400 138600 79800 metal4 +134400 71400 138600 75600 metal3 +134400 71400 142800 75600 metal3 +138600 71400 142800 75600 metal2 +138600 58800 142800 75600 metal2 +138600 58800 142800 63000 metal2 +138600 58800 180600 63000 metal3 +176400 58800 180600 63000 metal3 +176400 58800 180600 88200 metal4 +176400 84000 180600 88200 metal3 +172200 84000 180600 88200 metal3 +172200 84000 176400 88200 metal2 +172200 84000 176400 96600 metal2 172200 92400 176400 96600 metal1 ) _378_ @@ -6242,43 +6117,48 @@ _379_ _380_ ( 79800 25200 84000 29400 metal1 -79800 25200 84000 29400 metal2 -79800 25200 84000 29400 metal3 -79800 4200 84000 29400 metal4 -79800 4200 84000 8400 metal3 -54600 4200 84000 8400 metal3 -54600 4200 58800 8400 metal2 -54600 4200 58800 42000 metal2 -54600 37800 58800 42000 metal2 -42000 37800 58800 42000 metal3 +79800 25200 84000 33600 metal2 +79800 29400 84000 33600 metal2 +75600 29400 84000 33600 metal3 +75600 29400 79800 33600 metal2 +75600 12600 79800 33600 metal2 +75600 12600 79800 16800 metal2 +67200 12600 79800 16800 metal3 +67200 12600 71400 16800 metal2 +67200 4200 71400 16800 metal2 +67200 4200 71400 8400 metal2 +46200 4200 71400 8400 metal3 +46200 4200 50400 8400 metal2 +46200 4200 50400 42000 metal2 +46200 37800 50400 42000 metal2 +42000 37800 50400 42000 metal3 42000 37800 46200 42000 metal2 -42000 37800 46200 46200 metal2 -42000 42000 46200 46200 metal2 -37800 42000 46200 46200 metal3 -37800 42000 42000 46200 metal2 -37800 42000 42000 121800 metal2 -37800 117600 42000 121800 metal2 -37800 117600 50400 121800 metal3 -46200 117600 50400 121800 metal2 -46200 117600 50400 147000 metal2 +42000 37800 46200 50400 metal2 +42000 46200 46200 50400 metal2 +37800 46200 46200 50400 metal3 +37800 46200 42000 50400 metal2 +37800 46200 42000 126000 metal2 +37800 121800 42000 126000 metal2 +37800 121800 50400 126000 metal3 +46200 121800 50400 126000 metal2 +46200 121800 50400 147000 metal2 46200 142800 50400 147000 metal2 -46200 142800 71400 147000 metal3 -67200 142800 71400 147000 metal3 -67200 126000 71400 147000 metal4 -67200 126000 71400 130200 metal4 -67200 126000 84000 130200 metal5 -79800 126000 84000 130200 metal5 -79800 117600 84000 130200 metal6 -79800 117600 84000 121800 metal5 -79800 117600 84000 121800 metal4 -79800 117600 84000 121800 metal3 -79800 117600 88200 121800 metal3 -84000 117600 88200 121800 metal3 -84000 113400 88200 121800 metal4 -84000 113400 88200 117600 metal4 -84000 113400 92400 117600 metal5 -88200 113400 92400 117600 metal4 -88200 113400 92400 117600 metal3 +46200 142800 63000 147000 metal3 +58800 142800 63000 147000 metal2 +58800 138600 63000 147000 metal2 +58800 138600 63000 142800 metal2 +58800 138600 79800 142800 metal3 +75600 138600 79800 142800 metal3 +75600 134400 79800 142800 metal4 +75600 134400 79800 138600 metal4 +75600 134400 84000 138600 metal5 +79800 134400 84000 138600 metal4 +79800 134400 84000 138600 metal3 +79800 134400 88200 138600 metal3 +84000 134400 88200 138600 metal2 +84000 113400 88200 138600 metal2 +84000 113400 88200 117600 metal2 +84000 113400 92400 117600 metal3 88200 113400 92400 117600 metal2 88200 113400 92400 117600 metal1 ) @@ -6286,15 +6166,17 @@ _381_ ( 33600 71400 37800 75600 metal1 33600 71400 37800 75600 metal2 -33600 71400 37800 75600 metal3 -33600 71400 37800 75600 metal4 -33600 71400 50400 75600 metal5 -46200 71400 50400 75600 metal5 -46200 16800 50400 75600 metal6 -46200 16800 50400 21000 metal5 -46200 16800 147000 21000 metal5 -142800 16800 147000 21000 metal4 -142800 16800 147000 84000 metal4 +33600 71400 42000 75600 metal3 +37800 71400 42000 75600 metal3 +37800 16800 42000 75600 metal4 +37800 16800 42000 21000 metal4 +37800 16800 142800 21000 metal5 +138600 16800 142800 21000 metal4 +138600 16800 142800 67200 metal4 +138600 63000 142800 67200 metal3 +138600 63000 147000 67200 metal3 +142800 63000 147000 67200 metal3 +142800 63000 147000 84000 metal4 142800 79800 147000 84000 metal4 138600 79800 147000 84000 metal5 138600 79800 142800 84000 metal4 @@ -6327,19 +6209,19 @@ _384_ 84000 172200 88200 176400 metal2 84000 172200 88200 176400 metal3 84000 172200 88200 176400 metal4 -84000 172200 88200 176400 metal5 -84000 126000 88200 176400 metal6 -84000 126000 88200 130200 metal5 -84000 126000 92400 130200 metal5 -88200 126000 92400 130200 metal4 -88200 121800 92400 130200 metal4 -88200 121800 92400 126000 metal3 -88200 121800 96600 126000 metal3 -92400 121800 96600 126000 metal2 -92400 117600 96600 126000 metal2 -92400 117600 96600 121800 metal2 -92400 117600 96600 121800 metal3 -92400 113400 96600 121800 metal4 +79800 172200 88200 176400 metal5 +79800 172200 84000 176400 metal5 +79800 126000 84000 176400 metal6 +79800 126000 84000 130200 metal5 +79800 126000 84000 130200 metal4 +79800 121800 84000 130200 metal4 +79800 121800 84000 126000 metal3 +79800 121800 88200 126000 metal3 +84000 121800 88200 126000 metal3 +84000 113400 88200 126000 metal4 +84000 113400 88200 117600 metal4 +84000 113400 96600 117600 metal5 +92400 113400 96600 117600 metal4 92400 113400 96600 117600 metal3 92400 113400 96600 117600 metal2 92400 113400 96600 117600 metal1 @@ -6348,27 +6230,27 @@ _385_ ( 79800 96600 84000 100800 metal1 79800 96600 84000 100800 metal2 -79800 96600 84000 100800 metal3 -79800 96600 84000 100800 metal4 -75600 96600 84000 100800 metal5 +75600 96600 84000 100800 metal3 +75600 96600 79800 100800 metal3 +75600 96600 79800 100800 metal4 75600 96600 79800 100800 metal5 -75600 96600 79800 189000 metal6 -75600 184800 79800 189000 metal5 -75600 184800 134400 189000 metal5 -130200 184800 134400 189000 metal4 -130200 163800 134400 189000 metal4 -130200 163800 134400 168000 metal4 -130200 163800 159600 168000 metal5 -155400 163800 159600 168000 metal4 -155400 147000 159600 168000 metal4 -155400 147000 159600 151200 metal3 -155400 147000 168000 151200 metal3 -163800 147000 168000 151200 metal2 -163800 109200 168000 151200 metal2 -163800 109200 168000 113400 metal2 -163800 109200 176400 113400 metal3 -172200 109200 176400 113400 metal2 -172200 96600 176400 113400 metal2 +75600 96600 79800 105000 metal6 +75600 100800 79800 105000 metal5 +71400 100800 79800 105000 metal5 +71400 100800 75600 105000 metal5 +71400 100800 75600 193200 metal6 +71400 189000 75600 193200 metal5 +71400 189000 163800 193200 metal5 +159600 189000 163800 193200 metal4 +159600 138600 163800 193200 metal4 +159600 138600 163800 142800 metal4 +159600 138600 176400 142800 metal5 +172200 138600 176400 142800 metal5 +172200 96600 176400 142800 metal6 +172200 96600 176400 100800 metal5 +172200 96600 176400 100800 metal4 +172200 96600 176400 100800 metal3 +172200 96600 176400 100800 metal2 172200 96600 176400 100800 metal1 ) _386_ @@ -6376,11 +6258,17 @@ _386_ 54600 113400 58800 117600 metal1 54600 113400 58800 121800 metal2 54600 117600 58800 121800 metal2 -46200 117600 58800 121800 metal3 -46200 117600 50400 121800 metal3 -46200 84000 50400 121800 metal4 -46200 84000 50400 88200 metal4 -46200 84000 67200 88200 metal5 +42000 117600 58800 121800 metal3 +42000 117600 46200 121800 metal2 +42000 92400 46200 121800 metal2 +42000 92400 46200 96600 metal2 +42000 92400 58800 96600 metal3 +54600 92400 58800 96600 metal2 +54600 84000 58800 96600 metal2 +54600 84000 58800 88200 metal2 +54600 84000 58800 88200 metal3 +54600 84000 58800 88200 metal4 +54600 84000 67200 88200 metal5 63000 84000 67200 88200 metal4 63000 84000 67200 88200 metal3 63000 84000 67200 88200 metal2 @@ -6400,52 +6288,36 @@ _388_ 113400 172200 117600 176400 metal1 113400 172200 117600 201600 metal2 113400 197400 117600 201600 metal2 -113400 197400 147000 201600 metal3 -142800 197400 147000 201600 metal2 -142800 180600 147000 201600 metal2 -142800 180600 147000 184800 metal2 -142800 180600 168000 184800 metal3 -163800 180600 168000 184800 metal2 -163800 180600 168000 193200 metal2 -163800 189000 168000 193200 metal2 -163800 189000 180600 193200 metal3 -176400 189000 180600 193200 metal2 -176400 189000 180600 197400 metal2 -176400 193200 180600 197400 metal2 -176400 193200 193200 197400 metal3 -189000 193200 193200 197400 metal2 -189000 37800 193200 197400 metal2 -189000 37800 193200 42000 metal2 -130200 37800 193200 42000 metal3 -130200 37800 134400 42000 metal2 -130200 37800 134400 50400 metal2 -130200 46200 134400 50400 metal2 -126000 46200 134400 50400 metal3 -126000 46200 130200 50400 metal3 -126000 46200 130200 54600 metal4 -126000 50400 130200 54600 metal4 -117600 50400 130200 54600 metal5 -117600 50400 121800 54600 metal4 -117600 50400 121800 58800 metal4 -117600 54600 121800 58800 metal3 -117600 54600 121800 58800 metal2 -117600 54600 121800 67200 metal2 -117600 63000 121800 67200 metal2 -113400 63000 121800 67200 metal3 -113400 63000 117600 67200 metal3 -113400 63000 117600 71400 metal4 -113400 67200 117600 71400 metal3 -109200 67200 117600 71400 metal3 -109200 67200 113400 71400 metal3 -109200 67200 113400 71400 metal4 -109200 67200 113400 71400 metal5 -109200 67200 113400 84000 metal6 -109200 79800 113400 84000 metal5 -109200 79800 113400 84000 metal4 -109200 79800 113400 84000 metal3 -109200 79800 117600 84000 metal3 -113400 79800 117600 84000 metal3 -113400 79800 117600 88200 metal4 +113400 197400 138600 201600 metal3 +134400 197400 138600 201600 metal2 +134400 193200 138600 201600 metal2 +134400 193200 138600 197400 metal2 +134400 193200 184800 197400 metal3 +180600 193200 184800 197400 metal2 +180600 117600 184800 197400 metal2 +180600 117600 184800 121800 metal2 +180600 117600 193200 121800 metal3 +189000 117600 193200 121800 metal2 +189000 46200 193200 121800 metal2 +189000 46200 193200 50400 metal2 +134400 46200 193200 50400 metal3 +134400 46200 138600 50400 metal2 +134400 46200 138600 54600 metal2 +134400 50400 138600 54600 metal2 +126000 50400 138600 54600 metal3 +126000 50400 130200 54600 metal2 +126000 50400 130200 63000 metal2 +126000 58800 130200 63000 metal2 +121800 58800 130200 63000 metal3 +121800 58800 126000 63000 metal3 +121800 58800 126000 71400 metal4 +121800 67200 126000 71400 metal4 +117600 67200 126000 71400 metal5 +117600 67200 121800 71400 metal5 +117600 67200 121800 88200 metal6 +117600 84000 121800 88200 metal5 +113400 84000 121800 88200 metal5 +113400 84000 117600 88200 metal4 113400 84000 117600 88200 metal3 113400 84000 117600 88200 metal2 113400 84000 117600 88200 metal1 @@ -6456,24 +6328,17 @@ _389_ 21000 33600 25200 37800 metal2 21000 33600 25200 37800 metal3 21000 33600 25200 37800 metal4 -21000 33600 75600 37800 metal5 -71400 33600 75600 37800 metal4 -71400 33600 75600 37800 metal3 -71400 33600 75600 37800 metal2 -71400 33600 75600 42000 metal2 -71400 37800 75600 42000 metal2 -71400 37800 75600 42000 metal3 -71400 37800 75600 42000 metal4 -71400 37800 75600 42000 metal5 -71400 37800 75600 46200 metal6 -71400 42000 75600 46200 metal5 -71400 42000 75600 46200 metal4 -71400 42000 75600 46200 metal3 -71400 42000 79800 46200 metal3 -75600 42000 79800 46200 metal3 -75600 42000 79800 46200 metal4 -75600 42000 88200 46200 metal5 -84000 42000 88200 46200 metal4 +21000 33600 84000 37800 metal5 +79800 33600 84000 37800 metal4 +79800 33600 84000 37800 metal3 +79800 33600 84000 37800 metal2 +79800 33600 84000 42000 metal2 +79800 37800 84000 42000 metal2 +79800 37800 84000 42000 metal3 +79800 37800 84000 42000 metal4 +79800 37800 88200 42000 metal5 +84000 37800 88200 42000 metal4 +84000 37800 88200 46200 metal4 84000 42000 88200 46200 metal3 84000 42000 88200 46200 metal2 84000 42000 88200 46200 metal1 @@ -6488,11 +6353,15 @@ _391_ ( 113400 147000 117600 151200 metal1 113400 147000 117600 151200 metal2 -113400 147000 121800 151200 metal3 -117600 147000 121800 151200 metal2 -117600 147000 121800 155400 metal2 -117600 151200 121800 155400 metal2 -117600 151200 168000 155400 metal3 +113400 147000 126000 151200 metal3 +121800 147000 126000 151200 metal3 +121800 147000 126000 151200 metal4 +121800 147000 126000 151200 metal5 +121800 147000 126000 155400 metal6 +121800 151200 126000 155400 metal5 +121800 151200 168000 155400 metal5 +163800 151200 168000 155400 metal4 +163800 151200 168000 155400 metal3 163800 151200 168000 155400 metal2 163800 151200 168000 155400 metal1 ) @@ -6501,13 +6370,11 @@ _392_ 42000 172200 46200 176400 metal1 42000 172200 46200 176400 metal2 42000 172200 46200 176400 metal3 -42000 138600 46200 176400 metal4 -42000 138600 46200 142800 metal4 -21000 138600 46200 142800 metal5 -21000 138600 25200 142800 metal5 -21000 50400 25200 142800 metal6 -21000 50400 25200 54600 metal5 -21000 50400 67200 54600 metal5 +42000 172200 46200 176400 metal4 +42000 172200 46200 176400 metal5 +42000 50400 46200 176400 metal6 +42000 50400 46200 54600 metal5 +42000 50400 67200 54600 metal5 63000 50400 67200 54600 metal4 63000 50400 67200 54600 metal3 63000 50400 67200 54600 metal2 @@ -6516,31 +6383,26 @@ _392_ _393_ ( 113400 134400 117600 138600 metal1 -113400 134400 117600 138600 metal2 -113400 134400 117600 138600 metal3 -113400 134400 117600 176400 metal4 -113400 172200 117600 176400 metal3 -113400 172200 121800 176400 metal3 -117600 172200 121800 176400 metal2 +113400 134400 117600 172200 metal2 +113400 168000 117600 172200 metal2 +113400 168000 121800 172200 metal3 +117600 168000 121800 172200 metal2 +117600 168000 121800 176400 metal2 117600 172200 121800 176400 metal1 ) _394_ ( 21000 168000 25200 172200 metal1 21000 168000 25200 172200 metal2 -21000 168000 42000 172200 metal3 -37800 168000 42000 172200 metal3 -37800 151200 42000 172200 metal4 -37800 151200 42000 155400 metal4 -37800 151200 113400 155400 metal5 -109200 151200 113400 155400 metal4 -109200 151200 113400 155400 metal3 -109200 151200 121800 155400 metal3 +21000 168000 63000 172200 metal3 +58800 168000 63000 172200 metal2 +58800 151200 63000 172200 metal2 +58800 151200 63000 155400 metal2 +58800 151200 121800 155400 metal3 117600 151200 121800 155400 metal3 -117600 147000 121800 155400 metal4 -117600 147000 121800 151200 metal3 -117600 147000 121800 151200 metal2 -117600 142800 121800 151200 metal2 +117600 142800 121800 155400 metal4 +117600 142800 121800 147000 metal3 +117600 142800 121800 147000 metal2 117600 142800 121800 147000 metal1 ) _395_ @@ -6558,9 +6420,13 @@ _396_ ( 155400 96600 159600 100800 metal1 155400 96600 159600 100800 metal2 -155400 96600 168000 100800 metal3 -163800 96600 168000 100800 metal3 -163800 25200 168000 100800 metal4 +155400 96600 159600 100800 metal3 +155400 96600 159600 100800 metal4 +155400 96600 168000 100800 metal5 +163800 96600 168000 100800 metal5 +163800 25200 168000 100800 metal6 +163800 25200 168000 29400 metal5 +163800 25200 168000 29400 metal4 163800 25200 168000 29400 metal3 163800 25200 168000 29400 metal2 163800 25200 168000 29400 metal1 @@ -6571,44 +6437,24 @@ _397_ 21000 63000 25200 67200 metal2 21000 63000 29400 67200 metal3 25200 63000 29400 67200 metal2 -25200 16800 29400 67200 metal2 -25200 16800 29400 21000 metal2 -25200 16800 37800 21000 metal3 -33600 16800 37800 21000 metal3 -33600 8400 37800 21000 metal4 -33600 8400 37800 12600 metal4 -33600 8400 67200 12600 metal5 -63000 8400 67200 12600 metal4 -63000 0 67200 12600 metal4 -63000 0 67200 4200 metal3 -63000 0 113400 4200 metal3 -109200 0 113400 4200 metal2 -109200 0 113400 8400 metal2 -109200 4200 113400 8400 metal2 -109200 4200 117600 8400 metal3 -113400 4200 117600 8400 metal3 -113400 4200 117600 42000 metal4 -113400 37800 117600 42000 metal3 -113400 37800 126000 42000 metal3 -121800 37800 126000 42000 metal3 -121800 37800 126000 71400 metal4 -121800 67200 126000 71400 metal3 -121800 67200 126000 71400 metal2 -121800 67200 126000 75600 metal2 -121800 71400 126000 75600 metal2 -117600 71400 126000 75600 metal3 -117600 71400 121800 75600 metal3 -117600 71400 121800 75600 metal4 -117600 71400 121800 75600 metal5 -117600 71400 121800 79800 metal6 -117600 75600 121800 79800 metal5 +25200 42000 29400 67200 metal2 +25200 42000 29400 46200 metal2 +25200 42000 54600 46200 metal3 +50400 42000 54600 46200 metal3 +50400 12600 54600 46200 metal4 +50400 12600 54600 16800 metal4 +50400 12600 126000 16800 metal5 +121800 12600 126000 16800 metal5 +121800 12600 126000 79800 metal6 +121800 75600 126000 79800 metal5 +117600 75600 126000 79800 metal5 117600 75600 121800 79800 metal4 -117600 75600 121800 79800 metal3 -117600 75600 121800 79800 metal2 -117600 75600 121800 84000 metal2 -117600 79800 121800 84000 metal2 -117600 79800 121800 84000 metal3 -117600 79800 121800 92400 metal4 +117600 75600 121800 88200 metal4 +117600 84000 121800 88200 metal4 +117600 84000 121800 88200 metal5 +117600 84000 121800 92400 metal6 +117600 88200 121800 92400 metal5 +117600 88200 121800 92400 metal4 117600 88200 121800 92400 metal3 117600 88200 121800 92400 metal2 117600 88200 121800 92400 metal1 @@ -6619,11 +6465,14 @@ _398_ 142800 117600 147000 121800 metal2 142800 117600 147000 121800 metal3 142800 117600 147000 121800 metal4 -142800 117600 159600 121800 metal5 -155400 117600 159600 121800 metal4 -155400 117600 159600 134400 metal4 -155400 130200 159600 134400 metal3 -155400 130200 176400 134400 metal3 +142800 117600 155400 121800 metal5 +151200 117600 155400 121800 metal5 +151200 117600 155400 130200 metal6 +151200 126000 155400 130200 metal5 +151200 126000 176400 130200 metal5 +172200 126000 176400 130200 metal4 +172200 126000 176400 134400 metal4 +172200 130200 176400 134400 metal3 172200 130200 176400 134400 metal2 172200 130200 176400 134400 metal1 ) @@ -6650,107 +6499,82 @@ _400_ ) _401_ ( +79800 100800 84000 105000 metal1 +79800 100800 84000 105000 metal2 +79800 100800 84000 105000 metal3 +79800 100800 84000 105000 metal4 +79800 100800 84000 105000 metal5 +79800 100800 84000 130200 metal6 +79800 126000 84000 130200 metal5 +50400 126000 84000 130200 metal5 +50400 126000 54600 130200 metal4 +50400 100800 54600 130200 metal4 +50400 46200 54600 75600 metal2 +50400 46200 54600 50400 metal2 +50400 46200 63000 50400 metal3 +58800 46200 63000 50400 metal3 +58800 21000 63000 50400 metal4 +58800 21000 63000 25200 metal4 +58800 21000 75600 25200 metal5 109200 63000 117600 67200 metal5 113400 63000 117600 67200 metal4 113400 63000 117600 67200 metal3 113400 63000 117600 67200 metal2 113400 63000 117600 67200 metal1 -71400 12600 75600 25200 metal4 -71400 21000 75600 25200 metal4 -71400 21000 75600 25200 metal5 -71400 21000 75600 42000 metal6 -71400 37800 75600 42000 metal5 -71400 37800 75600 42000 metal4 -71400 37800 75600 42000 metal3 -71400 37800 75600 42000 metal2 71400 37800 75600 42000 metal1 -71400 12600 75600 16800 metal4 -50400 12600 75600 16800 metal5 -50400 12600 54600 16800 metal4 -50400 12600 54600 75600 metal4 -50400 71400 54600 75600 metal3 -109200 63000 113400 67200 metal3 -109200 63000 113400 67200 metal4 -109200 63000 113400 67200 metal5 -109200 37800 113400 67200 metal6 -109200 37800 113400 42000 metal5 -109200 37800 113400 42000 metal4 -109200 33600 113400 42000 metal4 -109200 33600 113400 37800 metal3 -109200 33600 113400 37800 metal2 -109200 33600 113400 37800 metal1 -92400 88200 96600 92400 metal4 -92400 88200 109200 92400 metal5 -84000 88200 96600 92400 metal5 -84000 88200 88200 92400 metal5 -84000 88200 88200 96600 metal6 -84000 92400 88200 96600 metal5 -79800 92400 88200 96600 metal5 -79800 92400 84000 96600 metal4 -79800 92400 84000 100800 metal4 -79800 96600 84000 100800 metal3 -79800 96600 84000 100800 metal2 -79800 96600 84000 105000 metal2 -79800 100800 84000 105000 metal1 -50400 71400 58800 75600 metal3 -54600 71400 58800 75600 metal3 -54600 71400 58800 75600 metal4 -54600 71400 58800 75600 metal5 -54600 71400 58800 84000 metal6 -54600 79800 58800 84000 metal5 -54600 79800 58800 84000 metal4 -54600 79800 58800 84000 metal3 -54600 79800 58800 84000 metal2 -54600 79800 58800 84000 metal1 -105000 63000 113400 67200 metal3 -105000 63000 109200 67200 metal1 -105000 63000 109200 67200 metal2 -105000 63000 109200 67200 metal3 -105000 63000 109200 71400 metal4 -105000 67200 109200 71400 metal3 -105000 67200 109200 71400 metal2 -105000 67200 109200 79800 metal2 -105000 75600 109200 79800 metal2 -105000 75600 109200 79800 metal3 -105000 75600 109200 79800 metal4 -105000 75600 109200 79800 metal5 -105000 75600 109200 92400 metal6 -105000 88200 109200 92400 metal5 -71400 37800 75600 46200 metal4 -71400 42000 75600 46200 metal3 -71400 42000 75600 46200 metal2 -71400 42000 75600 54600 metal2 -71400 50400 75600 54600 metal2 -71400 50400 75600 54600 metal3 -71400 50400 75600 54600 metal4 -71400 50400 75600 54600 metal5 -71400 50400 75600 63000 metal6 -71400 58800 75600 63000 metal5 -71400 58800 75600 63000 metal4 -71400 58800 75600 63000 metal3 -71400 58800 84000 63000 metal3 -79800 58800 84000 63000 metal2 -79800 58800 84000 67200 metal2 -79800 63000 84000 67200 metal1 -50400 96600 54600 105000 metal2 -50400 96600 54600 100800 metal2 -46200 96600 54600 100800 metal3 -46200 96600 50400 100800 metal2 -46200 71400 50400 100800 metal2 -46200 71400 50400 75600 metal2 -46200 71400 54600 75600 metal3 -92400 84000 96600 92400 metal4 -92400 84000 96600 88200 metal3 -92400 84000 96600 88200 metal2 -92400 84000 96600 88200 metal1 -105000 88200 113400 92400 metal5 -109200 88200 113400 92400 metal5 -109200 88200 113400 100800 metal6 -109200 96600 113400 100800 metal5 -109200 96600 113400 100800 metal4 -109200 96600 113400 100800 metal3 -109200 96600 113400 100800 metal2 +71400 37800 75600 42000 metal2 +71400 37800 75600 42000 metal3 +71400 37800 75600 42000 metal4 +71400 37800 75600 42000 metal5 +71400 37800 75600 58800 metal6 +71400 54600 75600 58800 metal5 +71400 54600 84000 58800 metal5 +79800 54600 84000 58800 metal4 +79800 54600 84000 67200 metal4 +79800 63000 84000 67200 metal3 +79800 63000 84000 67200 metal2 +79800 63000 84000 67200 metal1 +109200 63000 113400 67200 metal5 +109200 33600 113400 67200 metal6 +109200 33600 113400 37800 metal5 +109200 33600 113400 37800 metal4 +109200 33600 113400 37800 metal3 +109200 33600 113400 37800 metal2 +109200 33600 113400 37800 metal1 +105000 63000 113400 67200 metal5 +105000 63000 109200 67200 metal4 +105000 63000 109200 67200 metal3 +105000 63000 109200 67200 metal2 +105000 63000 109200 67200 metal1 +92400 92400 96600 96600 metal4 +92400 92400 100800 96600 metal5 +96600 92400 100800 96600 metal4 +96600 88200 100800 96600 metal4 +96600 88200 100800 92400 metal4 +96600 88200 113400 92400 metal5 +109200 88200 113400 92400 metal4 +109200 88200 113400 92400 metal3 +109200 88200 113400 92400 metal2 +109200 88200 113400 100800 metal2 109200 96600 113400 100800 metal1 +79800 92400 84000 105000 metal6 +79800 92400 84000 96600 metal5 +79800 92400 96600 96600 metal5 +50400 71400 54600 75600 metal2 +50400 71400 58800 75600 metal3 +54600 71400 58800 75600 metal2 +54600 71400 58800 79800 metal2 +54600 75600 58800 79800 metal2 +54600 75600 58800 79800 metal3 +54600 75600 58800 84000 metal4 +54600 79800 58800 84000 metal3 +54600 79800 58800 84000 metal2 +54600 79800 58800 84000 metal1 +71400 21000 75600 42000 metal6 +71400 21000 75600 25200 metal5 +71400 21000 75600 25200 metal4 +71400 21000 75600 25200 metal3 +71400 21000 75600 25200 metal2 50400 100800 54600 105000 metal1 50400 100800 54600 105000 metal2 50400 100800 54600 105000 metal3 @@ -6760,47 +6584,51 @@ _401_ 54600 100800 58800 105000 metal3 54600 100800 58800 105000 metal2 54600 100800 58800 105000 metal1 -109200 21000 113400 37800 metal2 -109200 21000 113400 25200 metal2 -105000 21000 113400 25200 metal3 -105000 21000 109200 25200 metal2 -105000 12600 109200 25200 metal2 -105000 12600 109200 16800 metal2 -105000 12600 109200 16800 metal3 -105000 12600 109200 16800 metal4 -71400 12600 109200 16800 metal5 +50400 96600 54600 105000 metal2 +50400 96600 54600 100800 metal2 +46200 96600 54600 100800 metal3 +46200 96600 50400 100800 metal2 +46200 71400 50400 100800 metal2 +46200 71400 50400 75600 metal2 +46200 71400 54600 75600 metal3 +71400 16800 75600 25200 metal2 +71400 16800 75600 21000 metal2 +71400 16800 113400 21000 metal3 +109200 16800 113400 21000 metal2 +109200 16800 113400 37800 metal2 +92400 84000 96600 96600 metal4 +92400 84000 96600 88200 metal3 +92400 84000 96600 88200 metal2 +92400 84000 96600 88200 metal1 ) _402_ ( -75600 130200 84000 134400 metal3 -79800 130200 84000 134400 metal2 +75600 134400 84000 138600 metal3 +79800 134400 84000 138600 metal2 +79800 130200 84000 138600 metal2 79800 130200 84000 134400 metal1 67200 113400 71400 117600 metal1 67200 113400 71400 117600 metal2 67200 113400 71400 117600 metal3 67200 113400 71400 117600 metal4 67200 113400 71400 117600 metal5 -67200 113400 71400 142800 metal6 -67200 138600 71400 142800 metal5 -67200 138600 79800 142800 metal5 -75600 138600 79800 142800 metal4 -75600 130200 79800 142800 metal4 -75600 130200 79800 134400 metal3 -75600 130200 79800 134400 metal2 -75600 121800 79800 134400 metal2 +67200 113400 71400 138600 metal6 +67200 134400 71400 138600 metal5 +67200 134400 79800 138600 metal5 +75600 134400 79800 138600 metal4 +75600 134400 79800 138600 metal3 +75600 134400 79800 138600 metal2 +75600 121800 79800 138600 metal2 75600 121800 79800 126000 metal1 ) _403_ ( +63000 113400 71400 117600 metal3 +67200 113400 71400 117600 metal2 +67200 113400 71400 117600 metal1 63000 113400 67200 117600 metal1 63000 113400 67200 117600 metal2 63000 113400 67200 117600 metal3 -63000 113400 67200 117600 metal4 -63000 113400 71400 117600 metal5 -67200 113400 71400 117600 metal4 -67200 113400 71400 117600 metal3 -67200 113400 71400 117600 metal2 -67200 113400 71400 117600 metal1 63000 113400 67200 121800 metal4 63000 117600 67200 121800 metal3 63000 117600 67200 121800 metal2 @@ -6815,21 +6643,19 @@ _403_ ) _404_ ( -105000 130200 109200 138600 metal2 -105000 130200 109200 134400 metal2 -105000 130200 113400 134400 metal3 -109200 130200 113400 134400 metal2 -109200 121800 113400 134400 metal2 -109200 121800 113400 126000 metal2 -109200 121800 113400 126000 metal3 -109200 109200 113400 126000 metal4 -109200 109200 113400 113400 metal3 -100800 109200 113400 113400 metal3 -100800 109200 105000 113400 metal3 -100800 105000 105000 113400 metal4 -100800 105000 105000 109200 metal3 -100800 105000 105000 109200 metal2 +100800 105000 109200 109200 metal3 +105000 105000 109200 109200 metal3 +105000 105000 109200 109200 metal4 +105000 105000 109200 109200 metal5 +105000 105000 109200 138600 metal6 +105000 134400 109200 138600 metal5 +105000 134400 109200 138600 metal4 +105000 134400 109200 138600 metal3 +105000 134400 109200 138600 metal2 +105000 134400 109200 138600 metal1 100800 105000 105000 109200 metal1 +100800 105000 105000 109200 metal2 +100800 105000 105000 109200 metal3 100800 100800 105000 109200 metal4 100800 100800 105000 105000 metal3 100800 100800 105000 105000 metal2 @@ -6837,18 +6663,15 @@ _404_ 92400 134400 96600 138600 metal1 92400 134400 96600 138600 metal2 92400 134400 96600 138600 metal3 -92400 134400 96600 138600 metal4 -92400 134400 109200 138600 metal5 -105000 134400 109200 138600 metal4 -105000 134400 109200 138600 metal3 -105000 134400 109200 138600 metal2 -105000 134400 109200 138600 metal1 +92400 134400 96600 147000 metal4 +92400 142800 96600 147000 metal4 +92400 142800 109200 147000 metal5 +105000 142800 109200 147000 metal5 +105000 134400 109200 147000 metal6 ) _405_ ( -67200 67200 71400 75600 metal4 -67200 67200 71400 71400 metal3 -67200 67200 71400 71400 metal2 +67200 67200 71400 75600 metal2 67200 67200 71400 71400 metal1 46200 75600 50400 79800 metal1 46200 75600 50400 79800 metal2 @@ -6858,25 +6681,26 @@ _405_ 54600 71400 58800 75600 metal4 54600 71400 71400 75600 metal5 67200 71400 71400 75600 metal4 -67200 71400 75600 75600 metal5 -71400 71400 75600 75600 metal4 -71400 71400 75600 75600 metal3 +67200 71400 71400 75600 metal3 +67200 71400 71400 75600 metal2 +67200 71400 75600 75600 metal3 71400 71400 75600 75600 metal2 71400 71400 75600 75600 metal1 ) _406_ ( -117600 71400 121800 84000 metal4 -117600 79800 121800 84000 metal3 -117600 79800 121800 84000 metal2 +113400 71400 117600 79800 metal4 +113400 75600 117600 79800 metal3 +113400 75600 121800 79800 metal3 +117600 75600 121800 79800 metal2 +117600 75600 121800 84000 metal2 117600 79800 121800 84000 metal1 -117600 71400 121800 75600 metal4 -117600 71400 121800 75600 metal5 -117600 67200 121800 75600 metal6 -117600 67200 121800 71400 metal5 -117600 67200 130200 71400 metal5 -126000 67200 130200 71400 metal4 -126000 67200 130200 71400 metal3 +113400 71400 117600 75600 metal4 +113400 71400 126000 75600 metal5 +121800 71400 126000 75600 metal4 +121800 67200 126000 75600 metal4 +121800 67200 126000 71400 metal3 +121800 67200 130200 71400 metal3 126000 67200 130200 71400 metal2 126000 67200 130200 71400 metal1 100800 71400 105000 75600 metal1 @@ -6884,7 +6708,7 @@ _406_ 100800 71400 109200 75600 metal3 105000 71400 109200 75600 metal3 105000 71400 109200 75600 metal4 -105000 71400 121800 75600 metal5 +105000 71400 117600 75600 metal5 ) _407_ ( @@ -6906,21 +6730,14 @@ _408_ 92400 33600 96600 37800 metal1 92400 33600 96600 37800 metal2 92400 33600 100800 37800 metal3 +96600 33600 100800 37800 metal2 96600 25200 100800 37800 metal2 96600 25200 100800 29400 metal2 96600 25200 105000 29400 metal3 100800 25200 105000 29400 metal2 100800 25200 105000 29400 metal1 96600 37800 100800 42000 metal1 -96600 37800 100800 42000 metal2 -96600 37800 100800 42000 metal3 -96600 37800 100800 42000 metal4 -96600 37800 100800 42000 metal5 -96600 33600 100800 42000 metal6 -96600 33600 100800 37800 metal5 -96600 33600 100800 37800 metal4 -96600 33600 100800 37800 metal3 -96600 33600 100800 37800 metal2 +96600 33600 100800 42000 metal2 ) _409_ ( @@ -6931,26 +6748,31 @@ _409_ 75600 42000 79800 46200 metal5 75600 4200 79800 46200 metal6 75600 4200 79800 8400 metal5 -75600 4200 126000 8400 metal5 -121800 4200 126000 8400 metal4 -121800 4200 126000 42000 metal4 -121800 37800 126000 42000 metal3 -121800 37800 130200 42000 metal3 +75600 4200 117600 8400 metal5 +113400 4200 117600 8400 metal4 +113400 4200 117600 42000 metal4 +113400 37800 117600 42000 metal3 +113400 37800 130200 42000 metal3 126000 37800 130200 42000 metal2 126000 37800 130200 42000 metal1 -75600 42000 88200 46200 metal3 +75600 42000 88200 46200 metal5 +84000 42000 88200 46200 metal4 +84000 42000 88200 46200 metal3 84000 42000 88200 46200 metal2 84000 42000 88200 46200 metal1 ) _410_ ( -92400 58800 96600 63000 metal5 -92400 58800 96600 71400 metal6 -92400 67200 96600 71400 metal5 -92400 67200 96600 71400 metal4 -92400 67200 96600 79800 metal4 -92400 75600 96600 79800 metal4 -92400 75600 100800 79800 metal5 +88200 50400 92400 54600 metal4 +88200 50400 96600 54600 metal5 +92400 50400 96600 54600 metal4 +92400 50400 96600 54600 metal3 +92400 50400 100800 54600 metal3 +96600 50400 100800 54600 metal3 +96600 50400 100800 54600 metal4 +96600 50400 100800 54600 metal5 +96600 50400 100800 79800 metal6 +96600 75600 100800 79800 metal5 96600 75600 100800 79800 metal4 96600 75600 100800 79800 metal3 96600 75600 100800 79800 metal2 @@ -6962,18 +6784,11 @@ _410_ 84000 37800 88200 42000 metal4 84000 37800 92400 42000 metal5 88200 37800 92400 42000 metal4 -88200 37800 92400 46200 metal4 -88200 42000 92400 46200 metal3 -88200 42000 96600 46200 metal3 -92400 42000 96600 46200 metal3 -92400 42000 96600 46200 metal4 -92400 42000 96600 46200 metal5 -92400 42000 96600 63000 metal6 +88200 37800 92400 54600 metal4 88200 58800 92400 63000 metal1 88200 58800 92400 63000 metal2 88200 58800 92400 63000 metal3 -88200 58800 92400 63000 metal4 -88200 58800 96600 63000 metal5 +88200 50400 92400 63000 metal4 ) _411_ ( @@ -6987,11 +6802,12 @@ _411_ 100800 121800 105000 126000 metal2 100800 121800 105000 126000 metal1 88200 138600 92400 142800 metal1 -88200 138600 92400 172200 metal2 -88200 168000 92400 172200 metal2 -88200 168000 100800 172200 metal3 -96600 168000 100800 172200 metal3 -96600 130200 100800 172200 metal4 +88200 138600 92400 142800 metal2 +88200 138600 92400 142800 metal3 +88200 138600 92400 142800 metal4 +88200 138600 100800 142800 metal5 +96600 138600 100800 142800 metal4 +96600 130200 100800 142800 metal4 96600 130200 100800 134400 metal3 96600 130200 100800 134400 metal2 96600 130200 100800 134400 metal1 @@ -7004,13 +6820,10 @@ _412_ 105000 126000 109200 130200 metal2 105000 126000 109200 130200 metal1 79800 130200 84000 134400 metal1 -79800 126000 84000 134400 metal2 -79800 126000 84000 130200 metal2 -79800 126000 88200 130200 metal3 -84000 126000 88200 130200 metal3 -84000 126000 88200 134400 metal4 -84000 130200 88200 134400 metal4 -84000 130200 105000 134400 metal5 +79800 130200 84000 134400 metal2 +79800 130200 84000 134400 metal3 +79800 130200 84000 134400 metal4 +79800 130200 105000 134400 metal5 100800 130200 105000 134400 metal4 100800 130200 105000 134400 metal3 100800 130200 105000 134400 metal2 @@ -7018,21 +6831,22 @@ _412_ ) _413_ ( -130200 126000 134400 134400 metal2 +130200 126000 134400 134400 metal4 +130200 130200 134400 134400 metal3 +130200 130200 134400 134400 metal2 130200 130200 134400 134400 metal1 -130200 126000 134400 130200 metal2 -130200 126000 134400 130200 metal3 130200 126000 134400 130200 metal4 -130200 126000 147000 130200 metal5 -142800 126000 147000 130200 metal4 -142800 121800 147000 130200 metal4 -142800 121800 147000 126000 metal3 -142800 121800 155400 126000 metal3 +130200 126000 155400 130200 metal5 +151200 126000 155400 130200 metal4 +151200 121800 155400 130200 metal4 +151200 121800 155400 126000 metal3 151200 121800 155400 126000 metal2 151200 121800 155400 126000 metal1 121800 126000 126000 130200 metal1 121800 126000 126000 130200 metal2 -121800 126000 134400 130200 metal3 +121800 126000 126000 130200 metal3 +121800 126000 126000 130200 metal4 +121800 126000 134400 130200 metal5 ) _414_ ( @@ -7051,30 +6865,28 @@ _414_ ) _415_ ( -142800 105000 147000 109200 metal3 -142800 105000 147000 109200 metal4 -142800 105000 147000 109200 metal5 -142800 105000 147000 113400 metal6 -142800 109200 147000 113400 metal5 -142800 109200 147000 113400 metal4 -142800 109200 147000 113400 metal3 -142800 109200 147000 113400 metal2 142800 109200 147000 113400 metal1 -142800 105000 151200 109200 metal3 -147000 105000 151200 109200 metal3 -147000 105000 151200 109200 metal4 -147000 105000 163800 109200 metal5 -159600 105000 163800 109200 metal4 -159600 92400 163800 109200 metal4 +142800 100800 147000 113400 metal2 +142800 100800 147000 105000 metal2 +142800 100800 147000 105000 metal3 +142800 100800 147000 105000 metal4 +142800 100800 151200 105000 metal5 +147000 100800 151200 105000 metal4 +147000 96600 151200 105000 metal4 +147000 96600 151200 100800 metal4 +147000 96600 159600 100800 metal5 +155400 96600 159600 100800 metal5 +155400 92400 159600 100800 metal6 +155400 92400 159600 96600 metal5 +155400 92400 163800 96600 metal5 +159600 92400 163800 96600 metal4 159600 92400 163800 96600 metal3 159600 92400 163800 96600 metal2 159600 92400 163800 96600 metal1 -142800 96600 147000 100800 metal1 -142800 96600 147000 100800 metal2 +142800 96600 147000 105000 metal4 142800 96600 147000 100800 metal3 -142800 96600 147000 100800 metal4 -142800 96600 147000 100800 metal5 -142800 96600 147000 109200 metal6 +142800 96600 147000 100800 metal2 +142800 96600 147000 100800 metal1 ) _416_ ( @@ -7116,16 +6928,16 @@ _418_ ( 75600 92400 79800 96600 metal1 75600 92400 79800 100800 metal2 -75600 96600 79800 100800 metal1 67200 105000 71400 109200 metal1 67200 105000 71400 109200 metal2 -67200 105000 75600 109200 metal3 -71400 105000 75600 109200 metal2 -71400 100800 75600 109200 metal2 -71400 100800 75600 105000 metal2 -71400 100800 79800 105000 metal3 -75600 100800 79800 105000 metal2 -75600 96600 79800 105000 metal2 +67200 105000 71400 109200 metal3 +67200 105000 71400 109200 metal4 +67200 105000 79800 109200 metal5 +75600 105000 79800 109200 metal4 +75600 96600 79800 109200 metal4 +75600 96600 79800 100800 metal3 +75600 96600 79800 100800 metal2 +75600 96600 79800 100800 metal1 ) _419_ ( @@ -7159,39 +6971,39 @@ _420_ ) _421_ ( +58800 121800 63000 126000 metal4 58800 121800 67200 126000 metal5 63000 121800 67200 126000 metal4 63000 121800 67200 126000 metal3 63000 121800 67200 126000 metal2 63000 121800 67200 126000 metal1 -37800 121800 63000 126000 metal5 -37800 121800 42000 126000 metal4 -37800 84000 42000 126000 metal4 -37800 84000 42000 88200 metal3 -37800 84000 50400 88200 metal3 -46200 84000 50400 88200 metal3 -46200 58800 50400 88200 metal4 -46200 58800 50400 63000 metal4 -46200 58800 67200 63000 metal5 -63000 58800 67200 63000 metal4 -63000 54600 67200 63000 metal4 -63000 54600 67200 58800 metal3 -63000 54600 75600 58800 metal3 +46200 121800 63000 126000 metal5 +46200 121800 50400 126000 metal4 +46200 54600 50400 126000 metal4 +46200 54600 50400 58800 metal3 +46200 54600 75600 58800 metal3 71400 54600 75600 58800 metal2 71400 54600 75600 58800 metal1 -58800 121800 63000 126000 metal5 -58800 105000 63000 126000 metal6 -58800 105000 63000 109200 metal5 -58800 105000 67200 109200 metal5 -63000 105000 67200 109200 metal5 -63000 105000 67200 113400 metal6 -63000 109200 67200 113400 metal5 -63000 109200 71400 113400 metal5 -67200 109200 71400 113400 metal1 -67200 109200 71400 113400 metal2 -67200 109200 71400 113400 metal3 -67200 109200 71400 113400 metal4 +58800 113400 63000 126000 metal4 +58800 113400 63000 117600 metal3 +58800 113400 63000 117600 metal2 +58800 109200 63000 117600 metal2 +58800 109200 63000 113400 metal2 +58800 109200 67200 113400 metal3 +63000 109200 67200 113400 metal2 +63000 100800 67200 113400 metal2 +63000 100800 67200 105000 metal2 +63000 100800 71400 105000 metal3 +67200 100800 71400 105000 metal3 +67200 100800 71400 109200 metal4 +67200 105000 71400 109200 metal4 +67200 105000 71400 109200 metal5 +67200 105000 71400 113400 metal6 67200 109200 71400 113400 metal5 +67200 109200 71400 113400 metal4 +67200 109200 71400 113400 metal3 +67200 109200 71400 113400 metal2 +67200 109200 71400 113400 metal1 67200 109200 71400 117600 metal6 67200 113400 71400 117600 metal5 67200 113400 71400 117600 metal4 @@ -7206,34 +7018,34 @@ clk 54600 117600 58800 121800 metal2 54600 117600 58800 121800 metal3 54600 105000 58800 121800 metal4 -88200 130200 92400 134400 metal3 -88200 126000 92400 134400 metal4 -88200 126000 92400 130200 metal3 -84000 126000 92400 130200 metal3 -84000 126000 88200 130200 metal2 -84000 121800 88200 130200 metal2 -84000 121800 88200 126000 metal2 -84000 121800 92400 126000 metal3 -88200 121800 92400 126000 metal2 +54600 105000 58800 109200 metal3 +54600 105000 58800 109200 metal2 +54600 105000 58800 109200 metal1 88200 121800 92400 126000 metal1 -92400 180600 96600 201600 metal6 -92400 180600 96600 184800 metal5 -92400 180600 96600 184800 metal4 -92400 180600 96600 184800 metal3 -130200 147000 134400 151200 metal1 -130200 147000 134400 151200 metal2 -130200 147000 134400 151200 metal3 +88200 121800 92400 126000 metal2 +88200 121800 92400 126000 metal3 +88200 121800 92400 130200 metal4 +88200 126000 92400 130200 metal3 +92400 184800 96600 201600 metal6 +92400 184800 96600 189000 metal5 +92400 184800 96600 189000 metal4 +105000 147000 134400 151200 metal5 130200 147000 134400 151200 metal4 -130200 147000 155400 151200 metal5 -151200 147000 155400 151200 metal4 -151200 130200 155400 151200 metal4 -151200 130200 155400 134400 metal3 -151200 130200 155400 134400 metal2 -151200 130200 155400 134400 metal1 +130200 147000 134400 151200 metal3 +130200 147000 134400 151200 metal2 +130200 147000 134400 151200 metal1 84000 130200 88200 134400 metal1 84000 130200 88200 134400 metal2 -84000 130200 92400 134400 metal3 +79800 130200 88200 134400 metal3 +79800 130200 84000 134400 metal3 +79800 126000 84000 134400 metal4 +79800 126000 84000 130200 metal3 +79800 126000 92400 130200 metal3 92400 147000 105000 151200 metal3 +100800 147000 105000 151200 metal2 +100800 147000 105000 151200 metal1 +105000 147000 109200 151200 metal3 +105000 147000 109200 151200 metal4 105000 147000 109200 151200 metal5 105000 142800 109200 151200 metal6 105000 142800 109200 147000 metal5 @@ -7241,34 +7053,27 @@ clk 105000 142800 109200 147000 metal3 105000 142800 109200 147000 metal2 105000 142800 109200 147000 metal1 -126000 147000 130200 151200 metal5 -126000 138600 130200 151200 metal6 -126000 138600 130200 142800 metal5 -126000 138600 134400 142800 metal5 -130200 138600 134400 142800 metal4 -130200 134400 134400 142800 metal4 -130200 134400 134400 138600 metal4 -130200 134400 138600 138600 metal5 -134400 134400 138600 138600 metal5 -134400 130200 138600 138600 metal6 -134400 130200 138600 134400 metal5 -134400 130200 138600 134400 metal4 -134400 130200 138600 134400 metal3 -134400 130200 138600 134400 metal2 -134400 130200 138600 134400 metal1 +151200 105000 155400 109200 metal4 +151200 105000 155400 109200 metal5 +151200 84000 155400 109200 metal6 +151200 84000 155400 88200 metal5 +151200 84000 155400 88200 metal4 +151200 84000 155400 88200 metal3 +151200 84000 155400 88200 metal2 +151200 84000 155400 88200 metal1 151200 117600 155400 134400 metal2 121800 63000 126000 67200 metal1 121800 63000 126000 67200 metal2 121800 63000 130200 67200 metal3 130200 121800 134400 126000 metal1 -130200 121800 134400 126000 metal2 -130200 121800 138600 126000 metal3 +130200 121800 134400 134400 metal2 50400 92400 54600 96600 metal1 50400 92400 54600 96600 metal2 50400 92400 54600 96600 metal3 50400 92400 54600 100800 metal4 50400 96600 54600 100800 metal4 50400 96600 58800 100800 metal5 +54600 96600 58800 100800 metal4 50400 84000 54600 88200 metal1 50400 84000 54600 88200 metal2 50400 84000 54600 88200 metal3 @@ -7281,188 +7086,178 @@ clk 54600 71400 58800 75600 metal3 54600 71400 58800 75600 metal2 54600 71400 58800 75600 metal1 -109200 67200 113400 79800 metal4 -109200 75600 113400 79800 metal4 -105000 75600 113400 79800 metal5 -105000 75600 109200 79800 metal4 -105000 75600 109200 79800 metal3 -105000 75600 109200 79800 metal2 -105000 75600 109200 79800 metal1 -54600 67200 58800 75600 metal4 -54600 67200 58800 71400 metal3 -54600 67200 58800 71400 metal2 -54600 63000 58800 71400 metal2 -54600 63000 58800 67200 metal2 +117600 50400 126000 54600 metal3 +121800 50400 126000 54600 metal2 +134400 67200 138600 71400 metal1 +134400 67200 138600 71400 metal2 +134400 67200 138600 71400 metal3 +134400 67200 138600 75600 metal4 +134400 71400 138600 75600 metal4 +134400 71400 151200 75600 metal5 +147000 71400 151200 75600 metal4 +147000 71400 151200 79800 metal4 +147000 75600 151200 79800 metal3 +147000 75600 155400 79800 metal3 +151200 75600 155400 79800 metal2 +151200 75600 155400 79800 metal1 +117600 46200 121800 54600 metal2 +117600 46200 121800 50400 metal1 +75600 33600 79800 37800 metal1 +75600 33600 79800 37800 metal2 +75600 33600 79800 37800 metal3 +75600 29400 79800 37800 metal4 +75600 29400 79800 33600 metal4 +75600 29400 92400 33600 metal5 +88200 29400 92400 33600 metal4 +88200 29400 92400 33600 metal3 +88200 29400 92400 33600 metal2 +88200 29400 92400 33600 metal1 +71400 50400 75600 54600 metal1 +71400 50400 75600 54600 metal2 +71400 50400 75600 54600 metal3 +71400 50400 75600 63000 metal4 +71400 58800 75600 63000 metal3 +71400 58800 75600 63000 metal2 +71400 58800 75600 63000 metal1 +109200 75600 113400 79800 metal5 +109200 67200 113400 79800 metal6 +109200 67200 113400 71400 metal5 +109200 67200 113400 71400 metal4 +109200 67200 113400 71400 metal3 +109200 67200 113400 71400 metal2 +109200 67200 113400 71400 metal1 +130200 142800 155400 147000 metal3 +151200 142800 155400 147000 metal3 +151200 130200 155400 147000 metal4 +151200 130200 155400 134400 metal3 +151200 130200 155400 134400 metal2 +151200 130200 155400 134400 metal1 +54600 117600 58800 138600 metal2 +54600 134400 58800 138600 metal2 +54600 134400 71400 138600 metal3 +130200 142800 134400 151200 metal4 +130200 142800 134400 147000 metal3 +130200 130200 134400 147000 metal4 +151200 105000 159600 109200 metal5 +155400 105000 159600 109200 metal4 +155400 105000 159600 109200 metal3 +155400 105000 159600 109200 metal2 +155400 105000 159600 109200 metal1 +54600 63000 58800 75600 metal4 +54600 63000 58800 67200 metal3 54600 63000 63000 67200 metal3 -126000 63000 130200 67200 metal3 -126000 63000 130200 67200 metal4 -126000 63000 130200 67200 metal5 -126000 63000 130200 88200 metal6 -126000 84000 130200 88200 metal5 -126000 84000 130200 88200 metal4 -126000 84000 130200 88200 metal3 -126000 84000 130200 88200 metal2 -126000 84000 130200 88200 metal1 -126000 147000 134400 151200 metal5 +58800 63000 63000 67200 metal2 +58800 63000 63000 67200 metal1 +151200 75600 155400 88200 metal2 54600 96600 67200 100800 metal5 63000 96600 67200 100800 metal4 63000 96600 67200 100800 metal3 63000 96600 67200 100800 metal2 63000 96600 67200 100800 metal1 -134400 113400 138600 117600 metal1 -134400 113400 138600 117600 metal2 -134400 113400 138600 117600 metal3 -134400 113400 138600 117600 metal4 -134400 113400 138600 117600 metal5 -134400 113400 138600 126000 metal6 -134400 121800 138600 126000 metal5 -134400 121800 138600 126000 metal4 -134400 121800 138600 126000 metal3 -121800 147000 130200 151200 metal5 -151200 84000 155400 88200 metal1 -151200 84000 155400 88200 metal2 -151200 84000 155400 88200 metal3 -151200 84000 155400 105000 metal4 -151200 100800 159600 105000 metal3 -155400 100800 159600 105000 metal3 -155400 100800 159600 109200 metal4 -155400 105000 159600 109200 metal3 -155400 105000 159600 109200 metal2 -155400 105000 159600 109200 metal1 -151200 75600 155400 88200 metal2 -54600 117600 58800 184800 metal2 -54600 180600 58800 184800 metal2 -54600 180600 96600 184800 metal3 50400 84000 54600 96600 metal2 -117600 25200 121800 50400 metal2 -117600 25200 121800 29400 metal2 -100800 25200 121800 29400 metal3 -100800 25200 105000 29400 metal2 -100800 25200 105000 33600 metal2 -126000 84000 130200 96600 metal6 -126000 92400 130200 96600 metal5 -117600 92400 130200 96600 metal5 -117600 92400 121800 96600 metal4 -117600 92400 121800 96600 metal3 -109200 92400 121800 96600 metal3 -109200 92400 113400 96600 metal2 -109200 88200 113400 96600 metal2 +121800 42000 126000 54600 metal2 +121800 42000 126000 46200 metal2 +117600 42000 126000 46200 metal3 +117600 42000 121800 46200 metal2 +117600 29400 121800 46200 metal2 +117600 29400 121800 33600 metal2 +105000 29400 121800 33600 metal3 +105000 29400 109200 33600 metal2 +105000 25200 109200 33600 metal2 +105000 25200 109200 29400 metal2 +105000 25200 109200 29400 metal3 +105000 25200 109200 29400 metal4 +105000 25200 109200 29400 metal5 +105000 21000 109200 29400 metal6 +105000 21000 109200 25200 metal5 +105000 21000 109200 25200 metal4 +105000 21000 109200 25200 metal3 +100800 21000 109200 25200 metal3 +100800 21000 105000 25200 metal2 +100800 21000 105000 33600 metal2 109200 88200 113400 92400 metal1 -113400 50400 117600 54600 metal1 -113400 50400 117600 54600 metal2 -113400 50400 117600 54600 metal3 -113400 50400 117600 54600 metal4 -113400 50400 117600 54600 metal5 -113400 46200 117600 54600 metal6 -113400 46200 117600 50400 metal5 -113400 46200 121800 50400 metal5 -117600 46200 121800 50400 metal4 -117600 46200 121800 50400 metal3 -117600 46200 121800 50400 metal2 -117600 46200 121800 50400 metal1 -71400 58800 75600 63000 metal1 -71400 58800 75600 63000 metal2 -71400 58800 75600 63000 metal3 -71400 58800 75600 71400 metal4 -71400 67200 75600 71400 metal4 -58800 67200 75600 71400 metal5 -58800 67200 63000 71400 metal4 -58800 63000 63000 71400 metal4 -58800 63000 63000 67200 metal3 -58800 63000 63000 67200 metal2 -58800 63000 63000 67200 metal1 +109200 88200 113400 92400 metal2 +109200 88200 113400 92400 metal3 +109200 88200 113400 92400 metal4 +109200 88200 113400 92400 metal5 +109200 75600 113400 92400 metal6 +126000 84000 130200 88200 metal1 +126000 84000 130200 88200 metal2 +126000 84000 130200 88200 metal3 +126000 84000 130200 88200 metal4 +126000 84000 130200 88200 metal5 +126000 63000 130200 88200 metal6 +126000 63000 130200 67200 metal5 +126000 63000 130200 67200 metal4 +126000 63000 130200 67200 metal3 +71400 42000 75600 54600 metal2 +71400 42000 75600 46200 metal2 +71400 42000 79800 46200 metal3 +75600 42000 79800 46200 metal2 +75600 37800 79800 46200 metal2 +75600 37800 79800 42000 metal2 +75600 37800 79800 42000 metal3 +75600 33600 79800 42000 metal4 88200 29400 105000 33600 metal3 100800 29400 105000 33600 metal2 100800 29400 105000 33600 metal1 +105000 75600 109200 79800 metal1 +105000 75600 109200 79800 metal2 +105000 75600 109200 79800 metal3 +105000 75600 109200 79800 metal4 +105000 75600 113400 79800 metal5 126000 63000 138600 67200 metal3 134400 63000 138600 67200 metal2 134400 63000 138600 71400 metal2 -88200 130200 92400 151200 metal4 +88200 126000 92400 151200 metal4 88200 147000 92400 151200 metal3 88200 147000 96600 151200 metal3 -54600 105000 58800 109200 metal1 -54600 105000 58800 109200 metal2 -54600 105000 58800 109200 metal3 -54600 105000 58800 109200 metal4 -54600 105000 58800 109200 metal5 -54600 96600 58800 109200 metal6 -54600 96600 58800 100800 metal5 -151200 100800 155400 105000 metal3 -151200 100800 155400 105000 metal4 -151200 100800 155400 105000 metal5 -151200 100800 155400 121800 metal6 -151200 117600 155400 121800 metal5 -151200 117600 155400 121800 metal4 -151200 117600 155400 121800 metal3 -151200 117600 155400 121800 metal2 +54600 96600 58800 109200 metal4 151200 117600 155400 121800 metal1 -134400 121800 138600 134400 metal6 -88200 29400 92400 33600 metal1 -88200 29400 92400 33600 metal2 -88200 29400 92400 33600 metal3 -88200 29400 92400 33600 metal4 -75600 29400 92400 33600 metal5 -75600 29400 79800 33600 metal4 -75600 29400 79800 37800 metal4 -75600 33600 79800 37800 metal3 -75600 33600 79800 37800 metal2 -75600 33600 79800 37800 metal1 -109200 67200 113400 71400 metal1 -109200 67200 113400 71400 metal2 -109200 67200 113400 71400 metal3 -109200 67200 113400 71400 metal4 -109200 67200 121800 71400 metal5 -117600 67200 121800 71400 metal4 -117600 67200 121800 71400 metal3 -117600 67200 126000 71400 metal3 -121800 67200 126000 71400 metal2 -121800 63000 126000 71400 metal2 -100800 147000 105000 151200 metal1 -100800 147000 105000 151200 metal2 -100800 147000 105000 151200 metal3 -100800 147000 105000 151200 metal4 -100800 147000 109200 151200 metal5 -75600 113400 79800 117600 metal1 +151200 117600 155400 121800 metal2 +151200 117600 155400 121800 metal3 +151200 105000 155400 121800 metal4 +130200 130200 138600 134400 metal3 +134400 130200 138600 134400 metal2 +134400 130200 138600 134400 metal1 +113400 50400 117600 54600 metal1 +113400 50400 117600 54600 metal2 +113400 50400 117600 54600 metal3 +113400 50400 117600 54600 metal4 +113400 50400 121800 54600 metal5 +117600 50400 121800 54600 metal4 +117600 50400 121800 54600 metal3 +117600 50400 121800 54600 metal2 +109200 58800 113400 71400 metal2 +109200 58800 113400 63000 metal2 +109200 58800 126000 63000 metal3 +121800 58800 126000 63000 metal2 +100800 147000 109200 151200 metal3 +67200 134400 79800 138600 metal3 +75600 134400 79800 138600 metal3 +75600 113400 79800 138600 metal4 +75600 113400 79800 117600 metal3 75600 113400 79800 117600 metal2 -71400 113400 79800 117600 metal3 -71400 113400 75600 117600 metal3 -71400 96600 75600 117600 metal4 -71400 96600 75600 100800 metal4 -67200 96600 75600 100800 metal5 -67200 96600 71400 100800 metal4 -67200 96600 71400 100800 metal3 -63000 96600 71400 100800 metal3 -92400 147000 96600 184800 metal4 +75600 113400 79800 117600 metal1 +92400 147000 96600 189000 metal4 92400 147000 96600 151200 metal3 -105000 147000 126000 151200 metal5 +134400 113400 138600 117600 metal1 +134400 113400 138600 134400 metal2 +67200 134400 71400 138600 metal3 +67200 134400 71400 189000 metal4 +67200 184800 71400 189000 metal4 +67200 184800 96600 189000 metal5 +121800 50400 126000 63000 metal2 +121800 58800 126000 67200 metal2 121800 134400 126000 138600 metal1 121800 134400 126000 138600 metal2 121800 134400 126000 138600 metal3 -121800 134400 126000 138600 metal4 -121800 134400 126000 138600 metal5 -121800 134400 126000 151200 metal6 -121800 147000 126000 151200 metal5 -134400 67200 138600 71400 metal1 -134400 67200 138600 71400 metal2 -134400 67200 138600 71400 metal3 -134400 67200 138600 75600 metal4 -134400 71400 138600 75600 metal4 -134400 71400 151200 75600 metal5 -147000 71400 151200 75600 metal4 -147000 71400 151200 79800 metal4 -147000 75600 151200 79800 metal3 -147000 75600 155400 79800 metal3 -151200 75600 155400 79800 metal2 -151200 75600 155400 79800 metal1 -117600 46200 121800 54600 metal2 -117600 50400 121800 54600 metal2 -117600 50400 126000 54600 metal3 -121800 50400 126000 54600 metal2 -121800 50400 126000 67200 metal2 -71400 50400 75600 63000 metal4 -71400 50400 75600 54600 metal3 -71400 50400 75600 54600 metal2 -71400 50400 75600 54600 metal1 +121800 130200 126000 138600 metal4 +121800 130200 126000 134400 metal4 +121800 130200 134400 134400 metal5 +130200 130200 134400 134400 metal4 +130200 130200 134400 134400 metal3 +130200 130200 134400 134400 metal2 ) ctrl.state.out\[1\] ( @@ -7594,11 +7389,9 @@ dpath.a_lt_b$in1\[10\] dpath.a_lt_b$in1\[11\] ( 109200 71400 113400 75600 metal1 -109200 71400 113400 75600 metal2 -109200 71400 117600 75600 metal3 -113400 71400 117600 75600 metal3 -113400 67200 117600 75600 metal4 -113400 67200 117600 71400 metal3 +109200 67200 113400 75600 metal2 +109200 67200 113400 71400 metal2 +109200 67200 117600 71400 metal3 113400 67200 117600 71400 metal2 113400 67200 117600 71400 metal1 ) @@ -7624,8 +7417,10 @@ dpath.a_lt_b$in1\[15\] 105000 71400 109200 75600 metal1 105000 71400 109200 75600 metal2 105000 71400 113400 75600 metal3 -109200 71400 113400 75600 metal2 -109200 71400 113400 79800 metal2 +109200 71400 113400 75600 metal3 +109200 71400 113400 79800 metal4 +109200 75600 113400 79800 metal3 +109200 75600 113400 79800 metal2 109200 75600 113400 79800 metal1 ) dpath.a_lt_b$in1\[1\] @@ -7683,7 +7478,11 @@ dpath.a_lt_b$in1\[8\] dpath.a_lt_b$in1\[9\] ( 54600 84000 58800 88200 metal1 -54600 79800 58800 88200 metal2 +54600 84000 58800 88200 metal2 +54600 84000 58800 88200 metal3 +54600 79800 58800 88200 metal4 +54600 79800 58800 84000 metal3 +54600 79800 58800 84000 metal2 54600 79800 58800 84000 metal1 ) net1 @@ -7731,11 +7530,11 @@ net13 134400 147000 138600 151200 metal1 134400 147000 138600 151200 metal2 134400 147000 138600 151200 metal3 -134400 147000 138600 163800 metal4 -134400 159600 138600 163800 metal4 -134400 159600 142800 163800 metal5 -138600 159600 142800 163800 metal4 -138600 159600 142800 180600 metal4 +134400 147000 138600 159600 metal4 +134400 155400 138600 159600 metal4 +134400 155400 142800 159600 metal5 +138600 155400 142800 159600 metal4 +138600 155400 142800 180600 metal4 138600 176400 142800 180600 metal3 138600 176400 142800 180600 metal2 138600 176400 142800 180600 metal1 @@ -7752,11 +7551,10 @@ net14 net15 ( 172200 92400 176400 96600 metal1 -172200 88200 176400 96600 metal2 -172200 88200 176400 92400 metal2 -172200 88200 180600 92400 metal3 -176400 88200 180600 92400 metal2 -176400 79800 180600 92400 metal2 +172200 92400 176400 96600 metal2 +172200 92400 180600 96600 metal3 +176400 92400 180600 96600 metal2 +176400 79800 180600 96600 metal2 176400 79800 180600 84000 metal1 ) net16 @@ -7795,11 +7593,13 @@ net19 113400 33600 117600 37800 metal1 113400 29400 117600 37800 metal2 113400 29400 117600 33600 metal2 -113400 29400 142800 33600 metal3 -138600 29400 142800 33600 metal2 -138600 21000 142800 33600 metal2 -138600 21000 142800 25200 metal2 -138600 21000 151200 25200 metal3 +113400 29400 117600 33600 metal3 +113400 29400 117600 33600 metal4 +113400 29400 130200 33600 metal5 +126000 29400 130200 33600 metal4 +126000 21000 130200 33600 metal4 +126000 21000 130200 25200 metal3 +126000 21000 151200 25200 metal3 147000 21000 151200 25200 metal2 147000 21000 151200 25200 metal1 ) @@ -7815,12 +7615,14 @@ net2 net20 ( 117600 163800 121800 168000 metal1 -117600 163800 121800 172200 metal2 -117600 168000 121800 172200 metal2 -117600 168000 159600 172200 metal3 -155400 168000 159600 172200 metal2 -155400 168000 159600 176400 metal2 -155400 172200 159600 176400 metal2 +117600 163800 121800 168000 metal2 +117600 163800 121800 168000 metal3 +117600 163800 121800 172200 metal4 +117600 168000 121800 172200 metal4 +117600 168000 159600 172200 metal5 +155400 168000 159600 172200 metal4 +155400 168000 159600 176400 metal4 +155400 172200 159600 176400 metal3 155400 172200 180600 176400 metal3 176400 172200 180600 176400 metal2 176400 172200 180600 176400 metal1 @@ -7866,10 +7668,11 @@ net24 net25 ( 172200 130200 176400 134400 metal1 -172200 130200 176400 134400 metal2 -172200 130200 180600 134400 metal3 -176400 130200 180600 134400 metal2 -176400 130200 180600 159600 metal2 +172200 130200 176400 147000 metal2 +172200 142800 176400 147000 metal2 +172200 142800 180600 147000 metal3 +176400 142800 180600 147000 metal2 +176400 142800 180600 159600 metal2 176400 155400 180600 159600 metal1 ) net26 @@ -7890,10 +7693,11 @@ net27 net28 ( 163800 100800 168000 105000 metal1 -163800 100800 168000 105000 metal2 -163800 100800 180600 105000 metal3 -176400 100800 180600 105000 metal2 -176400 100800 180600 117600 metal2 +163800 100800 168000 109200 metal2 +163800 105000 168000 109200 metal2 +163800 105000 180600 109200 metal3 +176400 105000 180600 109200 metal2 +176400 105000 180600 117600 metal2 176400 113400 180600 117600 metal1 ) net29 @@ -7914,11 +7718,11 @@ net3 net30 ( 151200 176400 155400 180600 metal1 -151200 159600 155400 180600 metal2 -151200 159600 155400 163800 metal2 -151200 159600 168000 163800 metal3 -163800 159600 168000 163800 metal2 -163800 151200 168000 163800 metal2 +151200 155400 155400 180600 metal2 +151200 155400 155400 159600 metal2 +151200 155400 168000 159600 metal3 +163800 155400 168000 159600 metal2 +163800 151200 168000 159600 metal2 163800 151200 168000 155400 metal1 ) net31 @@ -7934,13 +7738,9 @@ net32 ( 155400 134400 159600 138600 metal1 155400 134400 159600 138600 metal2 -155400 134400 159600 138600 metal3 -155400 134400 159600 142800 metal4 -155400 138600 159600 142800 metal4 -155400 138600 180600 142800 metal5 -176400 138600 180600 142800 metal4 -176400 138600 180600 142800 metal3 -176400 138600 180600 142800 metal2 +155400 134400 180600 138600 metal3 +176400 134400 180600 138600 metal2 +176400 134400 180600 142800 metal2 176400 138600 180600 142800 metal1 ) net33 @@ -7948,31 +7748,11 @@ net33 79800 130200 84000 134400 metal1 79800 130200 84000 134400 metal2 79800 130200 84000 134400 metal3 -79800 130200 84000 134400 metal4 -79800 130200 84000 134400 metal5 -79800 130200 84000 176400 metal6 -79800 172200 84000 176400 metal5 -71400 172200 84000 176400 metal5 -71400 172200 75600 176400 metal4 -71400 172200 75600 197400 metal4 -71400 193200 75600 197400 metal3 -71400 193200 121800 197400 metal3 -117600 193200 121800 197400 metal2 -117600 184800 121800 197400 metal2 -117600 184800 121800 189000 metal2 -117600 184800 126000 189000 metal3 -121800 184800 126000 189000 metal2 -121800 155400 126000 189000 metal2 -121800 155400 126000 159600 metal2 -121800 155400 126000 159600 metal3 -121800 155400 126000 159600 metal4 -121800 155400 172200 159600 metal5 -168000 155400 172200 159600 metal5 -168000 155400 172200 180600 metal6 -168000 176400 172200 180600 metal5 -168000 176400 172200 180600 metal4 -168000 176400 172200 180600 metal3 -168000 176400 172200 180600 metal2 +79800 130200 84000 163800 metal4 +79800 159600 84000 163800 metal3 +79800 159600 172200 163800 metal3 +168000 159600 172200 163800 metal2 +168000 159600 172200 180600 metal2 168000 176400 172200 180600 metal1 ) net34 @@ -7988,23 +7768,23 @@ net35 ( 21000 176400 25200 180600 metal1 21000 176400 25200 180600 metal2 -21000 176400 50400 180600 metal3 -46200 176400 50400 180600 metal2 -46200 172200 50400 180600 metal2 -46200 172200 50400 176400 metal2 -46200 172200 63000 176400 metal3 -58800 172200 63000 176400 metal2 -58800 130200 63000 176400 metal2 +21000 176400 42000 180600 metal3 +37800 176400 42000 180600 metal3 +37800 138600 42000 180600 metal4 +37800 138600 42000 142800 metal3 +37800 138600 63000 142800 metal3 +58800 138600 63000 142800 metal2 +58800 130200 63000 142800 metal2 58800 130200 63000 134400 metal1 ) net36 ( -50400 100800 54600 105000 metal1 -50400 100800 54600 105000 metal2 -50400 100800 54600 105000 metal3 -50400 100800 54600 109200 metal4 -50400 105000 54600 109200 metal4 -50400 105000 63000 109200 metal5 +50400 100800 54600 109200 metal2 +50400 105000 54600 109200 metal2 +50400 105000 58800 109200 metal3 +54600 105000 58800 109200 metal3 +54600 105000 58800 109200 metal4 +54600 105000 63000 109200 metal5 58800 105000 63000 109200 metal4 58800 105000 63000 109200 metal3 58800 105000 63000 109200 metal2 @@ -8017,6 +7797,8 @@ net36 33600 29400 37800 105000 metal4 33600 100800 37800 105000 metal3 33600 100800 54600 105000 metal3 +50400 100800 54600 105000 metal2 +50400 100800 54600 105000 metal1 ) net37 ( @@ -8024,10 +7806,9 @@ net37 16800 25200 21000 29400 metal2 16800 25200 21000 29400 metal3 16800 25200 21000 29400 metal4 -16800 25200 84000 29400 metal5 -79800 25200 84000 29400 metal4 -79800 25200 84000 29400 metal3 -79800 25200 92400 29400 metal3 +16800 25200 92400 29400 metal5 +88200 25200 92400 29400 metal4 +88200 25200 92400 29400 metal3 88200 25200 92400 29400 metal2 88200 25200 92400 29400 metal1 ) @@ -8044,12 +7825,10 @@ net39 ( 100800 25200 105000 29400 metal1 100800 25200 105000 29400 metal2 -100800 25200 105000 29400 metal3 -100800 25200 105000 29400 metal4 -100800 25200 172200 29400 metal5 -168000 25200 172200 29400 metal4 -168000 21000 172200 29400 metal4 -168000 21000 172200 25200 metal3 +100800 25200 172200 29400 metal3 +168000 25200 172200 29400 metal2 +168000 21000 172200 29400 metal2 +168000 21000 172200 25200 metal2 168000 21000 176400 25200 metal3 172200 21000 176400 25200 metal2 172200 21000 176400 25200 metal1 @@ -8094,20 +7873,35 @@ net43 84000 79800 88200 84000 metal1 84000 79800 88200 84000 metal2 84000 79800 88200 84000 metal3 -84000 79800 88200 84000 metal4 -84000 79800 88200 84000 metal5 -84000 16800 88200 84000 metal6 -84000 16800 88200 21000 metal5 -84000 16800 88200 21000 metal4 -84000 4200 88200 21000 metal4 -84000 4200 88200 8400 metal3 -84000 4200 113400 8400 metal3 -109200 4200 113400 8400 metal2 -109200 4200 113400 16800 metal2 -109200 12600 113400 16800 metal2 -109200 12600 121800 16800 metal3 -117600 12600 121800 16800 metal3 -117600 12600 121800 25200 metal4 +84000 75600 88200 84000 metal4 +84000 75600 88200 79800 metal3 +84000 75600 88200 79800 metal2 +84000 63000 88200 79800 metal2 +84000 63000 88200 67200 metal2 +84000 63000 88200 67200 metal3 +84000 58800 88200 67200 metal4 +84000 58800 88200 63000 metal4 +84000 58800 88200 63000 metal5 +84000 50400 88200 63000 metal6 +84000 50400 88200 54600 metal5 +84000 50400 88200 54600 metal4 +84000 50400 88200 54600 metal3 +84000 50400 92400 54600 metal3 +88200 50400 92400 54600 metal3 +88200 50400 92400 54600 metal4 +88200 50400 92400 54600 metal5 +88200 37800 92400 54600 metal6 +88200 37800 92400 42000 metal5 +88200 37800 96600 42000 metal5 +92400 37800 96600 42000 metal5 +92400 29400 96600 42000 metal6 +92400 29400 96600 33600 metal5 +92400 29400 96600 33600 metal4 +92400 4200 96600 33600 metal4 +92400 4200 96600 8400 metal3 +92400 4200 121800 8400 metal3 +117600 4200 121800 8400 metal3 +117600 4200 121800 25200 metal4 117600 21000 121800 25200 metal3 117600 21000 121800 25200 metal2 117600 21000 121800 25200 metal1 @@ -8115,91 +7909,92 @@ net43 net44 ( 16800 117600 21000 121800 metal1 -16800 113400 21000 121800 metal2 -16800 113400 21000 117600 metal2 -16800 113400 54600 117600 metal3 -50400 113400 54600 117600 metal3 -50400 109200 54600 117600 metal4 -50400 109200 54600 113400 metal4 -50400 109200 58800 113400 metal5 -54600 109200 58800 113400 metal4 -54600 109200 58800 113400 metal3 -54600 109200 75600 113400 metal3 -71400 109200 75600 113400 metal2 -71400 105000 75600 113400 metal2 +16800 117600 21000 121800 metal2 +16800 117600 21000 121800 metal3 +16800 113400 21000 121800 metal4 +16800 113400 21000 117600 metal4 +16800 113400 54600 117600 metal5 +50400 113400 54600 117600 metal5 +50400 109200 54600 117600 metal6 +50400 109200 54600 113400 metal5 +50400 109200 71400 113400 metal5 +67200 109200 71400 113400 metal4 +67200 109200 71400 113400 metal3 +67200 109200 75600 113400 metal3 +71400 109200 75600 113400 metal3 +71400 105000 75600 113400 metal4 +71400 105000 75600 109200 metal3 +71400 105000 75600 109200 metal2 71400 105000 75600 109200 metal1 ) net45 ( 155400 121800 159600 126000 metal1 -155400 121800 159600 126000 metal2 -155400 121800 176400 126000 metal3 -172200 121800 176400 126000 metal2 -172200 121800 176400 180600 metal2 +155400 121800 159600 147000 metal2 +155400 142800 159600 147000 metal2 +155400 142800 176400 147000 metal3 +172200 142800 176400 147000 metal2 +172200 142800 176400 180600 metal2 172200 176400 176400 180600 metal1 ) net46 ( 16800 46200 21000 50400 metal1 -16800 42000 21000 50400 metal2 -16800 42000 21000 46200 metal2 -16800 42000 42000 46200 metal3 -37800 42000 42000 46200 metal3 -37800 0 42000 46200 metal4 -37800 0 42000 4200 metal4 -37800 0 126000 4200 metal5 -121800 0 126000 4200 metal4 -121800 0 126000 8400 metal4 -121800 4200 126000 8400 metal3 -121800 4200 130200 8400 metal3 -126000 4200 130200 8400 metal2 -126000 4200 130200 54600 metal2 -126000 50400 130200 54600 metal2 -126000 50400 130200 54600 metal3 -126000 50400 130200 71400 metal4 -126000 67200 130200 71400 metal3 -126000 67200 130200 71400 metal2 -126000 67200 130200 75600 metal2 +16800 46200 21000 50400 metal2 +16800 46200 21000 50400 metal3 +16800 8400 21000 50400 metal4 +16800 8400 21000 12600 metal3 +16800 8400 130200 12600 metal3 +126000 8400 130200 12600 metal2 +126000 8400 130200 33600 metal2 +126000 29400 130200 33600 metal2 +126000 29400 130200 33600 metal3 +126000 29400 130200 63000 metal4 +126000 58800 130200 63000 metal3 +126000 58800 130200 63000 metal2 +126000 58800 130200 75600 metal2 126000 71400 130200 75600 metal1 ) net47 ( 159600 92400 163800 96600 metal1 -159600 88200 163800 96600 metal2 -159600 88200 163800 92400 metal2 -159600 88200 176400 92400 metal3 -172200 88200 176400 92400 metal2 -172200 33600 176400 92400 metal2 +159600 92400 163800 96600 metal2 +159600 92400 172200 96600 metal3 +168000 92400 172200 96600 metal2 +168000 33600 172200 96600 metal2 +168000 33600 172200 37800 metal2 +168000 33600 176400 37800 metal3 +172200 33600 176400 37800 metal2 172200 33600 176400 37800 metal1 ) net48 ( 25200 21000 29400 25200 metal1 25200 21000 29400 25200 metal2 -25200 21000 29400 25200 metal3 -25200 21000 29400 25200 metal4 -25200 21000 84000 25200 metal5 -79800 21000 84000 25200 metal4 -79800 21000 84000 25200 metal3 -79800 21000 100800 25200 metal3 -96600 21000 100800 25200 metal3 -96600 21000 100800 25200 metal4 -96600 21000 113400 25200 metal5 -109200 21000 113400 25200 metal4 -109200 21000 113400 25200 metal3 -109200 21000 138600 25200 metal3 -134400 21000 138600 25200 metal2 -134400 21000 138600 67200 metal2 +25200 21000 75600 25200 metal3 +71400 21000 75600 25200 metal3 +71400 21000 75600 25200 metal4 +71400 21000 126000 25200 metal5 +121800 21000 126000 25200 metal4 +121800 21000 126000 46200 metal4 +121800 42000 126000 46200 metal3 +121800 42000 138600 46200 metal3 +134400 42000 138600 46200 metal2 +134400 42000 138600 50400 metal2 +134400 46200 138600 50400 metal2 +134400 46200 138600 50400 metal3 +134400 46200 138600 67200 metal4 +134400 63000 138600 67200 metal3 +134400 63000 138600 67200 metal2 134400 63000 138600 67200 metal1 ) net49 ( 151200 121800 155400 126000 metal1 151200 121800 155400 126000 metal2 -151200 121800 159600 126000 metal3 -155400 121800 159600 126000 metal3 -155400 121800 159600 126000 metal4 -155400 121800 163800 126000 metal5 +151200 121800 163800 126000 metal3 +159600 121800 163800 126000 metal3 +159600 121800 163800 126000 metal4 159600 121800 163800 126000 metal5 159600 21000 163800 126000 metal6 159600 21000 163800 25200 metal5 @@ -8217,12 +8012,12 @@ net5 net50 ( 16800 134400 21000 138600 metal1 -16800 130200 21000 138600 metal2 -16800 130200 21000 134400 metal2 -16800 130200 79800 134400 metal3 -75600 130200 79800 134400 metal3 -75600 130200 79800 134400 metal4 -75600 130200 84000 134400 metal5 +16800 134400 21000 138600 metal2 +16800 134400 54600 138600 metal3 +50400 134400 54600 138600 metal3 +50400 130200 54600 138600 metal4 +50400 130200 54600 134400 metal4 +50400 130200 84000 134400 metal5 79800 130200 84000 134400 metal4 79800 130200 84000 134400 metal3 79800 130200 84000 134400 metal2 @@ -8231,15 +8026,17 @@ net50 net51 ( 16800 147000 21000 151200 metal1 -16800 142800 21000 151200 metal2 -16800 142800 21000 147000 metal2 -16800 142800 25200 147000 metal3 -21000 142800 25200 147000 metal3 -21000 142800 25200 151200 metal4 -21000 147000 25200 151200 metal4 -21000 147000 96600 151200 metal5 -92400 147000 96600 151200 metal4 -92400 138600 96600 151200 metal4 +16800 147000 21000 155400 metal2 +16800 151200 21000 155400 metal2 +16800 151200 58800 155400 metal3 +54600 151200 58800 155400 metal3 +54600 147000 58800 155400 metal4 +54600 147000 58800 151200 metal4 +54600 147000 96600 151200 metal5 +92400 147000 96600 151200 metal5 +92400 138600 96600 151200 metal6 +92400 138600 96600 142800 metal5 +92400 138600 96600 142800 metal4 92400 138600 96600 142800 metal3 92400 138600 96600 142800 metal2 92400 138600 96600 142800 metal1 @@ -8250,12 +8047,13 @@ net52 16800 163800 21000 168000 metal2 16800 163800 21000 168000 metal3 16800 163800 21000 168000 metal4 -16800 163800 96600 168000 metal5 -92400 163800 96600 168000 metal5 -92400 134400 96600 168000 metal6 -92400 134400 96600 138600 metal5 -92400 134400 96600 138600 metal4 -92400 134400 96600 138600 metal3 +16800 163800 92400 168000 metal5 +88200 163800 92400 168000 metal5 +88200 134400 92400 168000 metal6 +88200 134400 92400 138600 metal5 +88200 134400 92400 138600 metal4 +88200 134400 92400 138600 metal3 +88200 134400 96600 138600 metal3 92400 134400 96600 138600 metal2 92400 134400 96600 138600 metal1 ) @@ -8263,23 +8061,22 @@ net53 ( 75600 54600 79800 58800 metal1 75600 54600 79800 58800 metal2 -75600 54600 79800 58800 metal3 -75600 50400 79800 58800 metal4 -75600 50400 79800 54600 metal4 -75600 50400 79800 54600 metal5 -75600 42000 79800 54600 metal6 -75600 42000 79800 46200 metal5 -75600 42000 79800 46200 metal4 -75600 33600 79800 46200 metal4 -75600 33600 79800 37800 metal3 -75600 33600 79800 37800 metal2 -75600 8400 79800 37800 metal2 -75600 8400 79800 12600 metal2 -75600 8400 134400 12600 metal3 -130200 8400 134400 12600 metal2 -130200 8400 134400 16800 metal2 -130200 12600 134400 16800 metal2 -130200 12600 155400 16800 metal3 +71400 54600 79800 58800 metal3 +71400 54600 75600 58800 metal3 +71400 54600 75600 58800 metal4 +63000 54600 75600 58800 metal5 +63000 54600 67200 58800 metal5 +63000 4200 67200 58800 metal6 +63000 4200 67200 8400 metal5 +63000 4200 79800 8400 metal5 +75600 4200 79800 8400 metal4 +75600 0 79800 8400 metal4 +75600 0 79800 4200 metal4 +75600 0 126000 4200 metal5 +121800 0 126000 4200 metal4 +121800 0 126000 16800 metal4 +121800 12600 126000 16800 metal3 +121800 12600 155400 16800 metal3 151200 12600 155400 16800 metal2 151200 12600 155400 54600 metal2 151200 50400 155400 54600 metal2 @@ -8313,10 +8110,10 @@ net8 net9 ( 79800 176400 84000 180600 metal1 -79800 172200 84000 180600 metal2 -79800 172200 84000 176400 metal2 -79800 172200 88200 176400 metal3 -84000 172200 88200 176400 metal2 +79800 176400 84000 180600 metal2 +79800 176400 88200 180600 metal3 +84000 176400 88200 180600 metal2 +84000 172200 88200 180600 metal2 84000 172200 88200 176400 metal1 ) req_msg[0] @@ -8471,12 +8268,14 @@ req_msg[23] req_msg[24] ( 172200 96600 176400 100800 metal1 -172200 92400 176400 100800 metal2 -172200 92400 176400 96600 metal2 -172200 92400 200260 96600 metal3 -193200 92400 200260 96600 metal3 -193200 92400 200260 96600 metal4 -193200 92400 200260 96600 metal5 +172200 96600 176400 100800 metal2 +172200 96600 176400 100800 metal3 +172200 96600 176400 100800 metal4 +172200 96600 180600 100800 metal5 +176400 96600 180600 100800 metal4 +176400 92400 180600 100800 metal4 +176400 92400 180600 96600 metal4 +176400 92400 200260 96600 metal5 ) req_msg[25] ( @@ -8507,11 +8306,11 @@ req_msg[27] ) req_msg[28] ( -0 25200 8400 29400 metal5 -4200 25200 8400 29400 metal4 -4200 25200 8400 33600 metal4 -4200 29400 8400 33600 metal3 -4200 29400 21000 33600 metal3 +0 25200 4200 29400 metal4 +0 25200 4200 29400 metal5 +0 25200 4200 33600 metal4 +0 29400 4200 33600 metal3 +0 29400 21000 33600 metal3 16800 29400 21000 33600 metal2 16800 29400 21000 33600 metal1 ) @@ -8558,10 +8357,11 @@ req_msg[31] ) req_msg[3] ( -0 176400 21000 180600 metal5 -16800 176400 21000 180600 metal4 -16800 172200 21000 180600 metal4 -16800 172200 21000 176400 metal3 +0 176400 4200 180600 metal4 +0 176400 4200 180600 metal5 +0 172200 4200 180600 metal4 +0 172200 4200 176400 metal3 +0 172200 21000 176400 metal3 16800 172200 21000 176400 metal2 16800 172200 21000 176400 metal1 ) @@ -8636,12 +8436,12 @@ req_rdy req_val ( 168000 176400 172200 180600 metal1 -168000 176400 172200 189000 metal2 -168000 184800 172200 189000 metal2 -168000 184800 200260 189000 metal3 -193200 184800 200260 189000 metal3 -193200 184800 200260 189000 metal4 -193200 184800 200260 189000 metal5 +168000 176400 172200 180600 metal2 +168000 176400 176400 180600 metal3 +172200 176400 176400 180600 metal3 +172200 176400 176400 189000 metal4 +172200 184800 176400 189000 metal4 +172200 184800 200260 189000 metal5 ) reset ( @@ -8680,11 +8480,10 @@ resp_msg[11] resp_msg[12] ( 176400 25200 180600 29400 metal1 -176400 8400 180600 29400 metal2 -176400 8400 180600 12600 metal2 -176400 8400 193200 12600 metal3 -189000 8400 193200 12600 metal3 -189000 0 193200 12600 metal4 +176400 0 180600 29400 metal2 +176400 0 180600 4200 metal2 +176400 0 193200 4200 metal3 +189000 0 193200 4200 metal3 189000 0 193200 4200 metal4 189000 0 193200 4200 metal5 189000 0 193200 4200 metal6 @@ -8730,11 +8529,10 @@ resp_msg[1] ) resp_msg[2] ( -0 130200 4200 134400 metal4 -0 130200 4200 134400 metal5 -0 130200 4200 138600 metal4 -0 134400 4200 138600 metal3 -0 134400 25200 138600 metal3 +0 130200 25200 134400 metal5 +21000 130200 25200 134400 metal4 +21000 130200 25200 138600 metal4 +21000 134400 25200 138600 metal3 21000 134400 25200 138600 metal2 21000 134400 25200 138600 metal1 ) @@ -8770,24 +8568,21 @@ resp_msg[5] ) resp_msg[6] ( -0 42000 8400 46200 metal5 -4200 42000 8400 46200 metal4 -4200 42000 8400 50400 metal4 -4200 46200 8400 50400 metal3 -4200 46200 25200 50400 metal3 +0 42000 25200 46200 metal5 +21000 42000 25200 46200 metal4 +21000 42000 25200 50400 metal4 +21000 46200 25200 50400 metal3 21000 46200 25200 50400 metal2 21000 46200 25200 50400 metal1 ) resp_msg[7] ( 176400 176400 180600 180600 metal1 -176400 176400 180600 193200 metal2 -176400 189000 180600 193200 metal2 -176400 189000 184800 193200 metal3 -180600 189000 184800 193200 metal3 -180600 189000 184800 201600 metal4 -180600 197400 184800 201600 metal4 -180600 197400 200260 201600 metal5 +176400 176400 180600 201600 metal2 +176400 197400 180600 201600 metal2 +176400 197400 200260 201600 metal3 +193200 197400 200260 201600 metal3 +193200 197400 200260 201600 metal4 193200 197400 200260 201600 metal5 193200 197400 200260 201600 metal6 ) @@ -8811,10 +8606,11 @@ resp_msg[9] ) resp_rdy ( -0 189000 21000 193200 metal5 -16800 189000 21000 193200 metal4 -16800 176400 21000 193200 metal4 -16800 176400 21000 180600 metal3 +0 189000 16800 193200 metal5 +12600 189000 16800 193200 metal4 +12600 176400 16800 193200 metal4 +12600 176400 16800 180600 metal3 +12600 176400 21000 180600 metal3 16800 176400 21000 180600 metal2 16800 176400 21000 180600 metal1 ) diff --git a/src/grt/test/congestion2.ok b/src/grt/test/congestion2.ok index 137e04fdbf0..b5617799a9b 100644 --- a/src/grt/test/congestion2.ok +++ b/src/grt/test/congestion2.ok @@ -43,29 +43,29 @@ metal10 Vertical 2305 0 100.00% --------------------------------------------------------------- [INFO GRT-0101] Running extra iterations to remove overflow. -[INFO GRT-0197] Via related to pin nodes: 4141 -[INFO GRT-0198] Via related Steiner nodes: 160 +[INFO GRT-0197] Via related to pin nodes: 4157 +[INFO GRT-0198] Via related Steiner nodes: 147 [INFO GRT-0199] Via filling finished. -[INFO GRT-0111] Final number of vias: 6781 -[INFO GRT-0112] Final usage 3D: 25281 +[INFO GRT-0111] Final number of vias: 6657 +[INFO GRT-0112] Final usage 3D: 24872 [WARNING GRT-0115] Global routing finished with overflow. [INFO GRT-0096] Final congestion report: Layer Resource Demand Usage (%) Max H / Max V / Total Overflow --------------------------------------------------------------------------------------- -metal1 0 1 0.00% 1 / 0 / 1 -metal2 2209 1063 48.12% 0 / 1 / 5 -metal3 2208 1154 52.26% 1 / 0 / 4 -metal4 2209 966 43.73% 0 / 0 / 0 -metal5 2208 977 44.25% 1 / 0 / 3 -metal6 2209 777 35.17% 0 / 1 / 4 +metal1 0 0 0.00% 0 / 0 / 0 +metal2 2209 1003 45.41% 0 / 0 / 0 +metal3 2208 1171 53.03% 0 / 0 / 0 +metal4 2209 978 44.27% 0 / 1 / 2 +metal5 2208 952 43.12% 1 / 0 / 4 +metal6 2209 797 36.08% 0 / 0 / 0 metal7 0 0 0.00% 0 / 0 / 0 metal8 0 0 0.00% 0 / 0 / 0 metal9 0 0 0.00% 0 / 0 / 0 metal10 0 0 0.00% 0 / 0 / 0 --------------------------------------------------------------------------------------- -Total 11043 4938 44.72% 3 / 2 / 17 +Total 11043 4901 44.38% 1 / 1 / 6 -[INFO GRT-0018] Total wirelength: 14849 um +[INFO GRT-0018] Total wirelength: 14574 um [INFO GRT-0014] Routed nets: 563 No differences found. diff --git a/src/grt/test/congestion5.ok b/src/grt/test/congestion5.ok index 7e98bcd2490..8110ef686ac 100644 --- a/src/grt/test/congestion5.ok +++ b/src/grt/test/congestion5.ok @@ -44,10 +44,10 @@ metal10 Vertical 2305 0 100.00% [INFO GRT-0101] Running extra iterations to remove overflow. [INFO GRT-0103] Extra Run for hard benchmark. -[INFO GRT-0197] Via related to pin nodes: 1771 -[INFO GRT-0198] Via related Steiner nodes: 100 +[INFO GRT-0197] Via related to pin nodes: 1760 +[INFO GRT-0198] Via related Steiner nodes: 98 [INFO GRT-0199] Via filling finished. [INFO GRT-0111] Final number of vias: 3316 -[INFO GRT-0112] Final usage 3D: 15245 +[INFO GRT-0112] Final usage 3D: 15242 [ERROR GRT-0118] Routing congestion too high. Check the congestion heatmap in the GUI. GRT-0118 diff --git a/src/grt/test/congestion6.ok b/src/grt/test/congestion6.ok index 22610405abf..64d6b3e5d50 100644 --- a/src/grt/test/congestion6.ok +++ b/src/grt/test/congestion6.ok @@ -44,10 +44,10 @@ metal10 Vertical 2305 0 100.00% [INFO GRT-0101] Running extra iterations to remove overflow. [INFO GRT-0103] Extra Run for hard benchmark. -[INFO GRT-0197] Via related to pin nodes: 3181 -[INFO GRT-0198] Via related Steiner nodes: 87 +[INFO GRT-0197] Via related to pin nodes: 3183 +[INFO GRT-0198] Via related Steiner nodes: 90 [INFO GRT-0199] Via filling finished. -[INFO GRT-0111] Final number of vias: 5057 -[INFO GRT-0112] Final usage 3D: 20497 +[INFO GRT-0111] Final number of vias: 4999 +[INFO GRT-0112] Final usage 3D: 20221 [ERROR GRT-0118] Routing congestion too high. Check the congestion heatmap in the GUI. GRT-0118 diff --git a/src/grt/test/congestion7-20.rptok b/src/grt/test/congestion7-20.rptok index aeebeac1852..a8140225c92 100644 --- a/src/grt/test/congestion7-20.rptok +++ b/src/grt/test/congestion7-20.rptok @@ -1,15 +1,11 @@ violation type: Horizontal congestion - srcs: net:_380_ net:_392_ + srcs: net:_400_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 52.5 ) - ( 23.1, 54.6) on Layer - + bbox = ( 25.2, 39.9 ) - ( 27.3, 42) on Layer - violation type: Horizontal congestion - srcs: net:net24 net:net36 + srcs: net:_053_ net:_107_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 50.4 ) - ( 25.2, 52.5) on Layer - -violation type: Horizontal congestion - srcs: net:_107_ net:_400_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 25.2, 39.9 ) - ( 27.3, 42) on Layer - + bbox = ( 25.2, 42 ) - ( 27.3, 44.1) on Layer - violation type: Horizontal congestion srcs: net:clk net:_036_ congestion information: capacity:1 usage:2 overflow:1 @@ -27,37 +23,41 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 25.2, 58.8 ) - ( 27.3, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_421_ + srcs: net:clk net:_397_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 27.3 ) - ( 29.4, 29.4) on Layer - + bbox = ( 27.3, 29.4 ) - ( 29.4, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_397_ + srcs: net:clk net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 31.5 ) - ( 29.4, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_037_ net:_370_ + srcs: net:_037_ net:_405_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 33.6 ) - ( 29.4, 35.7) on Layer - + bbox = ( 27.3, 35.7 ) - ( 29.4, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_107_ net:_141_ + srcs: net:_141_ net:_362_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 39.9 ) - ( 29.4, 42) on Layer - violation type: Horizontal congestion - srcs: net:_015_ net:_362_ net:_386_ + srcs: net:_015_ net:_107_ net:_386_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 27.3, 42 ) - ( 29.4, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_090_ net:_353_ + srcs: net:_090_ net:_124_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 46.2 ) - ( 29.4, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_124_ net:_140_ + srcs: net:clk net:_140_ net:_353_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 27.3, 48.3 ) - ( 29.4, 50.4) on Layer - violation type: Horizontal congestion srcs: net:_361_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 50.4 ) - ( 29.4, 52.5) on Layer - +violation type: Horizontal congestion + srcs: net:_000_ net:net36 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 27.3, 52.5 ) - ( 29.4, 54.6) on Layer - violation type: Horizontal congestion srcs: net:_403_ net:net44 congestion information: capacity:1 usage:2 overflow:1 @@ -67,23 +67,15 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 58.8 ) - ( 29.4, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_387_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 23.1 ) - ( 31.5, 25.2) on Layer - -violation type: Horizontal congestion - srcs: net:_158_ net:_392_ + srcs: net:_387_ net:_392_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 25.2 ) - ( 31.5, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_421_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 27.3 ) - ( 31.5, 29.4) on Layer - -violation type: Horizontal congestion - srcs: net:_077_ net:_401_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_077_ net:_397_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 29.4, 29.4 ) - ( 31.5, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_397_ + srcs: net:_248_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 31.5 ) - ( 31.5, 33.6) on Layer - violation type: Horizontal congestion @@ -94,10 +86,6 @@ violation type: Horizontal congestion srcs: net:_405_ net:dpath.a_lt_b$in0\[9\] congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 35.7 ) - ( 31.5, 37.8) on Layer - -violation type: Horizontal congestion - srcs: net:_125_ net:_158_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 37.8 ) - ( 31.5, 39.9) on Layer - violation type: Horizontal congestion srcs: net:_141_ net:_307_ congestion information: capacity:1 usage:2 overflow:1 @@ -123,41 +111,41 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 50.4 ) - ( 31.5, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_054_ net:_403_ + srcs: net:_054_ net:net44 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 56.7 ) - ( 31.5, 58.8) on Layer - + bbox = ( 29.4, 54.6 ) - ( 31.5, 56.7) on Layer - violation type: Horizontal congestion srcs: net:_055_ net:_057_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 58.8 ) - ( 31.5, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_420_ net:_421_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 60.9 ) - ( 31.5, 63) on Layer - -violation type: Horizontal congestion - srcs: net:_374_ net:_401_ + srcs: net:_158_ net:_389_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 18.9 ) - ( 33.6, 21) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_343_ + srcs: net:_248_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 25.2 ) - ( 33.6, 27.3) on Layer - + bbox = ( 31.5, 21 ) - ( 33.6, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_421_ + srcs: net:_244_ net:_421_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 27.3 ) - ( 33.6, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_401_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_070_ net:_397_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 31.5, 29.4 ) - ( 33.6, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_070_ net:_111_ + srcs: net:_111_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 31.5 ) - ( 33.6, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_370_ net:_397_ + srcs: net:_244_ net:_370_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 33.6 ) - ( 33.6, 35.7) on Layer - +violation type: Horizontal congestion + srcs: net:_142_ net:_218_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 31.5, 37.8 ) - ( 33.6, 39.9) on Layer - violation type: Horizontal congestion srcs: net:_141_ net:_203_ congestion information: capacity:1 usage:2 overflow:1 @@ -183,156 +171,136 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 50.4 ) - ( 33.6, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:net44 + srcs: net:_059_ net:_142_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 31.5, 52.5 ) - ( 33.6, 54.6) on Layer - +violation type: Horizontal congestion + srcs: net:_054_ net:net44 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 54.6 ) - ( 33.6, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_054_ net:_164_ net:_403_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_164_ net:_403_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 56.7 ) - ( 33.6, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_055_ net:_156_ net:_420_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_055_ net:_156_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 58.8 ) - ( 33.6, 60.9) on Layer - violation type: Horizontal congestion srcs: net:_162_ net:_421_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 60.9 ) - ( 33.6, 63) on Layer - violation type: Horizontal congestion - srcs: net:_380_ net:net37 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 12.6 ) - ( 35.7, 14.7) on Layer - -violation type: Horizontal congestion - srcs: net:_027_ net:_248_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_027_ net:_374_ net:_389_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 16.8 ) - ( 35.7, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_081_ net:_115_ net:_374_ net:_401_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_115_ net:_158_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 18.9 ) - ( 35.7, 21) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_342_ net:_344_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_081_ net:_342_ net:_344_ net:_401_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 33.6, 21 ) - ( 35.7, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_043_ net:_074_ net:_244_ + srcs: net:_074_ net:_244_ net:_343_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 23.1 ) - ( 35.7, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_020_ net:_142_ net:_343_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_020_ net:_043_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 25.2 ) - ( 35.7, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_421_ + srcs: net:_142_ net:_421_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 27.3 ) - ( 35.7, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_016_ net:_111_ + srcs: net:clk net:_397_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 31.5 ) - ( 35.7, 33.6) on Layer - + bbox = ( 33.6, 29.4 ) - ( 35.7, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_252_ net:_370_ net:_397_ + srcs: net:_016_ net:_111_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 33.6, 33.6 ) - ( 35.7, 35.7) on Layer - + bbox = ( 33.6, 31.5 ) - ( 35.7, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_141_ net:_405_ + srcs: net:_252_ net:_370_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 35.7 ) - ( 35.7, 37.8) on Layer - + bbox = ( 33.6, 33.6 ) - ( 35.7, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_218_ net:_309_ + srcs: net:_141_ net:_309_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 37.8 ) - ( 35.7, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_141_ net:_203_ net:_306_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_141_ net:_203_ net:_218_ net:_306_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 33.6, 39.9 ) - ( 35.7, 42) on Layer - violation type: Horizontal congestion - srcs: net:_140_ net:_216_ net:_244_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_140_ net:_216_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 42 ) - ( 35.7, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_304_ net:_375_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_304_ net:_353_ net:_375_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 44.1 ) - ( 35.7, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_300_ net:_353_ + srcs: net:_140_ net:_300_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 46.2 ) - ( 35.7, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_140_ net:dpath.a_lt_b$in1\[8\] - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_140_ net:_244_ net:dpath.a_lt_b$in1\[8\] + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 48.3 ) - ( 35.7, 50.4) on Layer - violation type: Horizontal congestion srcs: net:_068_ net:_248_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 50.4 ) - ( 35.7, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_059_ net:_418_ + srcs: net:_142_ net:_418_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 52.5 ) - ( 35.7, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_158_ net:net44 + srcs: net:_059_ net:_158_ net:net44 congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 54.6 ) - ( 35.7, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_403_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_160_ net:_402_ net:_403_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 56.7 ) - ( 35.7, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_152_ net:_154_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 58.8 ) - ( 35.7, 60.9) on Layer - -violation type: Horizontal congestion - srcs: net:_380_ net:net37 + srcs: net:_401_ net:net37 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 12.6 ) - ( 37.8, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_389_ net:_401_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 14.7 ) - ( 37.8, 16.8) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_248_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 16.8 ) - ( 37.8, 18.9) on Layer - -violation type: Horizontal congestion - srcs: net:_115_ net:_367_ + srcs: net:_115_ net:_158_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 18.9 ) - ( 37.8, 21) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_342_ + srcs: net:_252_ net:_342_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 21 ) - ( 37.8, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_043_ net:_244_ + srcs: net:_244_ net:_367_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 23.1 ) - ( 37.8, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_252_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 25.2 ) - ( 37.8, 27.3) on Layer - -violation type: Horizontal congestion - srcs: net:_039_ net:_401_ + srcs: net:_039_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 29.4 ) - ( 37.8, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_111_ net:_370_ + srcs: net:_111_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 31.5 ) - ( 37.8, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_252_ net:_397_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 33.6 ) - ( 37.8, 35.7) on Layer - -violation type: Horizontal congestion - srcs: net:_141_ net:_200_ + srcs: net:_200_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 35.7 ) - ( 37.8, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_219_ net:_302_ net:_311_ + srcs: net:_141_ net:_302_ net:_311_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 37.8 ) - ( 37.8, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_217_ net:_306_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_217_ net:_219_ net:_306_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 39.9 ) - ( 37.8, 42) on Layer - violation type: Horizontal congestion srcs: net:_140_ net:_203_ net:_304_ net:_305_ @@ -355,17 +323,9 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 50.4 ) - ( 37.8, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_059_ net:_418_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_059_ net:_142_ net:_418_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 52.5 ) - ( 37.8, 54.6) on Layer - -violation type: Horizontal congestion - srcs: net:_142_ net:_158_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 54.6 ) - ( 37.8, 56.7) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_160_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 56.7 ) - ( 37.8, 58.8) on Layer - violation type: Horizontal congestion srcs: net:_056_ net:_152_ net:_153_ congestion information: capacity:1 usage:3 overflow:2 @@ -375,48 +335,40 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 60.9 ) - ( 37.8, 63) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:net31 + srcs: net:_248_ net:net31 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 10.5 ) - ( 39.9, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:_380_ net:net37 + srcs: net:_401_ net:net37 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 12.6 ) - ( 39.9, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_401_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 14.7 ) - ( 39.9, 16.8) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_389_ + srcs: net:_252_ net:_389_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 16.8 ) - ( 39.9, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_115_ net:_252_ + srcs: net:_115_ net:_158_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 18.9 ) - ( 39.9, 21) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_409_ + srcs: net:_097_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 21 ) - ( 39.9, 23.1) on Layer - -violation type: Horizontal congestion - srcs: net:_097_ net:_244_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 23.1 ) - ( 39.9, 25.2) on Layer - violation type: Horizontal congestion srcs: net:_131_ net:net53 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 27.3 ) - ( 39.9, 29.4) on Layer - + bbox = ( 37.8, 25.2 ) - ( 39.9, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_352_ net:_401_ + srcs: net:_352_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 29.4 ) - ( 39.9, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_093_ net:_370_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_093_ net:_127_ net:_401_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 31.5 ) - ( 39.9, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_111_ net:_127_ net:_397_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_111_ net:_370_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 33.6 ) - ( 39.9, 35.7) on Layer - violation type: Horizontal congestion srcs: net:_128_ net:_148_ net:_200_ @@ -455,52 +407,48 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 52.5 ) - ( 39.9, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_058_ net:_160_ + srcs: net:_158_ net:_160_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 37.8, 54.6 ) - ( 39.9, 56.7) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_058_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 56.7 ) - ( 39.9, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_147_ net:_150_ net:_153_ net:_161_ + srcs: net:_147_ net:_150_ net:_152_ net:_153_ congestion information: capacity:1 usage:4 overflow:3 bbox = ( 37.8, 58.8 ) - ( 39.9, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_151_ net:_152_ + srcs: net:_151_ net:_161_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 60.9 ) - ( 39.9, 63) on Layer - -violation type: Horizontal congestion - srcs: net:_402_ net:net50 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 65.1 ) - ( 39.9, 67.2) on Layer - violation type: Horizontal congestion srcs: net:_401_ net:net37 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 12.6 ) - ( 42, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_248_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 14.7 ) - ( 42, 16.8) on Layer - -violation type: Horizontal congestion - srcs: net:_252_ net:_389_ + srcs: net:_252_ net:_380_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 16.8 ) - ( 42, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_244_ + srcs: net:_158_ net:_389_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 23.1 ) - ( 42, 25.2) on Layer - + bbox = ( 39.9, 18.9 ) - ( 42, 21) on Layer - violation type: Horizontal congestion - srcs: net:_131_ net:net53 + srcs: net:_142_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 27.3 ) - ( 42, 29.4) on Layer - + bbox = ( 39.9, 21 ) - ( 42, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_227_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_131_ net:_227_ net:_397_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 39.9, 29.4 ) - ( 42, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_363_ net:_370_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_149_ net:_352_ net:_363_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 39.9, 31.5 ) - ( 42, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_127_ net:_149_ net:_397_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_127_ net:_370_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 33.6 ) - ( 42, 35.7) on Layer - violation type: Horizontal congestion srcs: net:_128_ net:_201_ @@ -523,8 +471,8 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 39.9, 46.2 ) - ( 42, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_244_ net:_385_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_150_ net:_158_ net:_244_ net:_385_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 39.9, 48.3 ) - ( 42, 50.4) on Layer - violation type: Horizontal congestion srcs: net:_109_ net:_401_ @@ -535,19 +483,19 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 52.5 ) - ( 42, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_147_ net:_159_ + srcs: net:_158_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 58.8 ) - ( 42, 60.9) on Layer - + bbox = ( 39.9, 54.6 ) - ( 42, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_380_ + srcs: net:clk net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 63 ) - ( 42, 65.1) on Layer - + bbox = ( 39.9, 60.9 ) - ( 42, 63) on Layer - violation type: Horizontal congestion srcs: net:clk net:_412_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 65.1 ) - ( 42, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:net3 + srcs: net:_248_ net:net3 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 10.5 ) - ( 44.1, 12.6) on Layer - violation type: Horizontal congestion @@ -555,36 +503,32 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 12.6 ) - ( 44.1, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_248_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 14.7 ) - ( 44.1, 16.8) on Layer - -violation type: Horizontal congestion - srcs: net:_252_ net:_410_ + srcs: net:_252_ net:_380_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 16.8 ) - ( 44.1, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_335_ net:_409_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_335_ net:_409_ net:_410_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 18.9 ) - ( 44.1, 21) on Layer - violation type: Horizontal congestion srcs: net:_244_ net:_329_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 21 ) - ( 44.1, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_337_ net:_338_ net:_339_ net:_340_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_337_ net:_339_ net:_340_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 23.1 ) - ( 44.1, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_346_ net:net53 + srcs: net:_338_ net:net53 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 27.3 ) - ( 44.1, 29.4) on Layer - + bbox = ( 42, 25.2 ) - ( 44.1, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_228_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_131_ net:_346_ net:_397_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 29.4 ) - ( 44.1, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_131_ net:_149_ net:_227_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_149_ net:_227_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 31.5 ) - ( 44.1, 33.6) on Layer - violation type: Horizontal congestion srcs: net:_223_ net:_317_ net:_318_ @@ -595,15 +539,15 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 35.7 ) - ( 44.1, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_397_ + srcs: net:_352_ net:net43 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 37.8 ) - ( 44.1, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_220_ net:_325_ net:net43 - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_220_ net:_325_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 39.9 ) - ( 44.1, 42) on Layer - violation type: Horizontal congestion - srcs: net:_228_ net:_375_ + srcs: net:_253_ net:_375_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 42 ) - ( 44.1, 44.1) on Layer - violation type: Horizontal congestion @@ -611,12 +555,12 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 44.1 ) - ( 44.1, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_252_ net:_353_ net:_385_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_352_ net:_353_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 46.2 ) - ( 44.1, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_244_ net:_252_ net:_385_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 48.3 ) - ( 44.1, 50.4) on Layer - violation type: Horizontal congestion srcs: net:_243_ net:_401_ @@ -631,7 +575,7 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 54.6 ) - ( 44.1, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_117_ net:_380_ + srcs: net:_117_ net:_384_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 56.7 ) - ( 44.1, 58.8) on Layer - violation type: Horizontal congestion @@ -643,17 +587,9 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 60.9 ) - ( 44.1, 63) on Layer - violation type: Horizontal congestion - srcs: net:_029_ net:_412_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 65.1 ) - ( 44.1, 67.2) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_378_ + srcs: net:_029_ net:_378_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 71.4 ) - ( 44.1, 73.5) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_248_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 14.7 ) - ( 46.2, 16.8) on Layer - + bbox = ( 42, 67.2 ) - ( 44.1, 69.3) on Layer - violation type: Horizontal congestion srcs: net:_114_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 @@ -667,20 +603,16 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 21 ) - ( 46.2, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_206_ net:_337_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 25.2 ) - ( 46.2, 27.3) on Layer - -violation type: Horizontal congestion - srcs: net:_327_ net:net53 + srcs: net:_337_ net:_339_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 27.3 ) - ( 46.2, 29.4) on Layer - + bbox = ( 44.1, 23.1 ) - ( 46.2, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_207_ net:_352_ net:_410_ + srcs: net:_207_ net:_397_ net:_410_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 29.4 ) - ( 46.2, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_131_ net:_149_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_131_ net:_149_ net:_207_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 31.5 ) - ( 46.2, 33.6) on Layer - violation type: Horizontal congestion srcs: net:_221_ net:_317_ net:_318_ @@ -691,28 +623,28 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 35.7 ) - ( 46.2, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_397_ + srcs: net:_352_ net:net43 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 37.8 ) - ( 46.2, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_220_ net:_224_ net:_352_ net:net43 - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_220_ net:_224_ net:_327_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 39.9 ) - ( 46.2, 42) on Layer - violation type: Horizontal congestion - srcs: net:_228_ net:_375_ + srcs: net:_253_ net:_375_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 42 ) - ( 46.2, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_205_ net:_298_ + srcs: net:_228_ net:_298_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 44.1 ) - ( 46.2, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_252_ net:_353_ net:_385_ + srcs: net:_159_ net:_205_ net:_353_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 46.2 ) - ( 46.2, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_244_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_244_ net:_252_ net:_385_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 48.3 ) - ( 46.2, 50.4) on Layer - violation type: Horizontal congestion srcs: net:_242_ net:_401_ @@ -723,8 +655,8 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 52.5 ) - ( 46.2, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_117_ net:_158_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_117_ net:_158_ net:_384_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 56.7 ) - ( 46.2, 58.8) on Layer - violation type: Horizontal congestion srcs: net:_133_ net:_147_ @@ -747,79 +679,79 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 69.3 ) - ( 46.2, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_248_ + srcs: net:_252_ net:_408_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 14.7 ) - ( 48.3, 16.8) on Layer - -violation type: Horizontal congestion - srcs: net:_114_ net:_252_ net:_408_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 16.8 ) - ( 48.3, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_073_ net:_409_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_073_ net:_114_ net:_409_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 18.9 ) - ( 48.3, 21) on Layer - violation type: Horizontal congestion srcs: net:_209_ net:_244_ net:_329_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 21 ) - ( 48.3, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_114_ net:_210_ net:_212_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_210_ net:_327_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 46.2, 23.1 ) - ( 48.3, 25.2) on Layer - +violation type: Horizontal congestion + srcs: net:_212_ net:net53 + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 25.2 ) - ( 48.3, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_208_ net:net53 + srcs: net:_208_ net:_210_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 27.3 ) - ( 48.3, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_130_ net:_207_ net:_352_ + srcs: net:_129_ net:_397_ net:_410_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 29.4 ) - ( 48.3, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_129_ net:_131_ net:_149_ + srcs: net:_130_ net:_131_ net:_149_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 31.5 ) - ( 48.3, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_318_ net:_319_ net:_320_ net:_410_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_207_ net:_221_ net:_318_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 33.6 ) - ( 48.3, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_221_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_128_ net:_201_ net:_319_ net:_320_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 46.2, 35.7 ) - ( 48.3, 37.8) on Layer - -violation type: Horizontal congestion - srcs: net:_253_ net:_397_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 37.8 ) - ( 48.3, 39.9) on Layer - violation type: Horizontal congestion srcs: net:_352_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 39.9 ) - ( 48.3, 42) on Layer - + bbox = ( 46.2, 37.8 ) - ( 48.3, 39.9) on Layer - violation type: Horizontal congestion srcs: net:_116_ net:_213_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 42 ) - ( 48.3, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_168_ net:_215_ net:_298_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_168_ net:_298_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 44.1 ) - ( 48.3, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_205_ net:_353_ net:_385_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_159_ net:_205_ net:_353_ net:_385_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 46.2, 46.2 ) - ( 48.3, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_244_ net:_401_ + srcs: net:_215_ net:_244_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 48.3 ) - ( 48.3, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_229_ net:_235_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_229_ net:_235_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 50.4 ) - ( 48.3, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_165_ + srcs: net:_165_ net:_230_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 46.2, 52.5 ) - ( 48.3, 54.6) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_287_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 54.6 ) - ( 48.3, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_117_ net:_179_ net:_287_ + srcs: net:_117_ net:_165_ net:_179_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 56.7 ) - ( 48.3, 58.8) on Layer - violation type: Horizontal congestion @@ -831,28 +763,24 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 65.1 ) - ( 48.3, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_249_ net:_404_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_165_ net:_404_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 67.2 ) - ( 48.3, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_257_ net:_411_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_249_ net:_257_ net:_411_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 69.3 ) - ( 48.3, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_401_ net:_408_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 12.6 ) - ( 50.4, 14.7) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_248_ + srcs: net:clk net:_408_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 14.7 ) - ( 50.4, 16.8) on Layer - violation type: Horizontal congestion - srcs: net:_073_ net:_114_ net:_252_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_073_ net:_252_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 16.8 ) - ( 50.4, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_209_ net:_409_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_114_ net:_130_ net:_209_ net:_409_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 48.3, 18.9 ) - ( 50.4, 21) on Layer - violation type: Horizontal congestion srcs: net:_244_ net:_329_ net:_333_ @@ -863,71 +791,75 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 23.1 ) - ( 50.4, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_114_ net:_212_ + srcs: net:_212_ net:net53 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 25.2 ) - ( 50.4, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_130_ net:_208_ net:_352_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_129_ net:_130_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 48.3, 27.3 ) - ( 50.4, 29.4) on Layer - +violation type: Horizontal congestion + srcs: net:_208_ net:_397_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 29.4 ) - ( 50.4, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_132_ net:_320_ + srcs: net:_128_ net:_132_ net:_221_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 33.6 ) - ( 50.4, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_201_ net:_221_ + srcs: net:_201_ net:_320_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 35.7 ) - ( 50.4, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_397_ net:net43 - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_352_ net:net43 + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 37.8 ) - ( 50.4, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_347_ net:_352_ net:_368_ + srcs: net:_235_ net:_253_ net:_347_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 39.9 ) - ( 50.4, 42) on Layer - violation type: Horizontal congestion - srcs: net:_116_ net:_168_ net:_213_ + srcs: net:_116_ net:_213_ net:_368_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 42 ) - ( 50.4, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_215_ net:_235_ net:_298_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_168_ net:_298_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 44.1 ) - ( 50.4, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_205_ net:_353_ net:_385_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_159_ net:_205_ net:_353_ net:_385_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 48.3, 46.2 ) - ( 50.4, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_244_ net:_401_ + srcs: net:_215_ net:_244_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 48.3 ) - ( 50.4, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_241_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_160_ net:_229_ net:_241_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 50.4 ) - ( 50.4, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_229_ net:_230_ net:_235_ + srcs: net:_165_ net:_230_ net:_235_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 52.5 ) - ( 50.4, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_404_ + srcs: net:_287_ net:_404_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 54.6 ) - ( 50.4, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_117_ net:_179_ net:_287_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_117_ net:_179_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 56.7 ) - ( 50.4, 58.8) on Layer - violation type: Horizontal congestion srcs: net:_133_ net:_147_ net:_239_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 58.8 ) - ( 50.4, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_061_ net:_256_ + srcs: net:_061_ net:_255_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 63 ) - ( 50.4, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_255_ net:_412_ + srcs: net:_253_ net:_256_ net:_412_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 65.1 ) - ( 50.4, 67.2) on Layer - violation type: Horizontal congestion @@ -939,17 +871,13 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 69.3 ) - ( 50.4, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_401_ net:net39 + srcs: net:_248_ net:net39 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 12.6 ) - ( 52.5, 14.7) on Layer - + bbox = ( 50.4, 10.5 ) - ( 52.5, 12.6) on Layer - violation type: Horizontal congestion srcs: net:_019_ net:_042_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 14.7 ) - ( 52.5, 16.8) on Layer - -violation type: Horizontal congestion - srcs: net:_114_ net:_248_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 16.8 ) - ( 52.5, 18.9) on Layer - violation type: Horizontal congestion srcs: net:_130_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 @@ -959,52 +887,64 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 21 ) - ( 52.5, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_129_ net:_231_ net:_233_ net:net53 - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_211_ net:net53 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 50.4, 25.2 ) - ( 52.5, 27.3) on Layer - +violation type: Horizontal congestion + srcs: net:_129_ net:_231_ net:_233_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 27.3 ) - ( 52.5, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_130_ net:_232_ net:_352_ + srcs: net:_130_ net:_232_ net:_397_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 29.4 ) - ( 52.5, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_132_ net:_221_ net:_406_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_128_ net:_221_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 50.4, 33.6 ) - ( 52.5, 35.7) on Layer - +violation type: Horizontal congestion + srcs: net:_132_ net:_406_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 35.7 ) - ( 52.5, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_098_ net:_253_ net:net43 + srcs: net:_098_ net:_352_ net:net43 congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 37.8 ) - ( 52.5, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_347_ net:_352_ net:_397_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_249_ net:_253_ net:_347_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 39.9 ) - ( 52.5, 42) on Layer - violation type: Horizontal congestion srcs: net:_082_ net:_116_ net:_167_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 42 ) - ( 52.5, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_213_ net:_298_ net:_385_ + srcs: net:_213_ net:_298_ net:_353_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 44.1 ) - ( 52.5, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_214_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_214_ net:_385_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 46.2 ) - ( 52.5, 48.3) on Layer - violation type: Horizontal congestion srcs: net:_160_ net:_245_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 48.3 ) - ( 52.5, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_174_ net:_205_ net:_238_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_174_ net:_205_ net:_238_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 50.4 ) - ( 52.5, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_236_ net:_250_ + srcs: net:_165_ net:_236_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 52.5 ) - ( 52.5, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_179_ net:_180_ net:_287_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_250_ net:_287_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 50.4, 54.6 ) - ( 52.5, 56.7) on Layer - +violation type: Horizontal congestion + srcs: net:_179_ net:_180_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 56.7 ) - ( 52.5, 58.8) on Layer - violation type: Horizontal congestion srcs: net:_133_ net:_147_ net:_258_ @@ -1023,11 +963,11 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 69.3 ) - ( 52.5, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_401_ net:net39 + srcs: net:_042_ net:_371_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 12.6 ) - ( 54.6, 14.7) on Layer - + bbox = ( 52.5, 14.7 ) - ( 54.6, 16.8) on Layer - violation type: Horizontal congestion - srcs: net:_042_ net:_114_ + srcs: net:_114_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 16.8 ) - ( 54.6, 18.9) on Layer - violation type: Horizontal congestion @@ -1035,51 +975,47 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 18.9 ) - ( 54.6, 21) on Layer - violation type: Horizontal congestion - srcs: net:_330_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 21 ) - ( 54.6, 23.1) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_407_ + srcs: net:_330_ net:_407_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 23.1 ) - ( 54.6, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_072_ net:_113_ + srcs: net:_113_ net:net53 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 25.2 ) - ( 54.6, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_129_ net:net53 + srcs: net:_113_ net:_129_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 27.3 ) - ( 54.6, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_352_ net:_371_ + srcs: net:_352_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 29.4 ) - ( 54.6, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_112_ net:_401_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_112_ net:_371_ net:_401_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 31.5 ) - ( 54.6, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_221_ net:_406_ net:dpath.a_lt_b$in1\[15\] - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_128_ net:_406_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 35.7 ) - ( 54.6, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_021_ net:_253_ + srcs: net:clk net:dpath.a_lt_b$in1\[15\] net:net43 congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 37.8 ) - ( 54.6, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_397_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_021_ net:_249_ net:_253_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 39.9 ) - ( 54.6, 42) on Layer - violation type: Horizontal congestion - srcs: net:_116_ net:_349_ net:_385_ + srcs: net:_116_ net:_245_ net:_349_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 42 ) - ( 54.6, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_298_ + srcs: net:_298_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 44.1 ) - ( 54.6, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_353_ + srcs: net:_159_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 46.2 ) - ( 54.6, 48.3) on Layer - violation type: Horizontal congestion @@ -1091,27 +1027,31 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 50.4 ) - ( 54.6, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_178_ net:_236_ + srcs: net:_236_ net:_250_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 54.6 ) - ( 54.6, 56.7) on Layer - + bbox = ( 52.5, 52.5 ) - ( 54.6, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_287_ + srcs: net:_178_ net:_287_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 56.7 ) - ( 54.6, 58.8) on Layer - + bbox = ( 52.5, 54.6 ) - ( 54.6, 56.7) on Layer - violation type: Horizontal congestion srcs: net:_147_ net:_258_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 58.8 ) - ( 54.6, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_258_ + srcs: net:_173_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 52.5, 63 ) - ( 54.6, 65.1) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_258_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 65.1 ) - ( 54.6, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_165_ + srcs: net:_118_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 67.2 ) - ( 54.6, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_008_ net:_118_ + srcs: net:_008_ net:_126_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 69.3 ) - ( 54.6, 71.4) on Layer - violation type: Horizontal congestion @@ -1119,23 +1059,27 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 71.4 ) - ( 54.6, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:_118_ net:_160_ + srcs: net:_160_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 73.5 ) - ( 54.6, 75.6) on Layer - + bbox = ( 52.5, 77.7 ) - ( 54.6, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_407_ + srcs: net:_373_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 23.1 ) - ( 56.7, 25.2) on Layer - + bbox = ( 54.6, 16.8 ) - ( 56.7, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_072_ net:_113_ + srcs: net:_407_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 25.2 ) - ( 56.7, 27.3) on Layer - + bbox = ( 54.6, 18.9 ) - ( 56.7, 21) on Layer - violation type: Horizontal congestion - srcs: net:_129_ net:net53 + srcs: net:_079_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 27.3 ) - ( 56.7, 29.4) on Layer - + bbox = ( 54.6, 21 ) - ( 56.7, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_371_ net:net43 + srcs: net:_072_ net:net53 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 25.2 ) - ( 56.7, 27.3) on Layer - +violation type: Horizontal congestion + srcs: net:_113_ net:_371_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 29.4 ) - ( 56.7, 31.5) on Layer - violation type: Horizontal congestion @@ -1143,89 +1087,81 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 31.5 ) - ( 56.7, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:dpath.a_lt_b$in1\[11\] + srcs: net:clk net:_221_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 33.6 ) - ( 56.7, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_221_ net:_406_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_397_ net:_406_ net:dpath.a_lt_b$in1\[11\] + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 35.7 ) - ( 56.7, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_397_ + srcs: net:_249_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 39.9 ) - ( 56.7, 42) on Layer - -violation type: Horizontal congestion - srcs: net:_245_ net:_385_ net:dpath.a_lt_b$in0\[15\] - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 54.6, 42 ) - ( 56.7, 44.1) on Layer - + bbox = ( 54.6, 37.8 ) - ( 56.7, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_298_ + srcs: net:_245_ net:dpath.a_lt_b$in0\[15\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 44.1 ) - ( 56.7, 46.2) on Layer - + bbox = ( 54.6, 42 ) - ( 56.7, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_298_ net:_377_ net:_385_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 54.6, 46.2 ) - ( 56.7, 48.3) on Layer - violation type: Horizontal congestion srcs: net:_160_ net:_199_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 48.3 ) - ( 56.7, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_174_ net:_177_ net:_237_ + srcs: net:_165_ net:_177_ net:_237_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 50.4 ) - ( 56.7, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_184_ net:_236_ + srcs: net:_174_ net:_287_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 54.6 ) - ( 56.7, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_287_ + srcs: net:_184_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 56.7 ) - ( 56.7, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_146_ net:_147_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_146_ net:_147_ net:_236_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 58.8 ) - ( 56.7, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_262_ + srcs: net:_173_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 60.9 ) - ( 56.7, 63) on Layer - -violation type: Horizontal congestion - srcs: net:_118_ net:_173_ net:_348_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 63 ) - ( 56.7, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_173_ net:_253_ + srcs: net:_110_ net:_173_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 65.1 ) - ( 56.7, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_165_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_118_ net:_165_ net:_348_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 67.2 ) - ( 56.7, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_100_ net:_159_ + srcs: net:_126_ net:_134_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 71.4 ) - ( 56.7, 73.5) on Layer - + bbox = ( 54.6, 69.3 ) - ( 56.7, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_118_ net:_160_ + srcs: net:_100_ net:_118_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 73.5 ) - ( 56.7, 75.6) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_249_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 77.7 ) - ( 56.7, 79.8) on Layer - violation type: Horizontal congestion srcs: net:_371_ net:net19 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 14.7 ) - ( 58.8, 16.8) on Layer - violation type: Horizontal congestion - srcs: net:_113_ net:_248_ net:dpath.a_lt_b$in0\[12\] - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_113_ net:dpath.a_lt_b$in0\[12\] + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 23.1 ) - ( 58.8, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_018_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_018_ net:net53 + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 25.2 ) - ( 58.8, 27.3) on Layer - -violation type: Horizontal congestion - srcs: net:_129_ net:net53 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 27.3 ) - ( 58.8, 29.4) on Layer - violation type: Horizontal congestion srcs: net:_371_ net:net43 congestion information: capacity:1 usage:2 overflow:1 @@ -1235,151 +1171,167 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 31.5 ) - ( 58.8, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_221_ net:_406_ + srcs: net:clk net:_221_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 56.7, 33.6 ) - ( 58.8, 35.7) on Layer - +violation type: Horizontal congestion + srcs: net:_397_ net:_406_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 35.7 ) - ( 58.8, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_253_ + srcs: net:_159_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 37.8 ) - ( 58.8, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_249_ net:_397_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_245_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 39.9 ) - ( 58.8, 42) on Layer - violation type: Horizontal congestion - srcs: net:_315_ net:_385_ + srcs: net:_165_ net:_315_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 42 ) - ( 58.8, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_388_ + srcs: net:_160_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 44.1 ) - ( 58.8, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_377_ net:_385_ net:_388_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 46.2 ) - ( 58.8, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_237_ net:_295_ net:_297_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_165_ net:_295_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 48.3 ) - ( 58.8, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_171_ net:_177_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_177_ net:_237_ net:_297_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 50.4 ) - ( 58.8, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_195_ net:_377_ + srcs: net:_171_ net:_195_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 52.5 ) - ( 58.8, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_196_ net:_236_ + srcs: net:_196_ net:_287_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 54.6 ) - ( 58.8, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_271_ net:_287_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_245_ net:_271_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 56.7 ) - ( 58.8, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_143_ net:_144_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_143_ net:_144_ net:_236_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 58.8 ) - ( 58.8, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_119_ net:_126_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_118_ net:_119_ net:_144_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 60.9 ) - ( 58.8, 63) on Layer - violation type: Horizontal congestion - srcs: net:_118_ net:_172_ net:_263_ + srcs: net:_172_ net:_253_ net:_263_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 63 ) - ( 58.8, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_145_ net:_253_ + srcs: net:_110_ net:_145_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 65.1 ) - ( 58.8, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_165_ + srcs: net:_118_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 67.2 ) - ( 58.8, 69.3) on Layer - +violation type: Horizontal congestion + srcs: net:_126_ net:_159_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 56.7, 69.3 ) - ( 58.8, 71.4) on Layer - violation type: Horizontal congestion srcs: net:_160_ net:_391_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 73.5 ) - ( 58.8, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_370_ net:_388_ + srcs: net:clk net:_160_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 56.7, 75.6 ) - ( 58.8, 77.7) on Layer - +violation type: Horizontal congestion + srcs: net:_388_ net:_393_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 86.1 ) - ( 58.8, 88.2) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:net53 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 58.8, 25.2 ) - ( 60.9, 27.3) on Layer - violation type: Horizontal congestion srcs: net:_112_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 31.5 ) - ( 60.9, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_249_ + srcs: net:clk net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 37.8 ) - ( 60.9, 39.9) on Layer - + bbox = ( 58.8, 33.6 ) - ( 60.9, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_253_ net:_406_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_249_ net:_406_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 58.8, 35.7 ) - ( 60.9, 37.8) on Layer - +violation type: Horizontal congestion + srcs: net:_245_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 39.9 ) - ( 60.9, 42) on Layer - violation type: Horizontal congestion - srcs: net:_359_ net:_385_ + srcs: net:_165_ net:_359_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 42 ) - ( 60.9, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_122_ net:_165_ + srcs: net:_122_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 44.1 ) - ( 60.9, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_177_ net:_193_ net:_353_ + srcs: net:_193_ net:_377_ net:_385_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 46.2 ) - ( 60.9, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_138_ net:_272_ net:_297_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_138_ net:_272_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 48.3 ) - ( 60.9, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_171_ net:_388_ + srcs: net:_177_ net:_297_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 50.4 ) - ( 60.9, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_195_ net:_377_ + srcs: net:_171_ net:_195_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 52.5 ) - ( 60.9, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_287_ + srcs: net:_287_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 56.7 ) - ( 60.9, 58.8) on Layer - + bbox = ( 58.8, 54.6 ) - ( 60.9, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_143_ net:_144_ + srcs: net:_143_ net:_236_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 58.8 ) - ( 60.9, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_119_ net:_126_ + srcs: net:_119_ net:_144_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 60.9 ) - ( 60.9, 63) on Layer - violation type: Horizontal congestion - srcs: net:_172_ net:_265_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_172_ net:_253_ net:_265_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 63 ) - ( 60.9, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_135_ net:_253_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 65.1 ) - ( 60.9, 67.2) on Layer - -violation type: Horizontal congestion - srcs: net:_110_ net:_165_ + srcs: net:_135_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 67.2 ) - ( 60.9, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_353_ net:_356_ + srcs: net:_126_ net:_159_ net:_356_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 69.3 ) - ( 60.9, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_047_ net:_119_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_047_ net:_119_ net:_353_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 71.4 ) - ( 60.9, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_391_ + srcs: net:clk net:_160_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 75.6 ) - ( 60.9, 77.7) on Layer - violation type: Horizontal congestion - srcs: net:_388_ net:net22 + srcs: net:_388_ net:net1 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 86.1 ) - ( 60.9, 88.2) on Layer - violation type: Horizontal congestion @@ -1389,61 +1341,69 @@ violation type: Horizontal congestion violation type: Horizontal congestion srcs: net:_248_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 37.8 ) - ( 63, 39.9) on Layer - + bbox = ( 60.9, 35.7 ) - ( 63, 37.8) on Layer - violation type: Horizontal congestion srcs: net:_245_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 39.9 ) - ( 63, 42) on Layer - violation type: Horizontal congestion - srcs: net:_050_ net:_385_ + srcs: net:_050_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 42 ) - ( 63, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_122_ net:_138_ net:_165_ + srcs: net:_122_ net:_138_ net:_353_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 44.1 ) - ( 63, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_177_ net:_288_ net:_353_ + srcs: net:_288_ net:_377_ net:_385_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 46.2 ) - ( 63, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_272_ net:_289_ net:_297_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_272_ net:_289_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 48.3 ) - ( 63, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_169_ net:_171_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_169_ net:_177_ net:_297_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 50.4 ) - ( 63, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_189_ net:_377_ + srcs: net:_171_ net:_189_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 52.5 ) - ( 63, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_143_ net:_191_ + srcs: net:_191_ net:_287_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 54.6 ) - ( 63, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_287_ + srcs: net:_143_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 56.7 ) - ( 63, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_144_ + srcs: net:_236_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 60.9 ) - ( 63, 63) on Layer - + bbox = ( 60.9, 58.8 ) - ( 63, 60.9) on Layer - +violation type: Horizontal congestion + srcs: net:_253_ net:_413_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 63 ) - ( 63, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_119_ net:_135_ net:_253_ + srcs: net:_110_ net:_119_ net:_135_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 65.1 ) - ( 63, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_009_ net:_110_ net:_165_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_009_ net:_165_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 67.2 ) - ( 63, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_353_ + srcs: net:_126_ net:_159_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 69.3 ) - ( 63, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_160_ + srcs: net:_119_ net:_353_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 71.4 ) - ( 63, 73.5) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_391_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 73.5 ) - ( 63, 75.6) on Layer - violation type: Horizontal congestion @@ -1451,11 +1411,11 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 33.6 ) - ( 65.1, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_248_ + srcs: net:_248_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 35.7 ) - ( 65.1, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_416_ + srcs: net:_159_ net:_416_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 37.8 ) - ( 65.1, 39.9) on Layer - violation type: Horizontal congestion @@ -1463,7 +1423,7 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 39.9 ) - ( 65.1, 42) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_385_ + srcs: net:_165_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 42 ) - ( 65.1, 44.1) on Layer - violation type: Horizontal congestion @@ -1471,23 +1431,23 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 44.1 ) - ( 65.1, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_177_ net:_353_ + srcs: net:_377_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 46.2 ) - ( 65.1, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_272_ net:_284_ net:_297_ + srcs: net:_169_ net:_272_ net:_284_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 48.3 ) - ( 65.1, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_169_ net:_171_ net:_189_ net:_296_ + srcs: net:_171_ net:_177_ net:_296_ net:_297_ congestion information: capacity:1 usage:4 overflow:3 bbox = ( 63, 50.4 ) - ( 65.1, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_123_ net:_190_ net:_377_ + srcs: net:_169_ net:_189_ net:_190_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 52.5 ) - ( 65.1, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_143_ net:_169_ + srcs: net:_123_ net:_143_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 54.6 ) - ( 65.1, 56.7) on Layer - violation type: Horizontal congestion @@ -1495,43 +1455,43 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 56.7 ) - ( 65.1, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_123_ net:_236_ net:_253_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_123_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 58.8 ) - ( 65.1, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_417_ + srcs: net:_236_ net:_413_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 60.9 ) - ( 65.1, 63) on Layer - + bbox = ( 63, 63 ) - ( 65.1, 65.1) on Layer - violation type: Horizontal congestion srcs: net:_110_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 65.1 ) - ( 65.1, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_063_ net:_159_ net:_165_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_063_ net:_165_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 67.2 ) - ( 65.1, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_353_ + srcs: net:_126_ net:_159_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 69.3 ) - ( 65.1, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_031_ net:_119_ + srcs: net:_119_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 71.4 ) - ( 65.1, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_160_ + srcs: net:clk net:_031_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 73.5 ) - ( 65.1, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:net41 + srcs: net:_160_ net:_391_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 33.6 ) - ( 67.2, 35.7) on Layer - + bbox = ( 63, 75.6 ) - ( 65.1, 77.7) on Layer - violation type: Horizontal congestion - srcs: net:_122_ net:_159_ + srcs: net:_122_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 35.7 ) - ( 67.2, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_286_ + srcs: net:_159_ net:_286_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 37.8 ) - ( 67.2, 39.9) on Layer - violation type: Horizontal congestion @@ -1539,27 +1499,23 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 65.1, 39.9 ) - ( 67.2, 42) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_385_ + srcs: net:_165_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 42 ) - ( 67.2, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_122_ net:_138_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 44.1 ) - ( 67.2, 46.2) on Layer - -violation type: Horizontal congestion - srcs: net:_177_ net:_353_ + srcs: net:_377_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 46.2 ) - ( 67.2, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_272_ net:_284_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_177_ net:_272_ net:_284_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 65.1, 48.3 ) - ( 67.2, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_171_ net:_189_ net:_283_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_171_ net:_283_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 50.4 ) - ( 67.2, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_123_ net:_169_ net:_377_ + srcs: net:_123_ net:_169_ net:_189_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 65.1, 52.5 ) - ( 67.2, 54.6) on Layer - violation type: Horizontal congestion @@ -1567,31 +1523,27 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 54.6 ) - ( 67.2, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_013_ net:_245_ + srcs: net:_245_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 56.7 ) - ( 67.2, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_123_ net:_253_ + srcs: net:_013_ net:_123_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 58.8 ) - ( 67.2, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_417_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_413_ net:_417_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 65.1, 60.9 ) - ( 67.2, 63) on Layer - violation type: Horizontal congestion - srcs: net:_236_ net:_413_ + srcs: net:_236_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 63 ) - ( 67.2, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_126_ + srcs: net:_159_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 65.1 ) - ( 67.2, 67.2) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_165_ net:_245_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 65.1, 67.2 ) - ( 67.2, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_261_ net:_353_ + srcs: net:_126_ net:_261_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 69.3 ) - ( 67.2, 71.4) on Layer - violation type: Horizontal congestion @@ -1599,11 +1551,7 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 73.5 ) - ( 67.2, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:net41 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 33.6 ) - ( 69.3, 35.7) on Layer - -violation type: Horizontal congestion - srcs: net:_249_ net:_281_ + srcs: net:_159_ net:_281_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 37.8 ) - ( 69.3, 39.9) on Layer - violation type: Horizontal congestion @@ -1611,55 +1559,59 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 39.9 ) - ( 69.3, 42) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_385_ + srcs: net:_165_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 42 ) - ( 69.3, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_138_ net:_177_ net:_353_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_138_ net:_272_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 67.2, 44.1 ) - ( 69.3, 46.2) on Layer - +violation type: Horizontal congestion + srcs: net:_377_ net:_385_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 46.2 ) - ( 69.3, 48.3) on Layer - violation type: Horizontal congestion srcs: net:_177_ net:_272_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 48.3 ) - ( 69.3, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_136_ net:_171_ net:_189_ net:_283_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_136_ net:_171_ net:_283_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 50.4 ) - ( 69.3, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_137_ net:_377_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_137_ net:_139_ net:_189_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 52.5 ) - ( 69.3, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_139_ net:_143_ net:_253_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_143_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 54.6 ) - ( 69.3, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_013_ net:_051_ net:_245_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_051_ net:_245_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 56.7 ) - ( 69.3, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_417_ net:dpath.a_lt_b$in0\[7\] + srcs: net:_013_ net:_123_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 60.9 ) - ( 69.3, 63) on Layer - + bbox = ( 67.2, 58.8 ) - ( 69.3, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_236_ net:_245_ net:_413_ + srcs: net:_413_ net:_417_ net:dpath.a_lt_b$in0\[7\] congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 67.2, 63 ) - ( 69.3, 65.1) on Layer - + bbox = ( 67.2, 60.9 ) - ( 69.3, 63) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_110_ + srcs: net:_236_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 65.1 ) - ( 69.3, 67.2) on Layer - + bbox = ( 67.2, 63 ) - ( 69.3, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_159_ net:_165_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_159_ net:_165_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 67.2 ) - ( 69.3, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_092_ net:_353_ + srcs: net:_092_ net:_126_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 69.3 ) - ( 69.3, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_249_ + srcs: net:clk net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 71.4 ) - ( 69.3, 73.5) on Layer - violation type: Horizontal congestion @@ -1667,20 +1619,24 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 73.5 ) - ( 69.3, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_268_ net:_383_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 69.3, 37.8 ) - ( 71.4, 39.9) on Layer - + srcs: net:_381_ net:net41 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 29.4 ) - ( 71.4, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_273_ + srcs: net:clk net:_383_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 33.6 ) - ( 71.4, 35.7) on Layer - +violation type: Horizontal congestion + srcs: net:_245_ net:_273_ net:_381_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 39.9 ) - ( 71.4, 42) on Layer - violation type: Horizontal congestion srcs: net:_176_ net:_276_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 44.1 ) - ( 71.4, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_175_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_175_ net:_377_ net:_385_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 46.2 ) - ( 71.4, 48.3) on Layer - violation type: Horizontal congestion srcs: net:_175_ net:_186_ net:_278_ @@ -1691,8 +1647,8 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 50.4 ) - ( 71.4, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_137_ net:_188_ net:_377_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_137_ net:_188_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 52.5 ) - ( 71.4, 54.6) on Layer - violation type: Horizontal congestion srcs: net:_139_ net:_253_ @@ -1711,11 +1667,11 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 60.9 ) - ( 71.4, 63) on Layer - violation type: Horizontal congestion - srcs: net:_166_ net:_236_ net:_246_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_166_ net:_236_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 63 ) - ( 71.4, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_110_ + srcs: net:_110_ net:_246_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 65.1 ) - ( 71.4, 67.2) on Layer - violation type: Horizontal congestion @@ -1726,30 +1682,30 @@ violation type: Horizontal congestion srcs: net:_092_ net:_351_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 69.3 ) - ( 71.4, 71.4) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:net10 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 33.6 ) - ( 73.5, 35.7) on Layer - violation type: Horizontal congestion srcs: net:_064_ net:_274_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 39.9 ) - ( 73.5, 42) on Layer - violation type: Horizontal congestion - srcs: net:_136_ net:_385_ + srcs: net:_136_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 44.1 ) - ( 73.5, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_277_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_277_ net:_377_ net:_385_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 71.4, 46.2 ) - ( 73.5, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_175_ net:_186_ net:_415_ + srcs: net:_136_ net:_175_ net:_186_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 71.4, 48.3 ) - ( 73.5, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_136_ net:_187_ + srcs: net:_187_ net:_415_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 50.4 ) - ( 73.5, 52.5) on Layer - -violation type: Horizontal congestion - srcs: net:_137_ net:_377_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 52.5 ) - ( 73.5, 54.6) on Layer - violation type: Horizontal congestion srcs: net:_253_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 @@ -1759,33 +1715,37 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 60.9 ) - ( 73.5, 63) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_249_ + srcs: net:_159_ net:_398_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 65.1 ) - ( 73.5, 67.2) on Layer - + bbox = ( 71.4, 63 ) - ( 73.5, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_159_ net:_165_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_110_ net:_165_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 67.2 ) - ( 73.5, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_249_ + srcs: net:_376_ net:net1 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 37.8 ) - ( 75.6, 39.9) on Layer - + bbox = ( 71.4, 86.1 ) - ( 73.5, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:_136_ net:_385_ + srcs: net:_136_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 44.1 ) - ( 75.6, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_136_ net:_353_ + srcs: net:_377_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 46.2 ) - ( 75.6, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_121_ net:_175_ + srcs: net:_120_ net:_121_ net:_136_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 73.5, 48.3 ) - ( 75.6, 50.4) on Layer - +violation type: Horizontal congestion + srcs: net:_175_ net:_415_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 50.4 ) - ( 75.6, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_137_ net:_377_ + srcs: net:_121_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 52.5 ) - ( 75.6, 54.6) on Layer - + bbox = ( 73.5, 54.6 ) - ( 75.6, 56.7) on Layer - violation type: Horizontal congestion srcs: net:_065_ net:_087_ net:_249_ congestion information: capacity:1 usage:3 overflow:2 @@ -1799,43 +1759,43 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 60.9 ) - ( 75.6, 63) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_249_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 65.1 ) - ( 75.6, 67.2) on Layer - -violation type: Horizontal congestion - srcs: net:_110_ net:_369_ + srcs: net:_110_ net:_369_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 67.2 ) - ( 75.6, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_376_ net:net16 + srcs: net:_376_ net:net1 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 86.1 ) - ( 75.6, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:_010_ net:dpath.a_lt_b$in0\[4\] + srcs: net:_120_ net:dpath.a_lt_b$in0\[4\] congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 39.9 ) - ( 77.7, 42) on Layer - violation type: Horizontal congestion - srcs: net:_136_ net:_385_ + srcs: net:_010_ net:_102_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 44.1 ) - ( 77.7, 46.2) on Layer - + bbox = ( 75.6, 42 ) - ( 77.7, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_102_ net:_357_ + srcs: net:clk net:_136_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 75.6, 44.1 ) - ( 77.7, 46.2) on Layer - +violation type: Horizontal congestion + srcs: net:_357_ net:_377_ net:_385_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 75.6, 46.2 ) - ( 77.7, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_121_ + srcs: net:_120_ net:_121_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 50.4 ) - ( 77.7, 52.5) on Layer - + bbox = ( 75.6, 48.3 ) - ( 77.7, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_011_ net:_377_ + srcs: net:clk net:_137_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 52.5 ) - ( 77.7, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_065_ net:_137_ + srcs: net:_011_ net:_121_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 54.6 ) - ( 77.7, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_249_ + srcs: net:_065_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 56.7 ) - ( 77.7, 58.8) on Layer - violation type: Horizontal congestion @@ -1847,51 +1807,59 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 60.9 ) - ( 77.7, 63) on Layer - violation type: Horizontal congestion - srcs: net:_395_ net:_415_ + srcs: net:_249_ net:_398_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 75.6, 65.1 ) - ( 77.7, 67.2) on Layer - +violation type: Horizontal congestion + srcs: net:_372_ net:net33 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 75.6, 79.8 ) - ( 77.7, 81.9) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_396_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 77.7, 44.1 ) - ( 79.8, 46.2) on Layer - +violation type: Horizontal congestion + srcs: net:_385_ net:_395_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 48.3 ) - ( 79.8, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_011_ net:_377_ + srcs: net:_011_ net:dpath.a_lt_b$in1\[5\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 52.5 ) - ( 79.8, 54.6) on Layer - + bbox = ( 77.7, 54.6 ) - ( 79.8, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_382_ net:net49 + srcs: net:net45 net:net49 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 60.9 ) - ( 79.8, 63) on Layer - violation type: Horizontal congestion - srcs: net:_396_ net:net47 + srcs: net:_249_ net:_398_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 46.2 ) - ( 81.9, 48.3) on Layer - + bbox = ( 77.7, 65.1 ) - ( 79.8, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:net1 net:net33 + srcs: net:_396_ net:net49 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 88.2 ) - ( 81.9, 90.3) on Layer - + bbox = ( 79.8, 44.1 ) - ( 81.9, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[24] net:net8 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 48.3 ) - ( 88.2, 50.4) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:_380_ + srcs: net:_377_ net:net47 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 33.6 ) - ( 23.1, 35.7) on Layer - -violation type: Vertical congestion - srcs: net:_375_ net:_380_ + bbox = ( 79.8, 46.2 ) - ( 81.9, 48.3) on Layer - +violation type: Horizontal congestion + srcs: net:_385_ net:_395_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 42 ) - ( 23.1, 44.1) on Layer - -violation type: Vertical congestion - srcs: net:_392_ net:_405_ + bbox = ( 79.8, 48.3 ) - ( 81.9, 50.4) on Layer - +violation type: Horizontal congestion + srcs: net:net45 net:net49 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 35.7 ) - ( 25.2, 37.8) on Layer - -violation type: Vertical congestion - srcs: net:_392_ net:net36 + bbox = ( 79.8, 60.9 ) - ( 81.9, 63) on Layer - +violation type: Horizontal congestion + srcs: net:req_msg[0] net:net32 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 48.3 ) - ( 25.2, 50.4) on Layer - + bbox = ( 86.1, 69.3 ) - ( 88.2, 71.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:_401_ + srcs: net:_370_ net:_375_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 37.8 ) - ( 27.3, 39.9) on Layer - + bbox = ( 18.9, 42 ) - ( 21, 44.1) on Layer - violation type: Vertical congestion - srcs: net:clk net:_401_ + srcs: net:_107_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 25.2, 39.9 ) - ( 27.3, 42) on Layer - violation type: Vertical congestion @@ -1914,68 +1882,44 @@ violation type: Vertical congestion srcs: net:clk net:net36 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 25.2, 50.4 ) - ( 27.3, 52.5) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_401_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 27.3 ) - ( 29.4, 29.4) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_037_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 33.6 ) - ( 29.4, 35.7) on Layer - violation type: Vertical congestion srcs: net:_125_ net:_362_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 37.8 ) - ( 29.4, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_053_ net:_362_ net:dpath.a_lt_b$in1\[9\] - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_053_ net:dpath.a_lt_b$in1\[9\] + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 39.9 ) - ( 29.4, 42) on Layer - violation type: Vertical congestion - srcs: net:_090_ net:_353_ net:_386_ + srcs: net:_090_ net:_124_ net:_386_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 27.3, 46.2 ) - ( 29.4, 48.3) on Layer - violation type: Vertical congestion srcs: net:_124_ net:_386_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 48.3 ) - ( 29.4, 50.4) on Layer - -violation type: Vertical congestion - srcs: net:_000_ net:_386_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 52.5 ) - ( 29.4, 54.6) on Layer - violation type: Vertical congestion srcs: net:_386_ net:_403_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 54.6 ) - ( 29.4, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_248_ + srcs: net:_248_ net:_387_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 25.2 ) - ( 31.5, 27.3) on Layer - + bbox = ( 29.4, 23.1 ) - ( 31.5, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_248_ + srcs: net:_077_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 27.3 ) - ( 31.5, 29.4) on Layer - -violation type: Vertical congestion - srcs: net:_077_ net:_158_ net:_248_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 29.4, 29.4 ) - ( 31.5, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_248_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 31.5 ) - ( 31.5, 33.6) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_248_ + srcs: net:_037_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 33.6 ) - ( 31.5, 35.7) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_248_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 35.7 ) - ( 31.5, 37.8) on Layer - violation type: Vertical congestion srcs: net:_248_ net:_307_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 37.8 ) - ( 31.5, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_107_ net:_141_ net:_248_ + srcs: net:_141_ net:_248_ net:_362_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 29.4, 39.9 ) - ( 31.5, 42) on Layer - violation type: Vertical congestion @@ -1987,7 +1931,7 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 44.1 ) - ( 31.5, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_124_ net:_248_ + srcs: net:_248_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 46.2 ) - ( 31.5, 48.3) on Layer - violation type: Vertical congestion @@ -1995,35 +1939,35 @@ violation type: Vertical congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 29.4, 48.3 ) - ( 31.5, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_054_ net:net44 + srcs: net:_158_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 54.6 ) - ( 31.5, 56.7) on Layer - + bbox = ( 31.5, 18.9 ) - ( 33.6, 21) on Layer - violation type: Vertical congestion - srcs: net:_374_ net:_380_ + srcs: net:_158_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 16.8 ) - ( 33.6, 18.9) on Layer - + bbox = ( 31.5, 21 ) - ( 33.6, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_387_ + srcs: net:_158_ net:_343_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 23.1 ) - ( 33.6, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_308_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_158_ net:_244_ net:_308_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 31.5, 27.3 ) - ( 33.6, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_070_ net:_142_ net:_314_ + srcs: net:_158_ net:_244_ net:_314_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 31.5, 29.4 ) - ( 33.6, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_397_ + srcs: net:_158_ net:_244_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 31.5 ) - ( 33.6, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_091_ net:_142_ + srcs: net:_091_ net:_158_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 33.6 ) - ( 33.6, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_091_ net:_125_ net:_142_ + srcs: net:_091_ net:_125_ net:_158_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 31.5, 35.7 ) - ( 33.6, 37.8) on Layer - violation type: Vertical congestion @@ -2055,56 +1999,56 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 56.7 ) - ( 33.6, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_155_ net:_162_ net:_420_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_155_ net:_162_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 58.8 ) - ( 33.6, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_027_ net:_248_ + srcs: net:_027_ net:_389_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 16.8 ) - ( 35.7, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_115_ net:_248_ + srcs: net:_081_ net:_115_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 18.9 ) - ( 35.7, 21) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_342_ + srcs: net:_020_ net:_244_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 21 ) - ( 35.7, 23.1) on Layer - -violation type: Vertical congestion - srcs: net:_020_ net:_043_ net:_244_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 23.1 ) - ( 35.7, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_313_ + srcs: net:_142_ net:_244_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 33.6, 25.2 ) - ( 35.7, 27.3) on Layer - +violation type: Vertical congestion + srcs: net:_070_ net:_142_ net:_313_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 29.4 ) - ( 35.7, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_313_ + srcs: net:_142_ net:_313_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 31.5 ) - ( 35.7, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_405_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_142_ net:_244_ net:_405_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 33.6 ) - ( 35.7, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_141_ net:_244_ + srcs: net:_142_ net:_244_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 35.7 ) - ( 35.7, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_141_ net:_244_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_141_ net:_218_ net:_244_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 37.8 ) - ( 35.7, 39.9) on Layer - violation type: Vertical congestion srcs: net:_244_ net:_306_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 39.9 ) - ( 35.7, 42) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_216_ + srcs: net:_216_ net:_244_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 42 ) - ( 35.7, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_124_ net:_140_ net:_353_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_124_ net:_244_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 44.1 ) - ( 35.7, 46.2) on Layer - violation type: Vertical congestion srcs: net:_014_ net:_158_ @@ -2119,29 +2063,29 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 52.5 ) - ( 35.7, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_059_ net:_421_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_054_ net:_059_ net:_421_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 54.6 ) - ( 35.7, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_152_ net:_402_ net:_421_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_152_ net:_421_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 56.7 ) - ( 35.7, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_402_ net:_421_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_154_ net:_420_ net:_421_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 58.8 ) - ( 35.7, 60.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_401_ + srcs: net:_374_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 16.8 ) - ( 37.8, 18.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_081_ + srcs: net:_367_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 18.9 ) - ( 37.8, 21) on Layer - violation type: Vertical congestion - srcs: net:clk net:_343_ + srcs: net:_252_ net:_367_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 23.1 ) - ( 37.8, 25.2) on Layer - + bbox = ( 35.7, 21 ) - ( 37.8, 23.1) on Layer - violation type: Vertical congestion srcs: net:clk net:_252_ congestion information: capacity:1 usage:2 overflow:1 @@ -2155,15 +2099,15 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 29.4 ) - ( 37.8, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_370_ + srcs: net:_252_ net:_312_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 31.5 ) - ( 37.8, 33.6) on Layer - + bbox = ( 35.7, 33.6 ) - ( 37.8, 35.7) on Layer - violation type: Vertical congestion srcs: net:_302_ net:_311_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 35.7 ) - ( 37.8, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_218_ net:_309_ net:_310_ + srcs: net:_219_ net:_309_ net:_310_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 37.8 ) - ( 37.8, 39.9) on Layer - violation type: Vertical congestion @@ -2171,35 +2115,35 @@ violation type: Vertical congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 39.9 ) - ( 37.8, 42) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_303_ net:_304_ + srcs: net:_140_ net:_303_ net:_304_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 42 ) - ( 37.8, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_294_ + srcs: net:_140_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 46.2 ) - ( 37.8, 48.3) on Layer - + bbox = ( 35.7, 44.1 ) - ( 37.8, 46.2) on Layer - violation type: Vertical congestion - srcs: net:clk net:_151_ net:_154_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 35.7, 58.8 ) - ( 37.8, 60.9) on Layer - + srcs: net:_140_ net:_294_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 35.7, 46.2 ) - ( 37.8, 48.3) on Layer - violation type: Vertical congestion - srcs: net:clk net:_389_ + srcs: net:_059_ net:net44 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 14.7 ) - ( 39.9, 16.8) on Layer - + bbox = ( 35.7, 52.5 ) - ( 37.8, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_367_ + srcs: net:_151_ net:_402_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 18.9 ) - ( 39.9, 21) on Layer - + bbox = ( 35.7, 58.8 ) - ( 37.8, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_367_ + srcs: net:_252_ net:dpath.a_lt_b$in0\[14\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 21 ) - ( 39.9, 23.1) on Layer - + bbox = ( 37.8, 16.8 ) - ( 39.9, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_131_ net:_252_ net:_352_ + srcs: net:_043_ net:_131_ net:_352_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 23.1 ) - ( 39.9, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_131_ net:_352_ + srcs: net:_352_ net:net53 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 25.2 ) - ( 39.9, 27.3) on Layer - violation type: Vertical congestion @@ -2211,16 +2155,16 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 31.5 ) - ( 39.9, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_127_ net:_200_ net:_252_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_127_ net:_200_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 33.6 ) - ( 39.9, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_252_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_140_ net:_141_ net:_252_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 35.7 ) - ( 39.9, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_219_ net:_252_ net:_302_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_140_ net:_252_ net:_302_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 37.8 ) - ( 39.9, 39.9) on Layer - violation type: Vertical congestion srcs: net:_140_ net:_302_ net:_419_ @@ -2243,23 +2187,19 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 56.7 ) - ( 39.9, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_152_ net:_157_ net:_160_ + srcs: net:_157_ net:_160_ net:_161_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 58.8 ) - ( 39.9, 60.9) on Layer - violation type: Vertical congestion srcs: net:_160_ net:_402_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 60.9 ) - ( 39.9, 63) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_402_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 63 ) - ( 39.9, 65.1) on Layer - violation type: Vertical congestion srcs: net:_115_ net:_158_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 18.9 ) - ( 42, 21) on Layer - violation type: Vertical congestion - srcs: net:_097_ net:_115_ + srcs: net:_115_ net:_142_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 21 ) - ( 42, 23.1) on Layer - violation type: Vertical congestion @@ -2267,16 +2207,20 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 23.1 ) - ( 42, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_115_ net:_206_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_115_ net:_131_ net:_142_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 39.9, 25.2 ) - ( 42, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_093_ net:_352_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 39.9, 29.4 ) - ( 42, 31.5) on Layer - + srcs: net:_131_ net:_227_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 39.9, 27.3 ) - ( 42, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_111_ net:_127_ + srcs: net:_093_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 39.9, 29.4 ) - ( 42, 31.5) on Layer - +violation type: Vertical congestion + srcs: net:_111_ net:_127_ net:_149_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 39.9, 31.5 ) - ( 42, 33.6) on Layer - violation type: Vertical congestion srcs: net:_148_ net:_150_ @@ -2307,37 +2251,41 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 46.2 ) - ( 42, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_150_ + srcs: net:_142_ net:_158_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 48.3 ) - ( 42, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_109_ net:_142_ net:_150_ + srcs: net:_109_ net:_142_ net:_158_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 39.9, 50.4 ) - ( 42, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_109_ net:_150_ + srcs: net:_109_ net:_158_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 52.5 ) - ( 42, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:ctrl.state.out\[2\] - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 54.6 ) - ( 42, 56.7) on Layer - -violation type: Vertical congestion - srcs: net:_058_ net:_150_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_058_ net:_150_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 39.9, 56.7 ) - ( 42, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_161_ + srcs: net:clk net:_152_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 58.8 ) - ( 42, 60.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_159_ + srcs: net:clk net:_402_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 60.9 ) - ( 42, 63) on Layer - + bbox = ( 39.9, 63 ) - ( 42, 65.1) on Layer - violation type: Vertical congestion srcs: net:clk net:net33 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 65.1 ) - ( 42, 67.2) on Layer - +violation type: Vertical congestion + srcs: net:clk net:net33 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 39.9, 67.2 ) - ( 42, 69.3) on Layer - +violation type: Vertical congestion + srcs: net:clk net:net33 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 39.9, 69.3 ) - ( 42, 71.4) on Layer - violation type: Vertical congestion srcs: net:_410_ net:net3 congestion information: capacity:1 usage:2 overflow:1 @@ -2347,169 +2295,173 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 14.7 ) - ( 44.1, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_389_ net:_390_ + srcs: net:_390_ net:_410_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 16.8 ) - ( 44.1, 18.9) on Layer - violation type: Vertical congestion srcs: net:_142_ net:_389_ net:_409_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 18.9 ) - ( 44.1, 21) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_244_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 21 ) - ( 44.1, 23.1) on Layer - violation type: Vertical congestion srcs: net:_338_ net:_341_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 23.1 ) - ( 44.1, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_131_ net:_345_ + srcs: net:_206_ net:_341_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 27.3 ) - ( 44.1, 29.4) on Layer - + bbox = ( 42, 25.2 ) - ( 44.1, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_131_ net:_227_ net:_228_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 42, 29.4 ) - ( 44.1, 31.5) on Layer - + srcs: net:_345_ net:_346_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 42, 27.3 ) - ( 44.1, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_149_ net:_228_ + srcs: net:_352_ net:_370_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 31.5 ) - ( 44.1, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_228_ net:_317_ net:_397_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_317_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 33.6 ) - ( 44.1, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_228_ net:_317_ net:_397_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_317_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 35.7 ) - ( 44.1, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_228_ net:_253_ net:_311_ + srcs: net:_311_ net:_352_ net:net43 congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 37.8 ) - ( 44.1, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_228_ net:_253_ + srcs: net:_253_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 39.9 ) - ( 44.1, 42) on Layer - + bbox = ( 42, 42 ) - ( 44.1, 44.1) on Layer - +violation type: Vertical congestion + srcs: net:_253_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 42, 44.1 ) - ( 44.1, 46.2) on Layer - +violation type: Vertical congestion + srcs: net:_252_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 42, 46.2 ) - ( 44.1, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_059_ net:_158_ net:_243_ + srcs: net:_059_ net:_150_ net:_243_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 48.3 ) - ( 44.1, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_059_ net:_158_ + srcs: net:_059_ net:_150_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 50.4 ) - ( 44.1, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_160_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_150_ net:_159_ net:_160_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 54.6 ) - ( 44.1, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_380_ + srcs: net:_159_ net:_384_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 56.7 ) - ( 44.1, 58.8) on Layer - violation type: Vertical congestion srcs: net:_159_ net:_384_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 63 ) - ( 44.1, 65.1) on Layer - + bbox = ( 42, 58.8 ) - ( 44.1, 60.9) on Layer - violation type: Vertical congestion srcs: net:_159_ net:_384_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 65.1 ) - ( 44.1, 67.2) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_384_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 67.2 ) - ( 44.1, 69.3) on Layer - + bbox = ( 42, 60.9 ) - ( 44.1, 63) on Layer - violation type: Vertical congestion - srcs: net:clk net:_384_ + srcs: net:_029_ net:_384_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 69.3 ) - ( 44.1, 71.4) on Layer - + bbox = ( 42, 65.1 ) - ( 44.1, 67.2) on Layer - violation type: Vertical congestion srcs: net:_026_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 14.7 ) - ( 46.2, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_080_ net:_336_ net:_410_ + srcs: net:_080_ net:_336_ net:_380_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 16.8 ) - ( 46.2, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_410_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_244_ net:_380_ net:_410_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 18.9 ) - ( 46.2, 21) on Layer - violation type: Vertical congestion - srcs: net:_337_ net:_410_ + srcs: net:_380_ net:_410_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 23.1 ) - ( 46.2, 25.2) on Layer - + bbox = ( 44.1, 21 ) - ( 46.2, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_327_ net:_346_ net:_410_ + srcs: net:_338_ net:_380_ net:_410_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 44.1, 27.3 ) - ( 46.2, 29.4) on Layer - + bbox = ( 44.1, 23.1 ) - ( 46.2, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_207_ net:_327_ + srcs: net:_380_ net:_410_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 29.4 ) - ( 46.2, 31.5) on Layer - + bbox = ( 44.1, 25.2 ) - ( 46.2, 27.3) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:_410_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 44.1, 27.3 ) - ( 46.2, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_128_ net:_318_ net:_327_ + srcs: net:_131_ net:_228_ net:_380_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 44.1, 29.4 ) - ( 46.2, 31.5) on Layer - +violation type: Vertical congestion + srcs: net:_228_ net:_380_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 44.1, 31.5 ) - ( 46.2, 33.6) on Layer - +violation type: Vertical congestion + srcs: net:_128_ net:_228_ net:_318_ net:_380_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 44.1, 33.6 ) - ( 46.2, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_224_ net:_326_ net:_327_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_224_ net:_228_ net:_326_ net:_380_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 44.1, 35.7 ) - ( 46.2, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_224_ net:_326_ net:_327_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_224_ net:_228_ net:_326_ net:_380_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 44.1, 37.8 ) - ( 46.2, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_324_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_228_ net:_324_ net:_380_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 39.9 ) - ( 46.2, 42) on Layer - violation type: Vertical congestion - srcs: net:_323_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_228_ net:_323_ net:_380_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 42 ) - ( 46.2, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_352_ net:_353_ + srcs: net:_205_ net:_380_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 44.1, 44.1 ) - ( 46.2, 46.2) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_353_ net:_380_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 46.2 ) - ( 46.2, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_353_ net:_380_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 48.3 ) - ( 46.2, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_353_ net:_380_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 50.4 ) - ( 46.2, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_353_ net:_380_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 52.5 ) - ( 46.2, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_158_ net:_353_ net:_380_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 54.6 ) - ( 46.2, 56.7) on Layer - violation type: Vertical congestion srcs: net:_353_ net:_354_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 56.7 ) - ( 46.2, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_045_ net:_133_ net:dpath.a_lt_b$in1\[1\] - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 44.1, 58.8 ) - ( 46.2, 60.9) on Layer - -violation type: Vertical congestion - srcs: net:_007_ net:_384_ + srcs: net:_045_ net:dpath.a_lt_b$in1\[1\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 60.9 ) - ( 46.2, 63) on Layer - + bbox = ( 44.1, 58.8 ) - ( 46.2, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_029_ net:_083_ + srcs: net:_083_ net:_159_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 65.1 ) - ( 46.2, 67.2) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_378_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 67.2 ) - ( 46.2, 69.3) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_378_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 69.3 ) - ( 46.2, 71.4) on Layer - violation type: Vertical congestion srcs: net:_114_ net:_334_ congestion information: capacity:1 usage:2 overflow:1 @@ -2519,63 +2471,67 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 18.9 ) - ( 48.3, 21) on Layer - violation type: Vertical congestion - srcs: net:_114_ net:_339_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 21 ) - ( 48.3, 23.1) on Layer - -violation type: Vertical congestion - srcs: net:_114_ net:_327_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_210_ net:_327_ net:_337_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 23.1 ) - ( 48.3, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_206_ net:_327_ + srcs: net:_210_ net:_327_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 25.2 ) - ( 48.3, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_410_ + srcs: net:_207_ net:_327_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 29.4 ) - ( 48.3, 31.5) on Layer - + bbox = ( 46.2, 27.3 ) - ( 48.3, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_116_ net:_221_ net:_320_ + srcs: net:_129_ net:_207_ net:_327_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 46.2, 33.6 ) - ( 48.3, 35.7) on Layer - + bbox = ( 46.2, 29.4 ) - ( 48.3, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_116_ net:_222_ + srcs: net:_207_ net:_327_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 35.7 ) - ( 48.3, 37.8) on Layer - + bbox = ( 46.2, 31.5 ) - ( 48.3, 33.6) on Layer - +violation type: Vertical congestion + srcs: net:_116_ net:_221_ net:_319_ net:_327_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 46.2, 33.6 ) - ( 48.3, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_116_ net:_222_ net:_225_ + srcs: net:_116_ net:_222_ net:_327_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 46.2, 35.7 ) - ( 48.3, 37.8) on Layer - +violation type: Vertical congestion + srcs: net:_116_ net:_222_ net:_225_ net:_327_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 46.2, 37.8 ) - ( 48.3, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_116_ net:_225_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_116_ net:_225_ net:_253_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 39.9 ) - ( 48.3, 42) on Layer - violation type: Vertical congestion - srcs: net:_226_ net:_228_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_226_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 42 ) - ( 48.3, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_205_ net:_401_ + srcs: net:_215_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 44.1 ) - ( 48.3, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_401_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_215_ net:_385_ net:_401_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 46.2 ) - ( 48.3, 48.3) on Layer - violation type: Vertical congestion srcs: net:_242_ net:_251_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 48.3 ) - ( 48.3, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_230_ + srcs: net:_165_ net:_287_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 50.4 ) - ( 48.3, 52.5) on Layer - + bbox = ( 46.2, 54.6 ) - ( 48.3, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_133_ net:_384_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_117_ net:_133_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 56.7 ) - ( 48.3, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_384_ + srcs: net:_117_ net:_133_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 58.8 ) - ( 48.3, 60.9) on Layer - violation type: Vertical congestion @@ -2590,52 +2546,56 @@ violation type: Vertical congestion srcs: net:_249_ net:_404_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 65.1 ) - ( 48.3, 67.2) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:net52 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 46.2, 67.2 ) - ( 48.3, 69.3) on Layer - violation type: Vertical congestion srcs: net:_073_ net:_408_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 16.8 ) - ( 50.4, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_209_ net:_333_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_130_ net:_209_ net:_333_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 18.9 ) - ( 50.4, 21) on Layer - violation type: Vertical congestion - srcs: net:_209_ net:_332_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_130_ net:_209_ net:_332_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 21 ) - ( 50.4, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_210_ net:_212_ + srcs: net:_130_ net:_212_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 23.1 ) - ( 50.4, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_210_ net:_212_ + srcs: net:_130_ net:_212_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 25.2 ) - ( 50.4, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_208_ net:_213_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_129_ net:_208_ net:_213_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 27.3 ) - ( 50.4, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_207_ net:_213_ + srcs: net:_213_ net:_410_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 29.4 ) - ( 50.4, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_132_ net:_207_ net:_213_ + srcs: net:_132_ net:_213_ net:_410_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 31.5 ) - ( 50.4, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_128_ net:_213_ net:_319_ net:_410_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_128_ net:_213_ net:_410_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 33.6 ) - ( 50.4, 35.7) on Layer - violation type: Vertical congestion srcs: net:_213_ net:_410_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 35.7 ) - ( 50.4, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_213_ net:_347_ net:net43 + srcs: net:_213_ net:_253_ net:_347_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 37.8 ) - ( 50.4, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_213_ net:_368_ + srcs: net:_213_ net:_235_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 39.9 ) - ( 50.4, 42) on Layer - violation type: Vertical congestion @@ -2651,13 +2611,9 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 48.3 ) - ( 50.4, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_229_ net:_235_ + srcs: net:_160_ net:_235_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 50.4 ) - ( 50.4, 52.5) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_404_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 54.6 ) - ( 50.4, 56.7) on Layer - violation type: Vertical congestion srcs: net:_165_ net:_404_ congestion information: capacity:1 usage:2 overflow:1 @@ -2671,51 +2627,39 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 60.9 ) - ( 50.4, 63) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_256_ net:_411_ + srcs: net:_165_ net:_255_ net:_411_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 63 ) - ( 50.4, 65.1) on Layer - violation type: Vertical congestion srcs: net:_165_ net:_411_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 65.1 ) - ( 50.4, 67.2) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:_411_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 67.2 ) - ( 50.4, 69.3) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_249_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 75.6 ) - ( 50.4, 77.7) on Layer - -violation type: Vertical congestion - srcs: net:_019_ net:_248_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 14.7 ) - ( 52.5, 16.8) on Layer - violation type: Vertical congestion srcs: net:_114_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 16.8 ) - ( 52.5, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_252_ + srcs: net:_114_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 18.9 ) - ( 52.5, 21) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_252_ + srcs: net:_114_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 21 ) - ( 52.5, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_332_ + srcs: net:_114_ net:_332_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 23.1 ) - ( 52.5, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_129_ net:_130_ net:_233_ net:_332_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_129_ net:_233_ net:_332_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 25.2 ) - ( 52.5, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_129_ net:_130_ net:_234_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_130_ net:_234_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 27.3 ) - ( 52.5, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_129_ net:_235_ + srcs: net:_130_ net:_235_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 29.4 ) - ( 52.5, 31.5) on Layer - violation type: Vertical congestion @@ -2723,40 +2667,40 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 31.5 ) - ( 52.5, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_132_ net:_201_ net:_235_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_132_ net:_201_ net:_235_ net:_320_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 50.4, 33.6 ) - ( 52.5, 35.7) on Layer - violation type: Vertical congestion srcs: net:_132_ net:_235_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 35.7 ) - ( 52.5, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_132_ net:_235_ net:_397_ + srcs: net:_132_ net:_235_ net:_352_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 37.8 ) - ( 52.5, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_132_ net:_235_ net:_249_ + srcs: net:_132_ net:_249_ net:_368_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 39.9 ) - ( 52.5, 42) on Layer - violation type: Vertical congestion - srcs: net:_213_ net:_235_ + srcs: net:_168_ net:_213_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 42 ) - ( 52.5, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_215_ net:_385_ + srcs: net:_205_ net:_214_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 44.1 ) - ( 52.5, 46.2) on Layer - -violation type: Vertical congestion - srcs: net:_205_ net:_214_ net:_215_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 46.2 ) - ( 52.5, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_240_ net:_404_ + srcs: net:_160_ net:_205_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 50.4 ) - ( 52.5, 52.5) on Layer - + bbox = ( 50.4, 48.3 ) - ( 52.5, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_240_ net:_250_ net:_404_ + srcs: net:_229_ net:_240_ net:_404_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 50.4, 50.4 ) - ( 52.5, 52.5) on Layer - +violation type: Vertical congestion + srcs: net:_240_ net:_404_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 52.5 ) - ( 52.5, 54.6) on Layer - violation type: Vertical congestion srcs: net:_239_ net:_250_ @@ -2775,7 +2719,7 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 60.9 ) - ( 52.5, 63) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_255_ net:_412_ + srcs: net:_245_ net:_256_ net:_412_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 63 ) - ( 52.5, 65.1) on Layer - violation type: Vertical congestion @@ -2787,47 +2731,51 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 67.2 ) - ( 52.5, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_042_ net:dpath.a_lt_b$in1\[13\] + srcs: net:_248_ net:net21 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 14.7 ) - ( 54.6, 16.8) on Layer - + bbox = ( 52.5, 10.5 ) - ( 54.6, 12.6) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_248_ + srcs: net:_248_ net:_371_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 16.8 ) - ( 54.6, 18.9) on Layer - + bbox = ( 52.5, 12.6 ) - ( 54.6, 14.7) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_352_ + srcs: net:_248_ net:dpath.a_lt_b$in1\[13\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 18.9 ) - ( 54.6, 21) on Layer - + bbox = ( 52.5, 14.7 ) - ( 54.6, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_072_ net:_248_ net:_328_ + srcs: net:_328_ net:_330_ net:_352_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 21 ) - ( 54.6, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_072_ net:_211_ + srcs: net:_211_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 23.1 ) - ( 54.6, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_113_ net:_211_ net:_231_ + srcs: net:_211_ net:_231_ net:_352_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 25.2 ) - ( 54.6, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_352_ net:_364_ net:_371_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_231_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 52.5, 27.3 ) - ( 54.6, 29.4) on Layer - +violation type: Vertical congestion + srcs: net:_352_ net:_364_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 29.4 ) - ( 54.6, 31.5) on Layer - violation type: Vertical congestion srcs: net:_352_ net:_364_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 31.5 ) - ( 54.6, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_128_ net:_352_ net:net43 - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_128_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 33.6 ) - ( 54.6, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_352_ net:net43 + srcs: net:_352_ net:dpath.a_lt_b$in1\[15\] congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 35.7 ) - ( 54.6, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_044_ net:_098_ net:_352_ + srcs: net:_021_ net:_044_ net:_098_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 37.8 ) - ( 54.6, 39.9) on Layer - violation type: Vertical congestion @@ -2835,11 +2783,11 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 39.9 ) - ( 54.6, 42) on Layer - violation type: Vertical congestion - srcs: net:_028_ net:_385_ + srcs: net:_028_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 42 ) - ( 54.6, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_213_ + srcs: net:_213_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 44.1 ) - ( 54.6, 46.2) on Layer - violation type: Vertical congestion @@ -2851,12 +2799,12 @@ violation type: Vertical congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 48.3 ) - ( 54.6, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_245_ + srcs: net:_165_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 50.4 ) - ( 54.6, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_236_ net:_245_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_245_ net:_250_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 52.5 ) - ( 54.6, 54.6) on Layer - violation type: Vertical congestion srcs: net:_178_ net:_245_ @@ -2875,51 +2823,55 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 60.9 ) - ( 54.6, 63) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_126_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_110_ net:_126_ net:_253_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 63 ) - ( 54.6, 65.1) on Layer - violation type: Vertical congestion srcs: net:_110_ net:_126_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 65.1 ) - ( 54.6, 67.2) on Layer - +violation type: Vertical congestion + srcs: net:_118_ net:_126_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 52.5, 67.2 ) - ( 54.6, 69.3) on Layer - violation type: Vertical congestion srcs: net:clk net:_118_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 71.4 ) - ( 54.6, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_096_ net:_401_ + srcs: net:_042_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 14.7 ) - ( 56.7, 16.8) on Layer - +violation type: Vertical congestion + srcs: net:_096_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 16.8 ) - ( 56.7, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_330_ net:_352_ net:_401_ + srcs: net:_248_ net:_407_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 18.9 ) - ( 56.7, 21) on Layer - +violation type: Vertical congestion + srcs: net:_072_ net:_248_ net:_407_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 21 ) - ( 56.7, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_113_ net:_352_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_072_ net:_113_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 23.1 ) - ( 56.7, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_352_ net:_401_ + srcs: net:_113_ net:_129_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 25.2 ) - ( 56.7, 27.3) on Layer - -violation type: Vertical congestion - srcs: net:_129_ net:_352_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 27.3 ) - ( 56.7, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_401_ net:net43 + srcs: net:_371_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 29.4 ) - ( 56.7, 31.5) on Layer - violation type: Vertical congestion - srcs: net:clk net:dpath.a_lt_b$in1\[11\] + srcs: net:clk net:_397_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 33.6 ) - ( 56.7, 35.7) on Layer - violation type: Vertical congestion - srcs: net:clk net:dpath.a_lt_b$in1\[15\] - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 35.7 ) - ( 56.7, 37.8) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_021_ + srcs: net:clk net:_249_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 37.8 ) - ( 56.7, 39.9) on Layer - violation type: Vertical congestion @@ -2927,33 +2879,37 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 39.9 ) - ( 56.7, 42) on Layer - violation type: Vertical congestion - srcs: net:clk net:_245_ net:_348_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:clk net:_348_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 42 ) - ( 56.7, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_348_ + srcs: net:_298_ net:_348_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 44.1 ) - ( 56.7, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_348_ + srcs: net:_348_ net:_377_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 46.2 ) - ( 56.7, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_348_ + srcs: net:_348_ net:_377_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 48.3 ) - ( 56.7, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_250_ net:_348_ net:_377_ + srcs: net:_174_ net:_250_ net:_348_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 50.4 ) - ( 56.7, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_178_ net:_348_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_174_ net:_178_ net:_236_ net:_348_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 54.6, 52.5 ) - ( 56.7, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_184_ net:_348_ + srcs: net:_236_ net:_348_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 54.6 ) - ( 56.7, 56.7) on Layer - +violation type: Vertical congestion + srcs: net:_236_ net:_348_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 56.7 ) - ( 56.7, 58.8) on Layer - violation type: Vertical congestion srcs: net:_146_ net:_258_ net:_348_ congestion information: capacity:1 usage:3 overflow:2 @@ -2963,37 +2919,45 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 60.9 ) - ( 56.7, 63) on Layer - violation type: Vertical congestion - srcs: net:_118_ net:_173_ net:_258_ + srcs: net:_173_ net:_258_ net:_348_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 63 ) - ( 56.7, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_118_ net:_173_ + srcs: net:_173_ net:_348_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 65.1 ) - ( 56.7, 67.2) on Layer - -violation type: Vertical congestion - srcs: net:_118_ net:_134_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 67.2 ) - ( 56.7, 69.3) on Layer - violation type: Vertical congestion srcs: net:_008_ net:dpath.a_lt_b$in1\[2\] congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 69.3 ) - ( 56.7, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_046_ net:_100_ + srcs: net:_401_ net:_407_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 71.4 ) - ( 56.7, 73.5) on Layer - + bbox = ( 56.7, 16.8 ) - ( 58.8, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_025_ net:_407_ + srcs: net:_025_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 21 ) - ( 58.8, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_041_ net:_113_ + srcs: net:_041_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 25.2 ) - ( 58.8, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_095_ net:_113_ + srcs: net:_095_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 27.3 ) - ( 58.8, 29.4) on Layer - +violation type: Vertical congestion + srcs: net:_113_ net:_401_ net:net43 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 56.7, 29.4 ) - ( 58.8, 31.5) on Layer - +violation type: Vertical congestion + srcs: net:_017_ net:dpath.a_lt_b$in1\[11\] net:net43 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 56.7, 33.6 ) - ( 58.8, 35.7) on Layer - +violation type: Vertical congestion + srcs: net:_017_ net:net43 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 56.7, 35.7 ) - ( 58.8, 37.8) on Layer - violation type: Vertical congestion srcs: net:_071_ net:_159_ congestion information: capacity:1 usage:2 overflow:1 @@ -3003,53 +2967,49 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 39.9 ) - ( 58.8, 42) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_388_ net:dpath.a_lt_b$in0\[15\] - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_159_ net:_388_ net:dpath.a_lt_b$in0\[15\] + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 42 ) - ( 58.8, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_298_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_160_ net:_388_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 44.1 ) - ( 58.8, 46.2) on Layer - violation type: Vertical congestion srcs: net:_160_ net:_298_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 46.2 ) - ( 58.8, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_199_ net:_237_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_165_ net:_199_ net:_297_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 48.3 ) - ( 58.8, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_171_ net:_174_ net:_199_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_171_ net:_199_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 50.4 ) - ( 58.8, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_171_ net:_174_ net:_184_ net:_198_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_171_ net:_184_ net:_198_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 52.5 ) - ( 58.8, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_174_ net:_197_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_174_ net:_184_ net:_197_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 54.6 ) - ( 58.8, 56.7) on Layer - violation type: Vertical congestion srcs: net:_174_ net:_197_ net:_262_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 56.7 ) - ( 58.8, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_144_ net:_145_ net:_174_ net:_197_ net:_262_ - congestion information: capacity:1 usage:5 overflow:4 - bbox = ( 56.7, 58.8 ) - ( 58.8, 60.9) on Layer - -violation type: Vertical congestion - srcs: net:_118_ net:_145_ net:_174_ net:_262_ + srcs: net:_145_ net:_174_ net:_197_ net:_262_ congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 56.7, 60.9 ) - ( 58.8, 63) on Layer - + bbox = ( 56.7, 58.8 ) - ( 58.8, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_145_ net:_262_ net:_348_ + srcs: net:_145_ net:_174_ net:_262_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 56.7, 63 ) - ( 58.8, 65.1) on Layer - + bbox = ( 56.7, 60.9 ) - ( 58.8, 63) on Layer - violation type: Vertical congestion - srcs: net:_134_ net:_348_ + srcs: net:_145_ net:_262_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 65.1 ) - ( 58.8, 67.2) on Layer - + bbox = ( 56.7, 63 ) - ( 58.8, 65.1) on Layer - violation type: Vertical congestion srcs: net:_134_ net:_159_ net:_393_ congestion information: capacity:1 usage:3 overflow:2 @@ -3059,39 +3019,43 @@ violation type: Vertical congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 69.3 ) - ( 58.8, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_371_ net:net43 + srcs: net:_100_ net:_393_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 14.7 ) - ( 60.9, 16.8) on Layer - + bbox = ( 56.7, 71.4 ) - ( 58.8, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_371_ net:net43 + srcs: net:_160_ net:_393_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 16.8 ) - ( 60.9, 18.9) on Layer - + bbox = ( 56.7, 73.5 ) - ( 58.8, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_371_ net:net43 + srcs: net:_160_ net:_393_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 18.9 ) - ( 60.9, 21) on Layer - + bbox = ( 56.7, 75.6 ) - ( 58.8, 77.7) on Layer - violation type: Vertical congestion - srcs: net:clk net:net43 + srcs: net:clk net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 23.1 ) - ( 60.9, 25.2) on Layer - violation type: Vertical congestion - srcs: net:dpath.a_lt_b$in1\[12\] net:net43 + srcs: net:_248_ net:dpath.a_lt_b$in1\[12\] congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 25.2 ) - ( 60.9, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_024_ net:_112_ + srcs: net:_248_ net:_371_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 58.8, 27.3 ) - ( 60.9, 29.4) on Layer - +violation type: Vertical congestion + srcs: net:_024_ net:_112_ net:_248_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 31.5 ) - ( 60.9, 33.6) on Layer - violation type: Vertical congestion srcs: net:_078_ net:_221_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 33.6 ) - ( 60.9, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_322_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_249_ net:_322_ net:_397_ net:_406_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 58.8, 35.7 ) - ( 60.9, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_253_ + srcs: net:_397_ net:_406_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 37.8 ) - ( 60.9, 39.9) on Layer - violation type: Vertical congestion @@ -3099,28 +3063,28 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 39.9 ) - ( 60.9, 42) on Layer - violation type: Vertical congestion - srcs: net:_359_ net:_397_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_165_ net:_359_ net:_397_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 42 ) - ( 60.9, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_122_ net:_160_ net:_388_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_122_ net:_165_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 44.1 ) - ( 60.9, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_177_ net:_388_ + srcs: net:_165_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 46.2 ) - ( 60.9, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_177_ net:_272_ net:_388_ + srcs: net:_237_ net:_272_ net:_388_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 48.3 ) - ( 60.9, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_177_ net:_272_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_177_ net:_272_ net:_388_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 50.4 ) - ( 60.9, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_177_ net:_272_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_177_ net:_272_ net:_388_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 52.5 ) - ( 60.9, 54.6) on Layer - violation type: Vertical congestion srcs: net:_196_ net:_272_ @@ -3131,12 +3095,12 @@ violation type: Vertical congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 56.7 ) - ( 60.9, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_119_ net:_269_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_119_ net:_144_ net:_269_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 58.8 ) - ( 60.9, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_172_ net:_264_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_118_ net:_172_ net:_264_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 60.9 ) - ( 60.9, 63) on Layer - violation type: Vertical congestion srcs: net:_047_ net:_135_ @@ -3150,62 +3114,54 @@ violation type: Vertical congestion srcs: net:_160_ net:_394_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 71.4 ) - ( 60.9, 73.5) on Layer - -violation type: Vertical congestion - srcs: net:_391_ net:_394_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 73.5 ) - ( 60.9, 75.6) on Layer - violation type: Vertical congestion srcs: net:clk net:_371_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 25.2 ) - ( 63, 27.3) on Layer - violation type: Vertical congestion - srcs: net:clk net:_371_ + srcs: net:_248_ net:_406_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 27.3 ) - ( 63, 29.4) on Layer - + bbox = ( 60.9, 33.6 ) - ( 63, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_406_ + srcs: net:_248_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 35.7 ) - ( 63, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_050_ net:_104_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_050_ net:_104_ net:_248_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 39.9 ) - ( 63, 42) on Layer - violation type: Vertical congestion - srcs: net:_104_ net:_138_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_104_ net:_138_ net:_248_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 42 ) - ( 63, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_353_ + srcs: net:_138_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 44.1 ) - ( 63, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_193_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_138_ net:_193_ net:_248_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 46.2 ) - ( 63, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_193_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_138_ net:_193_ net:_248_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 48.3 ) - ( 63, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_194_ net:_388_ + srcs: net:_194_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 50.4 ) - ( 63, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_192_ net:_388_ + srcs: net:_192_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 52.5 ) - ( 63, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_143_ net:_236_ net:_388_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_248_ net:_388_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 54.6 ) - ( 63, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_143_ net:_236_ net:_388_ + srcs: net:_143_ net:_248_ net:_388_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 56.7 ) - ( 63, 58.8) on Layer - -violation type: Vertical congestion - srcs: net:_144_ net:_388_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 58.8 ) - ( 63, 60.9) on Layer - violation type: Vertical congestion srcs: net:_119_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 @@ -3239,69 +3195,69 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 33.6 ) - ( 65.1, 35.7) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ net:_416_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:clk net:_416_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 35.7 ) - ( 65.1, 37.8) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ + srcs: net:clk net:_012_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 37.8 ) - ( 65.1, 39.9) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_012_ net:_248_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 39.9 ) - ( 65.1, 42) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_248_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 42 ) - ( 65.1, 44.1) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_288_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 46.2 ) - ( 65.1, 48.3) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_289_ net:_290_ + srcs: net:_169_ net:_289_ net:_290_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 48.3 ) - ( 65.1, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_189_ net:_248_ + srcs: net:_169_ net:_171_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 50.4 ) - ( 65.1, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_191_ net:_248_ net:_291_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_123_ net:_169_ net:_191_ net:_291_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 63, 52.5 ) - ( 65.1, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_417_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_143_ net:_287_ net:_417_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 54.6 ) - ( 65.1, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_292_ net:_293_ net:_417_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_292_ net:_293_ net:_417_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 56.7 ) - ( 65.1, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_417_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_236_ net:_253_ net:_417_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 58.8 ) - ( 65.1, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_144_ net:_253_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_144_ net:_236_ net:_253_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 60.9 ) - ( 65.1, 63) on Layer - violation type: Vertical congestion srcs: net:_144_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 63 ) - ( 65.1, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_119_ + srcs: net:_119_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 65.1 ) - ( 65.1, 67.2) on Layer - + bbox = ( 63, 69.3 ) - ( 65.1, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_119_ net:_159_ + srcs: net:_249_ net:_391_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 67.2 ) - ( 65.1, 69.3) on Layer - + bbox = ( 63, 73.5 ) - ( 65.1, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_088_ net:_248_ + srcs: net:_122_ net:_286_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 33.6 ) - ( 67.2, 35.7) on Layer - + bbox = ( 65.1, 35.7 ) - ( 67.2, 37.8) on Layer - +violation type: Vertical congestion + srcs: net:_122_ net:_416_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 65.1, 37.8 ) - ( 67.2, 39.9) on Layer - +violation type: Vertical congestion + srcs: net:_122_ net:_416_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 65.1, 39.9 ) - ( 67.2, 42) on Layer - +violation type: Vertical congestion + srcs: net:_122_ net:_416_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 65.1, 42 ) - ( 67.2, 44.1) on Layer - violation type: Vertical congestion srcs: net:_170_ net:_416_ congestion information: capacity:1 usage:2 overflow:1 @@ -3311,39 +3267,35 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 46.2 ) - ( 67.2, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_169_ net:_171_ net:_297_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_171_ net:_177_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 48.3 ) - ( 67.2, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_123_ net:_169_ net:_190_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_123_ net:_190_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 50.4 ) - ( 67.2, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_123_ net:_169_ net:_190_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_123_ net:_190_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 52.5 ) - ( 67.2, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_013_ net:_067_ net:_123_ + srcs: net:_067_ net:_123_ net:_253_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 65.1, 56.7 ) - ( 67.2, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_035_ net:_236_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 58.8 ) - ( 67.2, 60.9) on Layer - -violation type: Vertical congestion - srcs: net:_126_ net:_236_ + srcs: net:_245_ net:_413_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 60.9 ) - ( 67.2, 63) on Layer - + bbox = ( 65.1, 63 ) - ( 67.2, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_413_ + srcs: net:_245_ net:_266_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 63 ) - ( 67.2, 65.1) on Layer - + bbox = ( 65.1, 65.1 ) - ( 67.2, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_031_ net:_249_ + srcs: net:_159_ net:_261_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 69.3 ) - ( 67.2, 71.4) on Layer - + bbox = ( 65.1, 67.2 ) - ( 67.2, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:dpath.a_lt_b$in0\[3\] + srcs: net:_031_ net:dpath.a_lt_b$in0\[3\] congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 71.4 ) - ( 67.2, 73.5) on Layer - violation type: Vertical congestion @@ -3351,27 +3303,15 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 33.6 ) - ( 69.3, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_122_ net:_414_ + srcs: net:_281_ net:_414_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 35.7 ) - ( 69.3, 37.8) on Layer - -violation type: Vertical congestion - srcs: net:_122_ net:_281_ net:_414_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 37.8 ) - ( 69.3, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_122_ net:_253_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 39.9 ) - ( 69.3, 42) on Layer - -violation type: Vertical congestion - srcs: net:_122_ net:_253_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 42 ) - ( 69.3, 44.1) on Layer - -violation type: Vertical congestion - srcs: net:_138_ net:_253_ + srcs: net:_253_ net:_272_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 44.1 ) - ( 69.3, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_177_ net:_253_ + srcs: net:_253_ net:_272_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 46.2 ) - ( 69.3, 48.3) on Layer - violation type: Vertical congestion @@ -3387,8 +3327,8 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 52.5 ) - ( 69.3, 54.6) on Layer - violation type: Vertical congestion - srcs: net:clk net:_245_ net:_253_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:clk net:_245_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 56.7 ) - ( 69.3, 58.8) on Layer - violation type: Vertical congestion srcs: net:clk net:_245_ @@ -3399,32 +3339,24 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 60.9 ) - ( 69.3, 63) on Layer - violation type: Vertical congestion - srcs: net:clk net:_245_ + srcs: net:clk net:_038_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 63 ) - ( 69.3, 65.1) on Layer - -violation type: Vertical congestion - srcs: net:_038_ net:_126_ net:_245_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 65.1 ) - ( 69.3, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_092_ net:_379_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_092_ net:_379_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 67.2 ) - ( 69.3, 69.3) on Layer - violation type: Vertical congestion srcs: net:clk net:_379_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 71.4 ) - ( 69.3, 73.5) on Layer - + bbox = ( 67.2, 69.3 ) - ( 69.3, 71.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:_381_ + srcs: net:clk net:_379_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 33.6 ) - ( 71.4, 35.7) on Layer - + bbox = ( 67.2, 71.4 ) - ( 69.3, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_381_ + srcs: net:_159_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 35.7 ) - ( 71.4, 37.8) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_381_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 37.8 ) - ( 71.4, 39.9) on Layer - violation type: Vertical congestion srcs: net:_165_ net:_414_ @@ -3435,56 +3367,60 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 42 ) - ( 71.4, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_176_ net:_272_ + srcs: net:_138_ net:_176_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 44.1 ) - ( 71.4, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_272_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_138_ net:_175_ net:_177_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 46.2 ) - ( 71.4, 48.3) on Layer - violation type: Vertical congestion srcs: net:_138_ net:_186_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 48.3 ) - ( 71.4, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_139_ net:_143_ net:_188_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_139_ net:_143_ net:_188_ net:_189_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 69.3, 50.4 ) - ( 71.4, 52.5) on Layer - violation type: Vertical congestion srcs: net:_139_ net:_143_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 52.5 ) - ( 71.4, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_105_ net:_139_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_013_ net:_105_ net:_139_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 56.7 ) - ( 71.4, 58.8) on Layer - violation type: Vertical congestion srcs: net:_123_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 58.8 ) - ( 71.4, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_413_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 60.9 ) - ( 71.4, 63) on Layer - -violation type: Vertical congestion - srcs: net:_060_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_060_ net:_246_ net:_353_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 63 ) - ( 71.4, 65.1) on Layer - violation type: Vertical congestion - srcs: net:clk net:_353_ net:dpath.a_lt_b$in1\[0\] - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_353_ net:dpath.a_lt_b$in1\[0\] + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 65.1 ) - ( 71.4, 67.2) on Layer - violation type: Vertical congestion - srcs: net:clk net:_351_ net:_353_ + srcs: net:_126_ net:_351_ net:_353_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 67.2 ) - ( 71.4, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_175_ net:_277_ net:_278_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 71.4, 46.2 ) - ( 73.5, 48.3) on Layer - + srcs: net:_249_ net:_381_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 35.7 ) - ( 73.5, 37.8) on Layer - +violation type: Vertical congestion + srcs: net:_268_ net:_381_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 37.8 ) - ( 73.5, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_282_ net:_415_ + srcs: net:_277_ net:_278_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 46.2 ) - ( 73.5, 48.3) on Layer - +violation type: Vertical congestion + srcs: net:_136_ net:_282_ net:_415_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 71.4, 48.3 ) - ( 73.5, 50.4) on Layer - violation type: Vertical congestion srcs: net:_137_ net:_415_ @@ -3495,27 +3431,27 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 58.8 ) - ( 73.5, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_166_ net:_246_ + srcs: net:_159_ net:_166_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 63 ) - ( 73.5, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_166_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_110_ net:_159_ net:_166_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 71.4, 65.1 ) - ( 73.5, 67.2) on Layer - violation type: Vertical congestion - srcs: net:clk net:_086_ + srcs: net:_032_ net:_086_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 35.7 ) - ( 75.6, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_120_ net:_136_ + srcs: net:_010_ net:_120_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 44.1 ) - ( 75.6, 46.2) on Layer - + bbox = ( 73.5, 39.9 ) - ( 75.6, 42) on Layer - violation type: Vertical congestion - srcs: net:_136_ net:_185_ + srcs: net:_120_ net:_185_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 46.2 ) - ( 75.6, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_136_ net:_175_ + srcs: net:_121_ net:_175_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 48.3 ) - ( 75.6, 50.4) on Layer - violation type: Vertical congestion @@ -3535,122 +3471,90 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 60.9 ) - ( 75.6, 63) on Layer - violation type: Vertical congestion - srcs: net:_076_ net:_159_ net:_165_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 73.5, 63 ) - ( 75.6, 65.1) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_165_ + srcs: net:_076_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 65.1 ) - ( 75.6, 67.2) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_102_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 42 ) - ( 77.7, 44.1) on Layer - + bbox = ( 73.5, 63 ) - ( 75.6, 65.1) on Layer - violation type: Vertical congestion - srcs: net:clk net:_102_ + srcs: net:_136_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 44.1 ) - ( 77.7, 46.2) on Layer - violation type: Vertical congestion - srcs: net:clk net:_353_ + srcs: net:_136_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 46.2 ) - ( 77.7, 48.3) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_353_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 48.3 ) - ( 77.7, 50.4) on Layer - violation type: Vertical congestion srcs: net:_137_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 50.4 ) - ( 77.7, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_011_ net:_137_ net:_353_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:clk net:_353_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 52.5 ) - ( 77.7, 54.6) on Layer - violation type: Vertical congestion srcs: net:clk net:_033_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 56.7 ) - ( 77.7, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:dpath.a_lt_b$in0\[0\] + srcs: net:clk net:_398_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 65.1 ) - ( 77.7, 67.2) on Layer - + bbox = ( 75.6, 63 ) - ( 77.7, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_010_ net:_120_ + srcs: net:clk net:dpath.a_lt_b$in0\[0\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 39.9 ) - ( 79.8, 42) on Layer - + bbox = ( 75.6, 65.1 ) - ( 77.7, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_120_ net:_136_ + srcs: net:_102_ net:_136_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 42 ) - ( 79.8, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_120_ net:_396_ + srcs: net:_102_ net:_396_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 77.7, 44.1 ) - ( 79.8, 46.2) on Layer - +violation type: Vertical congestion + srcs: net:_385_ net:_396_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 46.2 ) - ( 79.8, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_121_ net:_160_ net:_358_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_160_ net:_358_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 48.3 ) - ( 79.8, 50.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:_049_ net:_121_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_049_ net:_160_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 50.4 ) - ( 79.8, 52.5) on Layer - violation type: Vertical congestion - srcs: net:clk net:_121_ + srcs: net:_137_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 52.5 ) - ( 79.8, 54.6) on Layer - violation type: Vertical congestion - srcs: net:clk net:_121_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_065_ net:_121_ net:_160_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 77.7, 54.6 ) - ( 79.8, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:net49 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 37.8 ) - ( 81.9, 39.9) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:net49 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 39.9 ) - ( 81.9, 42) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:net49 + srcs: net:_160_ net:dpath.a_lt_b$in0\[5\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 42 ) - ( 81.9, 44.1) on Layer - + bbox = ( 77.7, 56.7 ) - ( 79.8, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_385_ net:net49 + srcs: net:clk net:_415_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 44.1 ) - ( 81.9, 46.2) on Layer - -violation type: Vertical congestion - srcs: net:_385_ net:_415_ net:net49 - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 79.8, 46.2 ) - ( 81.9, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_395_ net:net49 + srcs: net:clk net:_415_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 48.3 ) - ( 81.9, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:net49 + srcs: net:_011_ net:dpath.a_lt_b$in1\[5\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 50.4 ) - ( 81.9, 52.5) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:dpath.a_lt_b$in1\[5\] net:net49 - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 79.8, 52.5 ) - ( 81.9, 54.6) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:net49 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 54.6 ) - ( 81.9, 56.7) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:net49 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 56.7 ) - ( 81.9, 58.8) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:net49 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 58.8 ) - ( 81.9, 60.9) on Layer - violation type: Vertical congestion srcs: net:_396_ net:net27 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 81.9, 12.6 ) - ( 84, 14.7) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_396_ + srcs: net:net47 net:net49 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 81.9, 44.1 ) - ( 84, 46.2) on Layer - +violation type: Vertical congestion + srcs: net:_395_ net:net49 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 81.9, 48.3 ) - ( 84, 50.4) on Layer - diff --git a/src/grt/test/congestion7-40.rptok b/src/grt/test/congestion7-40.rptok index 63559a62d0c..d1326cc0b01 100644 --- a/src/grt/test/congestion7-40.rptok +++ b/src/grt/test/congestion7-40.rptok @@ -1,5 +1,9 @@ violation type: Horizontal congestion - srcs: net:resp_msg[10] net:_380_ + srcs: net:resp_msg[15] net:net37 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 8.4, 12.6 ) - ( 10.5, 14.7) on Layer - +violation type: Horizontal congestion + srcs: net:resp_msg[10] net:net42 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 8.4, 44.1 ) - ( 10.5, 46.2) on Layer - violation type: Horizontal congestion @@ -7,47 +11,155 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 8.4, 58.8 ) - ( 10.5, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_375_ net:net17 + srcs: net:_158_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 10.5, 42 ) - ( 12.6, 44.1) on Layer - + bbox = ( 10.5, 31.5 ) - ( 12.6, 33.6) on Layer - +violation type: Horizontal congestion + srcs: net:net42 net:net43 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 12.6, 44.1 ) - ( 14.7, 46.2) on Layer - +violation type: Horizontal congestion + srcs: net:_150_ net:net12 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 14.7, 33.6 ) - ( 16.8, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_421_ net:net12 + srcs: net:net42 net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 14.7, 35.7 ) - ( 16.8, 37.8) on Layer - + bbox = ( 14.7, 44.1 ) - ( 16.8, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_421_ net:net24 + srcs: net:_248_ net:_370_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 14.7, 46.2 ) - ( 16.8, 48.3) on Layer - +violation type: Horizontal congestion + srcs: net:_401_ net:_421_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 14.7, 50.4 ) - ( 16.8, 52.5) on Layer - + bbox = ( 16.8, 27.3 ) - ( 18.9, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:net24 + srcs: net:_150_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 16.8, 33.6 ) - ( 18.9, 35.7) on Layer - +violation type: Horizontal congestion + srcs: net:_248_ net:net42 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 16.8, 39.9 ) - ( 18.9, 42) on Layer - +violation type: Horizontal congestion + srcs: net:_248_ net:_375_ net:net43 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 16.8, 44.1 ) - ( 18.9, 46.2) on Layer - +violation type: Horizontal congestion + srcs: net:_158_ net:net24 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 16.8, 50.4 ) - ( 18.9, 52.5) on Layer - +violation type: Horizontal congestion + srcs: net:_389_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 18.9, 18.9 ) - ( 21, 21) on Layer - +violation type: Horizontal congestion + srcs: net:_158_ net:_421_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 18.9, 27.3 ) - ( 21, 29.4) on Layer - +violation type: Horizontal congestion + srcs: net:_142_ net:_370_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 18.9, 31.5 ) - ( 21, 33.6) on Layer - +violation type: Horizontal congestion + srcs: net:_150_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 18.9, 33.6 ) - ( 21, 35.7) on Layer - +violation type: Horizontal congestion + srcs: net:_248_ net:net42 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 18.9, 39.9 ) - ( 21, 42) on Layer - +violation type: Horizontal congestion + srcs: net:_248_ net:_375_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 18.9, 44.1 ) - ( 21, 46.2) on Layer - +violation type: Horizontal congestion + srcs: net:net24 net:net36 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 18.9, 50.4 ) - ( 21, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net18 + srcs: net:_158_ net:net34 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 18.9, 54.6 ) - ( 21, 56.7) on Layer - +violation type: Horizontal congestion + srcs: net:_381_ net:net18 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 21, 10.5 ) - ( 23.1, 12.6) on Layer - +violation type: Horizontal congestion + srcs: net:_380_ net:net43 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 21, 12.6 ) - ( 23.1, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_400_ + srcs: net:_389_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 21, 18.9 ) - ( 23.1, 21) on Layer - +violation type: Horizontal congestion + srcs: net:_252_ net:_392_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 21, 25.2 ) - ( 23.1, 27.3) on Layer - +violation type: Horizontal congestion + srcs: net:_158_ net:_421_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 21, 27.3 ) - ( 23.1, 29.4) on Layer - +violation type: Horizontal congestion + srcs: net:_150_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 21, 33.6 ) - ( 23.1, 35.7) on Layer - +violation type: Horizontal congestion + srcs: net:_142_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 21, 35.7 ) - ( 23.1, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:net44 + srcs: net:_248_ net:_375_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 58.8 ) - ( 23.1, 60.9) on Layer - + bbox = ( 21, 44.1 ) - ( 23.1, 46.2) on Layer - +violation type: Horizontal congestion + srcs: net:_142_ net:_353_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 21, 48.3 ) - ( 23.1, 50.4) on Layer - +violation type: Horizontal congestion + srcs: net:net24 net:net36 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 21, 50.4 ) - ( 23.1, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_401_ net:net18 + srcs: net:_158_ net:net34 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 21, 54.6 ) - ( 23.1, 56.7) on Layer - +violation type: Horizontal congestion + srcs: net:_421_ net:net44 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 21, 56.7 ) - ( 23.1, 58.8) on Layer - +violation type: Horizontal congestion + srcs: net:_381_ net:net46 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 23.1, 2.1 ) - ( 25.2, 4.2) on Layer - +violation type: Horizontal congestion + srcs: net:_380_ net:net18 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 23.1, 10.5 ) - ( 25.2, 12.6) on Layer - +violation type: Horizontal congestion + srcs: net:_401_ net:net43 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 23.1, 12.6 ) - ( 25.2, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_389_ + srcs: net:_142_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 23.1 ) - ( 25.2, 25.2) on Layer - + bbox = ( 23.1, 21 ) - ( 25.2, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_370_ + srcs: net:_252_ net:_392_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 33.6 ) - ( 25.2, 35.7) on Layer - + bbox = ( 23.1, 25.2 ) - ( 25.2, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_401_ + srcs: net:_158_ net:_244_ net:_421_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 23.1, 27.3 ) - ( 25.2, 29.4) on Layer - +violation type: Horizontal congestion + srcs: net:_142_ net:_405_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 23.1, 35.7 ) - ( 25.2, 37.8) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 23.1, 39.9 ) - ( 25.2, 42) on Layer - violation type: Horizontal congestion @@ -55,163 +167,203 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 23.1, 42 ) - ( 25.2, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_353_ + srcs: net:_248_ net:_375_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 46.2 ) - ( 25.2, 48.3) on Layer - + bbox = ( 23.1, 44.1 ) - ( 25.2, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_142_ + srcs: net:_353_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 56.7 ) - ( 25.2, 58.8) on Layer - + bbox = ( 23.1, 48.3 ) - ( 25.2, 50.4) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_142_ net:_158_ net:net34 + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 23.1, 54.6 ) - ( 25.2, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:net44 + srcs: net:clk net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 23.1, 58.8 ) - ( 25.2, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_401_ net:net18 + srcs: net:_150_ net:_421_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 23.1, 60.9 ) - ( 25.2, 63) on Layer - +violation type: Horizontal congestion + srcs: net:_381_ net:net46 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 25.2, 2.1 ) - ( 27.3, 4.2) on Layer - +violation type: Horizontal congestion + srcs: net:_244_ net:net48 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 25.2, 8.4 ) - ( 27.3, 10.5) on Layer - +violation type: Horizontal congestion + srcs: net:_380_ net:net18 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 25.2, 10.5 ) - ( 27.3, 12.6) on Layer - +violation type: Horizontal congestion + srcs: net:_401_ net:net43 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 25.2, 12.6 ) - ( 27.3, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_389_ + srcs: net:_142_ net:_389_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 23.1 ) - ( 27.3, 25.2) on Layer - + bbox = ( 25.2, 18.9 ) - ( 27.3, 21) on Layer - violation type: Horizontal congestion srcs: net:_142_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 25.2, 21 ) - ( 27.3, 23.1) on Layer - +violation type: Horizontal congestion + srcs: net:_252_ net:_392_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 25.2, 25.2 ) - ( 27.3, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_248_ + srcs: net:_158_ net:_421_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 31.5 ) - ( 27.3, 33.6) on Layer - + bbox = ( 25.2, 27.3 ) - ( 27.3, 29.4) on Layer - violation type: Horizontal congestion srcs: net:clk net:_370_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 33.6 ) - ( 27.3, 35.7) on Layer - + bbox = ( 25.2, 29.4 ) - ( 27.3, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_400_ net:_401_ + srcs: net:clk net:_405_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 25.2, 35.7 ) - ( 27.3, 37.8) on Layer - +violation type: Horizontal congestion + srcs: net:_053_ net:_142_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 25.2, 39.9 ) - ( 27.3, 42) on Layer - violation type: Horizontal congestion - srcs: net:_053_ net:_107_ net:_244_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_107_ net:_244_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 25.2, 42 ) - ( 27.3, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_353_ + srcs: net:_248_ net:_375_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 46.2 ) - ( 27.3, 48.3) on Layer - + bbox = ( 25.2, 44.1 ) - ( 27.3, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_399_ net:_401_ + srcs: net:_036_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 50.4 ) - ( 27.3, 52.5) on Layer - + bbox = ( 25.2, 48.3 ) - ( 27.3, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:net36 + srcs: net:_399_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 52.5 ) - ( 27.3, 54.6) on Layer - + bbox = ( 25.2, 50.4 ) - ( 27.3, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:clk net:net44 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 58.8 ) - ( 27.3, 60.9) on Layer - + srcs: net:clk net:_142_ net:_158_ net:net34 net:net44 + congestion information: capacity:1 usage:5 overflow:4 + bbox = ( 25.2, 54.6 ) - ( 27.3, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_421_ + srcs: net:_380_ net:net35 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 60.9 ) - ( 27.3, 63) on Layer - + bbox = ( 25.2, 67.2 ) - ( 27.3, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_353_ + srcs: net:_397_ net:net37 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 69.3 ) - ( 27.3, 71.4) on Layer - + bbox = ( 27.3, 4.2 ) - ( 29.4, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:net48 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 2.1 ) - ( 29.4, 4.2) on Layer - + srcs: net:_244_ net:_380_ net:net48 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 27.3, 8.4 ) - ( 29.4, 10.5) on Layer - violation type: Horizontal congestion - srcs: net:_401_ net:net18 + srcs: net:_248_ net:net18 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 12.6 ) - ( 29.4, 14.7) on Layer - + bbox = ( 27.3, 10.5 ) - ( 29.4, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_380_ + srcs: net:_142_ net:_389_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 14.7 ) - ( 29.4, 16.8) on Layer - + bbox = ( 27.3, 18.9 ) - ( 29.4, 21) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_142_ + srcs: net:_142_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 16.8 ) - ( 29.4, 18.9) on Layer - + bbox = ( 27.3, 21 ) - ( 29.4, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_389_ + srcs: net:_158_ net:_421_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 23.1 ) - ( 29.4, 25.2) on Layer - + bbox = ( 27.3, 27.3 ) - ( 29.4, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_421_ + srcs: net:clk net:_370_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 29.4 ) - ( 29.4, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_248_ + srcs: net:_150_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 31.5 ) - ( 29.4, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_037_ net:_405_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 35.7 ) - ( 29.4, 37.8) on Layer - -violation type: Horizontal congestion - srcs: net:_125_ net:_362_ + srcs: net:_037_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 37.8 ) - ( 29.4, 39.9) on Layer - + bbox = ( 27.3, 33.6 ) - ( 29.4, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_141_ net:_142_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_125_ net:_141_ net:_142_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 27.3, 39.9 ) - ( 29.4, 42) on Layer - violation type: Horizontal congestion - srcs: net:_015_ net:_107_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_015_ net:_107_ net:_386_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 27.3, 42 ) - ( 29.4, 44.1) on Layer - violation type: Horizontal congestion srcs: net:_244_ net:_353_ net:_375_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 27.3, 44.1 ) - ( 29.4, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_090_ net:_124_ net:_140_ net:_361_ net:_386_ - congestion information: capacity:1 usage:5 overflow:4 + srcs: net:_248_ net:net43 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 27.3, 46.2 ) - ( 29.4, 48.3) on Layer - +violation type: Horizontal congestion + srcs: net:_090_ net:_124_ net:_140_ net:_361_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 27.3, 48.3 ) - ( 29.4, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_000_ net:net36 + srcs: net:clk net:_401_ net:net36 congestion information: capacity:1 usage:3 overflow:2 bbox = ( 27.3, 52.5 ) - ( 29.4, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_403_ net:net44 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 27.3, 56.7 ) - ( 29.4, 58.8) on Layer - + srcs: net:_000_ net:_142_ net:_158_ net:net44 + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 27.3, 54.6 ) - ( 29.4, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_421_ + srcs: net:_001_ net:_055_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 60.9 ) - ( 29.4, 63) on Layer - + bbox = ( 27.3, 58.8 ) - ( 29.4, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_353_ + srcs: net:_380_ net:net35 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 69.3 ) - ( 29.4, 71.4) on Layer - + bbox = ( 27.3, 67.2 ) - ( 29.4, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:net48 + srcs: net:_397_ net:net37 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 2.1 ) - ( 31.5, 4.2) on Layer - + bbox = ( 29.4, 4.2 ) - ( 31.5, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_401_ net:net18 + srcs: net:_244_ net:_380_ net:net48 congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 29.4, 12.6 ) - ( 31.5, 14.7) on Layer - + bbox = ( 29.4, 8.4 ) - ( 31.5, 10.5) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_142_ + srcs: net:_248_ net:net18 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 29.4, 10.5 ) - ( 31.5, 12.6) on Layer - +violation type: Horizontal congestion + srcs: net:_142_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 16.8 ) - ( 31.5, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_387_ net:_392_ + srcs: net:_142_ net:_158_ net:_248_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 29.4, 25.2 ) - ( 31.5, 27.3) on Layer - + bbox = ( 29.4, 21 ) - ( 31.5, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_077_ net:_244_ + srcs: net:_158_ net:_387_ net:_392_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 29.4, 29.4 ) - ( 31.5, 31.5) on Layer - + bbox = ( 29.4, 25.2 ) - ( 31.5, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_248_ + srcs: net:clk net:_421_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 29.4, 27.3 ) - ( 31.5, 29.4) on Layer - +violation type: Horizontal congestion + srcs: net:_244_ net:_370_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 29.4, 29.4 ) - ( 31.5, 31.5) on Layer - +violation type: Horizontal congestion + srcs: net:_077_ net:_150_ net:_248_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 29.4, 31.5 ) - ( 31.5, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_091_ net:_370_ + srcs: net:_091_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 33.6 ) - ( 31.5, 35.7) on Layer - violation type: Horizontal congestion @@ -219,7 +371,11 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 35.7 ) - ( 31.5, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_141_ net:_142_ net:_307_ + srcs: net:_125_ net:_307_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 29.4, 37.8 ) - ( 31.5, 39.9) on Layer - +violation type: Horizontal congestion + srcs: net:_125_ net:_141_ net:_142_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 29.4, 39.9 ) - ( 31.5, 42) on Layer - violation type: Horizontal congestion @@ -227,21 +383,33 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 42 ) - ( 31.5, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_375_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_124_ net:_244_ net:_375_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 29.4, 44.1 ) - ( 31.5, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_090_ net:_140_ net:_248_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_248_ net:net43 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 29.4, 46.2 ) - ( 31.5, 48.3) on Layer - +violation type: Horizontal congestion + srcs: net:_090_ net:_140_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 48.3 ) - ( 31.5, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_005_ + srcs: net:_158_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 29.4, 50.4 ) - ( 31.5, 52.5) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_005_ net:_401_ net:net44 + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 29.4, 52.5 ) - ( 31.5, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_403_ net:_421_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 29.4, 56.7 ) - ( 31.5, 58.8) on Layer - + srcs: net:_054_ net:_142_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 29.4, 54.6 ) - ( 31.5, 56.7) on Layer - +violation type: Horizontal congestion + srcs: net:_055_ net:_057_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 29.4, 58.8 ) - ( 31.5, 60.9) on Layer - violation type: Horizontal congestion srcs: net:_420_ net:_421_ congestion information: capacity:1 usage:2 overflow:1 @@ -249,73 +417,69 @@ violation type: Horizontal congestion violation type: Horizontal congestion srcs: net:_380_ net:net50 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 67.2 ) - ( 31.5, 69.3) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_353_ - congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 69.3 ) - ( 31.5, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:net52 + srcs: net:net43 net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 73.5 ) - ( 31.5, 75.6) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_397_ net:net48 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 31.5, 2.1 ) - ( 33.6, 4.2) on Layer - + bbox = ( 31.5, 0 ) - ( 33.6, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:net37 + srcs: net:_397_ net:net37 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 8.4 ) - ( 33.6, 10.5) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_142_ net:_374_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 31.5, 16.8 ) - ( 33.6, 18.9) on Layer - + bbox = ( 31.5, 4.2 ) - ( 33.6, 6.3) on Layer - violation type: Horizontal congestion srcs: net:_244_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 21 ) - ( 33.6, 23.1) on Layer - + bbox = ( 31.5, 10.5 ) - ( 33.6, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:_389_ net:net53 + srcs: net:_252_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 23.1 ) - ( 33.6, 25.2) on Layer - + bbox = ( 31.5, 12.6 ) - ( 33.6, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_421_ + srcs: net:_158_ net:_248_ net:_389_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 31.5, 21 ) - ( 33.6, 23.1) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_421_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 27.3 ) - ( 33.6, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_070_ net:_111_ + srcs: net:_070_ net:_150_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 31.5 ) - ( 33.6, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_370_ + srcs: net:_111_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 33.6 ) - ( 33.6, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_141_ net:_203_ + srcs: net:_141_ net:_218_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 39.9 ) - ( 33.6, 42) on Layer - + bbox = ( 31.5, 37.8 ) - ( 33.6, 39.9) on Layer - violation type: Horizontal congestion srcs: net:_158_ net:_306_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 42 ) - ( 33.6, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_124_ net:_375_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_124_ net:_244_ net:_375_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 31.5, 44.1 ) - ( 33.6, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_124_ net:_244_ net:_300_ + srcs: net:_248_ net:_300_ net:net43 congestion information: capacity:1 usage:3 overflow:2 bbox = ( 31.5, 46.2 ) - ( 33.6, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_140_ net:_248_ + srcs: net:clk net:_140_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 48.3 ) - ( 33.6, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_059_ net:_142_ + srcs: net:_059_ net:_158_ net:_385_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 31.5, 50.4 ) - ( 33.6, 52.5) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_401_ net:net44 congestion information: capacity:1 usage:3 overflow:2 bbox = ( 31.5, 52.5 ) - ( 33.6, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_054_ net:_421_ + srcs: net:_054_ net:_142_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 54.6 ) - ( 33.6, 56.7) on Layer - violation type: Horizontal congestion @@ -323,71 +487,83 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 56.7 ) - ( 33.6, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_162_ net:_420_ net:_421_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 31.5, 60.9 ) - ( 33.6, 63) on Layer - + srcs: net:_055_ net:_156_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 31.5, 58.8 ) - ( 33.6, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_353_ + srcs: net:_420_ net:_421_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 65.1 ) - ( 33.6, 67.2) on Layer - + bbox = ( 31.5, 60.9 ) - ( 33.6, 63) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_380_ net:net50 - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_150_ net:net50 + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 67.2 ) - ( 33.6, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_397_ net:net48 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 33.6, 2.1 ) - ( 35.7, 4.2) on Layer - + srcs: net:clk net:_380_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 31.5, 69.3 ) - ( 33.6, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:net37 + srcs: net:net43 net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 8.4 ) - ( 35.7, 10.5) on Layer - + bbox = ( 33.6, 0 ) - ( 35.7, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_380_ net:_401_ + srcs: net:_397_ net:net37 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 12.6 ) - ( 35.7, 14.7) on Layer - + bbox = ( 33.6, 4.2 ) - ( 35.7, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_027_ net:_142_ net:_374_ + srcs: net:_380_ net:net53 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 33.6, 8.4 ) - ( 35.7, 10.5) on Layer - +violation type: Horizontal congestion + srcs: net:_244_ net:_248_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 33.6, 16.8 ) - ( 35.7, 18.9) on Layer - + bbox = ( 33.6, 10.5 ) - ( 35.7, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:_081_ net:_115_ + srcs: net:_142_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 18.9 ) - ( 35.7, 21) on Layer - + bbox = ( 33.6, 12.6 ) - ( 35.7, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_342_ net:_344_ + srcs: net:_115_ net:_374_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 33.6, 18.9 ) - ( 35.7, 21) on Layer - +violation type: Horizontal congestion + srcs: net:_081_ net:_158_ net:_342_ net:_344_ net:_389_ + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 33.6, 21 ) - ( 35.7, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_020_ net:_043_ net:_074_ net:_389_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_020_ net:_074_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 23.1 ) - ( 35.7, 25.2) on Layer - +violation type: Horizontal congestion + srcs: net:_043_ net:_343_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 33.6, 25.2 ) - ( 35.7, 27.3) on Layer - violation type: Horizontal congestion srcs: net:_421_ net:net53 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 27.3 ) - ( 35.7, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_158_ + srcs: net:clk net:_370_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 29.4 ) - ( 35.7, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_016_ net:_111_ + srcs: net:_016_ net:_150_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 31.5 ) - ( 35.7, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_252_ net:_370_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_111_ net:_252_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 33.6 ) - ( 35.7, 35.7) on Layer - violation type: Horizontal congestion srcs: net:_140_ net:_405_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 35.7 ) - ( 35.7, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_141_ net:_218_ net:_309_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_141_ net:_218_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 37.8 ) - ( 35.7, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_141_ net:_203_ net:_306_ + srcs: net:_203_ net:_306_ net:_309_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 39.9 ) - ( 35.7, 42) on Layer - violation type: Horizontal congestion @@ -395,27 +571,23 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 42 ) - ( 35.7, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_304_ net:_375_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_244_ net:_304_ net:_375_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 44.1 ) - ( 35.7, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_300_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_248_ net:_300_ net:_385_ net:net43 + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 33.6, 46.2 ) - ( 35.7, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_140_ net:_248_ net:dpath.a_lt_b$in1\[8\] - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 33.6, 48.3 ) - ( 35.7, 50.4) on Layer - -violation type: Horizontal congestion - srcs: net:_068_ net:net44 + srcs: net:_140_ net:dpath.a_lt_b$in1\[8\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 50.4 ) - ( 35.7, 52.5) on Layer - + bbox = ( 33.6, 48.3 ) - ( 35.7, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_418_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_158_ net:_401_ net:_418_ net:net44 + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 33.6, 52.5 ) - ( 35.7, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_059_ net:_158_ + srcs: net:clk net:_059_ net:_142_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 54.6 ) - ( 35.7, 56.7) on Layer - violation type: Horizontal congestion @@ -423,52 +595,48 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 56.7 ) - ( 35.7, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_152_ net:_154_ net:_402_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_152_ net:_402_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 58.8 ) - ( 35.7, 60.9) on Layer - violation type: Horizontal congestion srcs: net:_150_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 65.1 ) - ( 35.7, 67.2) on Layer - + bbox = ( 33.6, 67.2 ) - ( 35.7, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_380_ net:net50 + srcs: net:clk net:_380_ net:net52 congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 33.6, 67.2 ) - ( 35.7, 69.3) on Layer - + bbox = ( 33.6, 69.3 ) - ( 35.7, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:net48 + srcs: net:net43 net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 2.1 ) - ( 37.8, 4.2) on Layer - + bbox = ( 35.7, 0 ) - ( 37.8, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net53 + srcs: net:_397_ net:net37 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 4.2 ) - ( 37.8, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:net37 + srcs: net:_380_ net:net53 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 8.4 ) - ( 37.8, 10.5) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_252_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 16.8 ) - ( 37.8, 18.9) on Layer - -violation type: Horizontal congestion - srcs: net:_252_ net:_342_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 21 ) - ( 37.8, 23.1) on Layer - + srcs: net:_142_ net:_248_ net:_252_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 35.7, 12.6 ) - ( 37.8, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_043_ net:_367_ net:_389_ + srcs: net:_158_ net:_342_ net:_389_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 35.7, 23.1 ) - ( 37.8, 25.2) on Layer - + bbox = ( 35.7, 21 ) - ( 37.8, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_401_ net:net53 + srcs: net:_043_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 27.3 ) - ( 37.8, 29.4) on Layer - + bbox = ( 35.7, 25.2 ) - ( 37.8, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_039_ net:_158_ + srcs: net:_039_ net:_150_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 29.4 ) - ( 37.8, 31.5) on Layer - + bbox = ( 35.7, 31.5 ) - ( 37.8, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_111_ net:_150_ net:_200_ net:_252_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_111_ net:_200_ net:_252_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 33.6 ) - ( 37.8, 35.7) on Layer - violation type: Horizontal congestion srcs: net:_140_ net:_141_ net:_302_ @@ -487,77 +655,81 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 42 ) - ( 37.8, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_303_ net:_375_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 44.1 ) - ( 37.8, 46.2) on Layer - + srcs: net:_204_ net:_294_ net:_375_ net:_385_ net:net43 + congestion information: capacity:1 usage:5 overflow:4 + bbox = ( 35.7, 46.2 ) - ( 37.8, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_294_ net:_299_ net:_418_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_244_ net:_299_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 48.3 ) - ( 37.8, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_059_ net:_158_ + srcs: net:_158_ net:_401_ net:_418_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 35.7, 52.5 ) - ( 37.8, 54.6) on Layer - +violation type: Horizontal congestion + srcs: net:_059_ net:_142_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 54.6 ) - ( 37.8, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_153_ net:_160_ + srcs: net:clk net:_160_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 56.7 ) - ( 37.8, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_056_ net:_152_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_056_ net:_152_ net:_153_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 58.8 ) - ( 37.8, 60.9) on Layer - violation type: Horizontal congestion srcs: net:_151_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 60.9 ) - ( 37.8, 63) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_353_ net:_384_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 35.7, 65.1 ) - ( 37.8, 67.2) on Layer - + srcs: net:_150_ net:_402_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 35.7, 63 ) - ( 37.8, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_380_ net:net50 - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_353_ net:_380_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 67.2 ) - ( 37.8, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_160_ + srcs: net:clk net:_378_ net:net52 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 35.7, 69.3 ) - ( 37.8, 71.4) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 73.5 ) - ( 37.8, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:net48 net:net53 + srcs: net:net43 net:net53 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 2.1 ) - ( 39.9, 4.2) on Layer - + bbox = ( 37.8, 0 ) - ( 39.9, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_397_ + srcs: net:_381_ net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 4.2 ) - ( 39.9, 6.3) on Layer - + bbox = ( 37.8, 2.1 ) - ( 39.9, 4.2) on Layer - violation type: Horizontal congestion - srcs: net:_401_ net:net37 + srcs: net:_397_ net:net37 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 10.5 ) - ( 39.9, 12.6) on Layer - + bbox = ( 37.8, 4.2 ) - ( 39.9, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_380_ net:net31 - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_248_ net:_252_ net:_380_ net:net31 + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 37.8, 12.6 ) - ( 39.9, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_252_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 16.8 ) - ( 39.9, 18.9) on Layer - -violation type: Horizontal congestion - srcs: net:_097_ net:_409_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_158_ net:_389_ net:_409_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 21 ) - ( 39.9, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_352_ net:_389_ + srcs: net:_097_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 23.1 ) - ( 39.9, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_131_ net:_401_ + srcs: net:_131_ net:_370_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 27.3 ) - ( 39.9, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_127_ net:_370_ + srcs: net:_093_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 31.5 ) - ( 39.9, 33.6) on Layer - + bbox = ( 37.8, 29.4 ) - ( 39.9, 31.5) on Layer - violation type: Horizontal congestion srcs: net:_111_ net:_150_ net:_200_ congestion information: capacity:1 usage:3 overflow:2 @@ -571,95 +743,95 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 37.8 ) - ( 39.9, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_202_ net:_252_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_202_ net:_252_ net:_419_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 39.9 ) - ( 39.9, 42) on Layer - violation type: Horizontal congestion - srcs: net:_203_ net:_204_ net:_419_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_203_ net:_204_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 42 ) - ( 39.9, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_204_ net:_375_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 44.1 ) - ( 39.9, 46.2) on Layer - + srcs: net:_253_ net:_294_ net:_298_ net:_375_ net:_385_ net:net43 + congestion information: capacity:1 usage:6 overflow:5 + bbox = ( 37.8, 46.2 ) - ( 39.9, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_253_ net:_294_ net:_385_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 37.8, 48.3 ) - ( 39.9, 50.4) on Layer - + srcs: net:_247_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 37.8, 50.4 ) - ( 39.9, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_059_ net:_158_ + srcs: net:_059_ net:_142_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 54.6 ) - ( 39.9, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_058_ net:_153_ net:_160_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_058_ net:_160_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 56.7 ) - ( 39.9, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_147_ net:_150_ net:_152_ net:_161_ + srcs: net:_147_ net:_150_ net:_153_ net:_161_ congestion information: capacity:1 usage:4 overflow:3 bbox = ( 37.8, 58.8 ) - ( 39.9, 60.9) on Layer - +violation type: Horizontal congestion + srcs: net:_151_ net:_152_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 37.8, 60.9 ) - ( 39.9, 63) on Layer - violation type: Horizontal congestion srcs: net:_150_ net:_353_ net:_402_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 37.8, 63 ) - ( 39.9, 65.1) on Layer - +violation type: Horizontal congestion + srcs: net:net33 net:net50 + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 65.1 ) - ( 39.9, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_380_ net:net50 + srcs: net:clk net:_378_ net:net52 congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 37.8, 67.2 ) - ( 39.9, 69.3) on Layer - + bbox = ( 37.8, 69.3 ) - ( 39.9, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_385_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 73.5 ) - ( 39.9, 75.6) on Layer - + srcs: net:_381_ net:net43 net:net53 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 39.9, 0 ) - ( 42, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:net48 net:net53 + srcs: net:_248_ net:net46 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 2.1 ) - ( 42, 4.2) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_248_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 8.4 ) - ( 42, 10.5) on Layer - -violation type: Horizontal congestion - srcs: net:_401_ net:net37 + srcs: net:_244_ net:net37 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 10.5 ) - ( 42, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_158_ net:_244_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 39.9, 18.9 ) - ( 42, 21) on Layer - + srcs: net:clk net:_352_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 39.9, 14.7 ) - ( 42, 16.8) on Layer - violation type: Horizontal congestion - srcs: net:_352_ net:_389_ + srcs: net:_142_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 23.1 ) - ( 42, 25.2) on Layer - + bbox = ( 39.9, 16.8 ) - ( 42, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_131_ net:_206_ + srcs: net:_389_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 27.3 ) - ( 42, 29.4) on Layer - + bbox = ( 39.9, 21 ) - ( 42, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_127_ net:_363_ net:_370_ + srcs: net:_131_ net:_206_ net:_370_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 39.9, 31.5 ) - ( 42, 33.6) on Layer - + bbox = ( 39.9, 27.3 ) - ( 42, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_201_ + srcs: net:_127_ net:_149_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 35.7 ) - ( 42, 37.8) on Layer - + bbox = ( 39.9, 33.6 ) - ( 42, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_220_ net:_317_ + srcs: net:_128_ net:_201_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 37.8 ) - ( 42, 39.9) on Layer - + bbox = ( 39.9, 35.7 ) - ( 42, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_311_ net:_325_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_220_ net:_311_ net:_325_ net:_419_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 39.9, 39.9 ) - ( 42, 42) on Layer - violation type: Horizontal congestion - srcs: net:_252_ net:_419_ + srcs: net:_253_ net:_375_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 42 ) - ( 42, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_205_ net:_375_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 44.1 ) - ( 42, 46.2) on Layer - -violation type: Horizontal congestion - srcs: net:_252_ net:_253_ net:_298_ + srcs: net:_252_ net:_298_ net:net43 congestion information: capacity:1 usage:3 overflow:2 bbox = ( 39.9, 46.2 ) - ( 42, 48.3) on Layer - violation type: Horizontal congestion @@ -670,94 +842,90 @@ violation type: Horizontal congestion srcs: net:_109_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 50.4 ) - ( 42, 52.5) on Layer - -violation type: Horizontal congestion - srcs: net:_109_ net:_142_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 52.5 ) - ( 42, 54.6) on Layer - violation type: Horizontal congestion srcs: net:_059_ net:_158_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 54.6 ) - ( 42, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_160_ + srcs: net:_147_ net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 56.7 ) - ( 42, 58.8) on Layer - + bbox = ( 39.9, 60.9 ) - ( 42, 63) on Layer - violation type: Horizontal congestion - srcs: net:_147_ net:_353_ + srcs: net:_353_ net:_380_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 58.8 ) - ( 42, 60.9) on Layer - + bbox = ( 39.9, 63 ) - ( 42, 65.1) on Layer - violation type: Horizontal congestion srcs: net:clk net:_412_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 65.1 ) - ( 42, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_380_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 67.2 ) - ( 42, 69.3) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_378_ + srcs: net:_378_ net:net52 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 71.4 ) - ( 42, 73.5) on Layer - + bbox = ( 39.9, 69.3 ) - ( 42, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_385_ + srcs: net:_159_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 73.5 ) - ( 42, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_384_ net:net9 + srcs: net:_381_ net:net53 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 86.1 ) - ( 42, 88.2) on Layer - + bbox = ( 42, 0 ) - ( 44.1, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:net33 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 88.2 ) - ( 42, 90.3) on Layer - + srcs: net:_248_ net:net43 net:net46 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 42, 2.1 ) - ( 44.1, 4.2) on Layer - violation type: Horizontal congestion - srcs: net:net48 net:net53 + srcs: net:_244_ net:net3 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 2.1 ) - ( 44.1, 4.2) on Layer - + bbox = ( 42, 10.5 ) - ( 44.1, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_397_ + srcs: net:_252_ net:net37 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 4.2 ) - ( 44.1, 6.3) on Layer - + bbox = ( 42, 12.6 ) - ( 44.1, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_401_ + srcs: net:clk net:_352_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 8.4 ) - ( 44.1, 10.5) on Layer - + bbox = ( 42, 14.7 ) - ( 44.1, 16.8) on Layer - violation type: Horizontal congestion - srcs: net:_409_ net:net3 net:net37 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 42, 10.5 ) - ( 44.1, 12.6) on Layer - + srcs: net:_248_ net:_409_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 42, 16.8 ) - ( 44.1, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_335_ + srcs: net:_335_ net:_410_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 18.9 ) - ( 44.1, 21) on Layer - -violation type: Horizontal congestion - srcs: net:_329_ net:_337_ net:_352_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 42, 21 ) - ( 44.1, 23.1) on Layer - violation type: Horizontal congestion srcs: net:_339_ net:_340_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 23.1 ) - ( 44.1, 25.2) on Layer - +violation type: Horizontal congestion + srcs: net:_337_ net:_338_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 42, 25.2 ) - ( 44.1, 27.3) on Layer - violation type: Horizontal congestion srcs: net:_206_ net:_327_ net:_346_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 27.3 ) - ( 44.1, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_131_ net:_149_ net:_227_ + srcs: net:_131_ net:_228_ net:_410_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 42, 31.5 ) - ( 44.1, 33.6) on Layer - + bbox = ( 42, 29.4 ) - ( 44.1, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_223_ net:_317_ net:_318_ + srcs: net:_149_ net:_227_ net:_317_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 42, 31.5 ) - ( 44.1, 33.6) on Layer - +violation type: Horizontal congestion + srcs: net:_223_ net:_318_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 33.6 ) - ( 44.1, 35.7) on Layer - violation type: Horizontal congestion srcs: net:_128_ net:_201_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 35.7 ) - ( 44.1, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_201_ net:_220_ net:_327_ net:net43 - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 42, 37.8 ) - ( 44.1, 39.9) on Layer - + srcs: net:_220_ net:_325_ net:_327_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 42, 39.9 ) - ( 44.1, 42) on Layer - violation type: Horizontal congestion srcs: net:_253_ net:_375_ congestion information: capacity:1 usage:2 overflow:1 @@ -767,101 +935,97 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 44.1 ) - ( 44.1, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_252_ net:_298_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_252_ net:_298_ net:_352_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 46.2 ) - ( 44.1, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_352_ + srcs: net:_243_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 48.3 ) - ( 44.1, 50.4) on Layer - -violation type: Horizontal congestion - srcs: net:_158_ net:_243_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 50.4 ) - ( 44.1, 52.5) on Layer - violation type: Horizontal congestion srcs: net:_142_ net:_160_ net:_230_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 52.5 ) - ( 44.1, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_117_ net:_158_ + srcs: net:_158_ net:_159_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 54.6 ) - ( 44.1, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_380_ net:_384_ + srcs: net:_117_ net:_380_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 56.7 ) - ( 44.1, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_099_ net:_147_ net:_353_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 42, 58.8 ) - ( 44.1, 60.9) on Layer - + srcs: net:_045_ net:_147_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 42, 60.9 ) - ( 44.1, 63) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_029_ net:_412_ + srcs: net:clk net:_353_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 42, 63 ) - ( 44.1, 65.1) on Layer - +violation type: Horizontal congestion + srcs: net:_029_ net:_159_ net:_378_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 42, 65.1 ) - ( 44.1, 67.2) on Layer - + bbox = ( 42, 67.2 ) - ( 44.1, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_159_ + srcs: net:_384_ net:net52 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 73.5 ) - ( 44.1, 75.6) on Layer - + bbox = ( 42, 69.3 ) - ( 44.1, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net53 + srcs: net:_381_ net:net53 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 4.2 ) - ( 46.2, 6.3) on Layer - + bbox = ( 44.1, 0 ) - ( 46.2, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:net46 + srcs: net:net43 net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 6.3 ) - ( 46.2, 8.4) on Layer - + bbox = ( 44.1, 2.1 ) - ( 46.2, 4.2) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_409_ + srcs: net:_248_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 10.5 ) - ( 46.2, 12.6) on Layer - + bbox = ( 44.1, 4.2 ) - ( 46.2, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_248_ + srcs: net:_244_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 14.7 ) - ( 46.2, 16.8) on Layer - + bbox = ( 44.1, 10.5 ) - ( 46.2, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:_114_ net:_252_ + srcs: net:clk net:_352_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 16.8 ) - ( 46.2, 18.9) on Layer - + bbox = ( 44.1, 14.7 ) - ( 46.2, 16.8) on Layer - violation type: Horizontal congestion - srcs: net:_073_ net:_334_ net:_352_ + srcs: net:_073_ net:_244_ net:_334_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 18.9 ) - ( 46.2, 21) on Layer - violation type: Horizontal congestion - srcs: net:_206_ net:_327_ + srcs: net:_327_ net:_337_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 27.3 ) - ( 46.2, 29.4) on Layer - + bbox = ( 44.1, 25.2 ) - ( 46.2, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_207_ net:_410_ + srcs: net:_131_ net:_207_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 29.4 ) - ( 46.2, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_131_ net:_149_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_128_ net:_149_ net:_221_ net:_317_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 44.1, 31.5 ) - ( 46.2, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_221_ net:_317_ net:_318_ + srcs: net:_128_ net:_201_ net:_222_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 44.1, 33.6 ) - ( 46.2, 35.7) on Layer - -violation type: Horizontal congestion - srcs: net:_128_ net:_222_ - congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 35.7 ) - ( 46.2, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_201_ net:_220_ net:_224_ net:net43 - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 44.1, 37.8 ) - ( 46.2, 39.9) on Layer - -violation type: Horizontal congestion - srcs: net:_352_ net:_375_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 42 ) - ( 46.2, 44.1) on Layer - + srcs: net:_220_ net:_224_ net:_253_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 44.1, 39.9 ) - ( 46.2, 42) on Layer - violation type: Horizontal congestion srcs: net:_205_ net:_228_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 44.1 ) - ( 46.2, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_252_ net:_298_ net:_401_ + srcs: net:_252_ net:_298_ net:_352_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 46.2 ) - ( 46.2, 48.3) on Layer - +violation type: Horizontal congestion + srcs: net:_244_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 44.1, 48.3 ) - ( 46.2, 50.4) on Layer - violation type: Horizontal congestion srcs: net:_160_ net:_242_ congestion information: capacity:1 usage:2 overflow:1 @@ -871,13 +1035,13 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 52.5 ) - ( 46.2, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_384_ + srcs: net:_117_ net:_158_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 56.7 ) - ( 46.2, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_133_ net:_147_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 58.8 ) - ( 46.2, 60.9) on Layer - + srcs: net:_133_ net:_147_ net:_165_ net:_384_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 44.1, 60.9 ) - ( 46.2, 63) on Layer - violation type: Horizontal congestion srcs: net:_007_ net:_117_ congestion information: capacity:1 usage:2 overflow:1 @@ -887,101 +1051,109 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 65.1 ) - ( 46.2, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_378_ + srcs: net:_378_ net:net52 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 44.1, 67.2 ) - ( 46.2, 69.3) on Layer - +violation type: Horizontal congestion + srcs: net:_165_ net:net51 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 71.4 ) - ( 46.2, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_353_ + srcs: net:clk net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 77.7 ) - ( 46.2, 79.8) on Layer - + bbox = ( 44.1, 75.6 ) - ( 46.2, 77.7) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_248_ + srcs: net:net43 net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 79.8 ) - ( 46.2, 81.9) on Layer - + bbox = ( 46.2, 2.1 ) - ( 48.3, 4.2) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net53 + srcs: net:_248_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 4.2 ) - ( 48.3, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:net46 + srcs: net:_381_ net:net48 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 6.3 ) - ( 48.3, 8.4) on Layer - violation type: Horizontal congestion - srcs: net:_401_ net:_409_ + srcs: net:_244_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 8.4 ) - ( 48.3, 10.5) on Layer - + bbox = ( 46.2, 12.6 ) - ( 48.3, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_114_ net:_252_ net:_408_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:clk net:_352_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 46.2, 14.7 ) - ( 48.3, 16.8) on Layer - +violation type: Horizontal congestion + srcs: net:_114_ net:_408_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 16.8 ) - ( 48.3, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_073_ net:_352_ + srcs: net:_073_ net:_244_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 18.9 ) - ( 48.3, 21) on Layer - violation type: Horizontal congestion - srcs: net:_209_ net:_329_ net:_410_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_209_ net:_329_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 21 ) - ( 48.3, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_210_ net:_212_ + srcs: net:_210_ net:_327_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 25.2 ) - ( 48.3, 27.3) on Layer - + bbox = ( 46.2, 23.1 ) - ( 48.3, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_129_ net:_208_ + srcs: net:_208_ net:_210_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 27.3 ) - ( 48.3, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_130_ net:_207_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_129_ net:_131_ net:_207_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 29.4 ) - ( 48.3, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_131_ net:_149_ net:_221_ + srcs: net:_130_ net:_149_ net:_221_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 31.5 ) - ( 48.3, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_318_ net:_319_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_128_ net:_318_ net:_319_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 33.6 ) - ( 48.3, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_320_ + srcs: net:_201_ net:_320_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 35.7 ) - ( 48.3, 37.8) on Layer - -violation type: Horizontal congestion - srcs: net:_116_ net:_201_ net:_410_ net:net43 - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 46.2, 37.8 ) - ( 48.3, 39.9) on Layer - -violation type: Horizontal congestion - srcs: net:_253_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 39.9 ) - ( 48.3, 42) on Layer - violation type: Horizontal congestion srcs: net:_116_ net:_213_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 42 ) - ( 48.3, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_168_ net:_401_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_168_ net:_205_ net:_215_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 44.1 ) - ( 48.3, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_205_ net:_215_ net:_244_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_298_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 46.2, 46.2 ) - ( 48.3, 48.3) on Layer - +violation type: Horizontal congestion + srcs: net:_244_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 48.3 ) - ( 48.3, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_229_ net:_235_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_160_ net:_229_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 50.4 ) - ( 48.3, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_230_ + srcs: net:_230_ net:_235_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 52.5 ) - ( 48.3, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_117_ net:_287_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_165_ net:_287_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 54.6 ) - ( 48.3, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_117_ net:_133_ net:_147_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 46.2, 58.8 ) - ( 48.3, 60.9) on Layer - + srcs: net:_117_ net:_179_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 46.2, 56.7 ) - ( 48.3, 58.8) on Layer - +violation type: Horizontal congestion + srcs: net:_147_ net:_165_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 46.2, 60.9 ) - ( 48.3, 63) on Layer - violation type: Horizontal congestion srcs: net:_061_ net:_404_ net:_411_ congestion information: capacity:1 usage:3 overflow:2 @@ -990,36 +1162,40 @@ violation type: Horizontal congestion srcs: net:_083_ net:_411_ net:_412_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 65.1 ) - ( 48.3, 67.2) on Layer - +violation type: Horizontal congestion + srcs: net:_249_ net:_404_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 46.2, 67.2 ) - ( 48.3, 69.3) on Layer - violation type: Horizontal congestion srcs: net:_165_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 71.4 ) - ( 48.3, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_353_ + srcs: net:clk net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 77.7 ) - ( 48.3, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_394_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 84 ) - ( 48.3, 86.1) on Layer - -violation type: Horizontal congestion - srcs: net:_381_ net:_397_ + srcs: net:net43 net:net53 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 0 ) - ( 50.4, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_401_ net:net53 + srcs: net:_248_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 4.2 ) - ( 50.4, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:net46 + srcs: net:_381_ net:net48 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 6.3 ) - ( 50.4, 8.4) on Layer - violation type: Horizontal congestion - srcs: net:_073_ net:_114_ net:_252_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 48.3, 16.8 ) - ( 50.4, 18.9) on Layer - + srcs: net:_401_ net:_409_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 48.3, 8.4 ) - ( 50.4, 10.5) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_244_ net:_352_ net:_408_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 48.3, 14.7 ) - ( 50.4, 16.8) on Layer - violation type: Horizontal congestion - srcs: net:_209_ net:_352_ + srcs: net:_073_ net:_209_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 18.9 ) - ( 50.4, 21) on Layer - violation type: Horizontal congestion @@ -1027,109 +1203,101 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 21 ) - ( 50.4, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_327_ net:_331_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_327_ net:_331_ net:_332_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 23.1 ) - ( 50.4, 25.2) on Layer - -violation type: Horizontal congestion - srcs: net:_212_ net:_332_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 25.2 ) - ( 50.4, 27.3) on Layer - violation type: Horizontal congestion srcs: net:_129_ net:_332_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 27.3 ) - ( 50.4, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_130_ net:_208_ net:_213_ + srcs: net:_130_ net:_132_ net:_221_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 48.3, 29.4 ) - ( 50.4, 31.5) on Layer - -violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_235_ net:_320_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 48.3, 35.7 ) - ( 50.4, 37.8) on Layer - + bbox = ( 48.3, 31.5 ) - ( 50.4, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_347_ net:net43 + srcs: net:_128_ net:_132_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 37.8 ) - ( 50.4, 39.9) on Layer - + bbox = ( 48.3, 33.6 ) - ( 50.4, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_352_ + srcs: net:_201_ net:_320_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 39.9 ) - ( 50.4, 42) on Layer - + bbox = ( 48.3, 35.7 ) - ( 50.4, 37.8) on Layer - violation type: Horizontal congestion srcs: net:_116_ net:_213_ net:_368_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 42 ) - ( 50.4, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_168_ net:_401_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_168_ net:_205_ net:_215_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 44.1 ) - ( 50.4, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_205_ net:_215_ net:_244_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 48.3, 48.3 ) - ( 50.4, 50.4) on Layer - + srcs: net:_298_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 48.3, 46.2 ) - ( 50.4, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_241_ + srcs: net:_244_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 48.3, 48.3 ) - ( 50.4, 50.4) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_165_ net:_241_ net:_404_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 48.3, 50.4 ) - ( 50.4, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_229_ net:_230_ net:_235_ net:_404_ - congestion information: capacity:1 usage:5 overflow:4 + srcs: net:_159_ net:_229_ net:_230_ net:_235_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 48.3, 52.5 ) - ( 50.4, 54.6) on Layer - violation type: Horizontal congestion srcs: net:_117_ net:_179_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 56.7 ) - ( 50.4, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_133_ net:_147_ net:_239_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_133_ net:_239_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 58.8 ) - ( 50.4, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_061_ net:_256_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_147_ net:_239_ net:_411_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 48.3, 60.9 ) - ( 50.4, 63) on Layer - +violation type: Horizontal congestion + srcs: net:_061_ net:_255_ net:_256_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 63 ) - ( 50.4, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_255_ net:_412_ + srcs: net:_253_ net:_412_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 65.1 ) - ( 50.4, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_404_ + srcs: net:_257_ net:_404_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 67.2 ) - ( 50.4, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_257_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 69.3 ) - ( 50.4, 71.4) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_253_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 75.6 ) - ( 50.4, 77.7) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_394_ + srcs: net:clk net:_159_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 79.8 ) - ( 50.4, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:_397_ net:net48 - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:net43 net:net53 + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 0 ) - ( 52.5, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_401_ net:net53 - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_248_ net:_381_ net:_397_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 4.2 ) - ( 52.5, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:net46 + srcs: net:_401_ net:net48 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 6.3 ) - ( 52.5, 8.4) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:net39 + srcs: net:clk net:_252_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 10.5 ) - ( 52.5, 12.6) on Layer - + bbox = ( 50.4, 12.6 ) - ( 52.5, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_019_ net:_042_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 14.7 ) - ( 52.5, 16.8) on Layer - + srcs: net:_019_ net:_114_ net:_244_ net:_352_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 50.4, 16.8 ) - ( 52.5, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_130_ net:_352_ + srcs: net:_252_ net:_327_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 18.9 ) - ( 52.5, 21) on Layer - + bbox = ( 50.4, 23.1 ) - ( 52.5, 25.2) on Layer - violation type: Horizontal congestion srcs: net:_129_ net:_211_ congestion information: capacity:1 usage:2 overflow:1 @@ -1143,43 +1311,43 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 29.4 ) - ( 52.5, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_112_ net:_128_ + srcs: net:_221_ net:_235_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 50.4, 31.5 ) - ( 52.5, 33.6) on Layer - +violation type: Horizontal congestion + srcs: net:_112_ net:_128_ net:_132_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 33.6 ) - ( 52.5, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_132_ net:_352_ net:_406_ net:net43 + srcs: net:_098_ net:_132_ net:_347_ net:_352_ congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 50.4, 35.7 ) - ( 52.5, 37.8) on Layer - -violation type: Horizontal congestion - srcs: net:_098_ net:_347_ - congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 37.8 ) - ( 52.5, 39.9) on Layer - violation type: Horizontal congestion srcs: net:_249_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 39.9 ) - ( 52.5, 42) on Layer - violation type: Horizontal congestion - srcs: net:_082_ net:_116_ net:_167_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 50.4, 42 ) - ( 52.5, 44.1) on Layer - -violation type: Horizontal congestion - srcs: net:_213_ net:_245_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_082_ net:_116_ net:_213_ net:_245_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 50.4, 44.1 ) - ( 52.5, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_214_ + srcs: net:_214_ net:_298_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 50.4, 46.2 ) - ( 52.5, 48.3) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_165_ net:_401_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 48.3 ) - ( 52.5, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_205_ net:_238_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_174_ net:_205_ net:_238_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 50.4 ) - ( 52.5, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_174_ net:_236_ + srcs: net:_159_ net:_235_ net:_250_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 52.5 ) - ( 52.5, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_250_ net:_287_ + srcs: net:_236_ net:_287_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 54.6 ) - ( 52.5, 56.7) on Layer - violation type: Horizontal congestion @@ -1187,71 +1355,79 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 56.7 ) - ( 52.5, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_133_ net:_147_ + srcs: net:_147_ net:_254_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 58.8 ) - ( 52.5, 60.9) on Layer - + bbox = ( 50.4, 60.9 ) - ( 52.5, 63) on Layer - +violation type: Horizontal congestion + srcs: net:_245_ net:_412_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 50.4, 65.1 ) - ( 52.5, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_118_ net:_404_ + srcs: net:_245_ net:_404_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 67.2 ) - ( 52.5, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_062_ net:_245_ + srcs: net:_062_ net:_118_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 69.3 ) - ( 52.5, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_118_ net:_159_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 50.4, 73.5 ) - ( 52.5, 75.6) on Layer - + srcs: net:clk net:_165_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 50.4, 71.4 ) - ( 52.5, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_394_ + srcs: net:_249_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 79.8 ) - ( 52.5, 81.9) on Layer - + bbox = ( 50.4, 75.6 ) - ( 52.5, 77.7) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:_397_ net:net48 - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:clk net:_160_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 50.4, 86.1 ) - ( 52.5, 88.2) on Layer - +violation type: Horizontal congestion + srcs: net:net43 net:net53 + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 0 ) - ( 54.6, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_401_ net:net53 + srcs: net:_248_ net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 4.2 ) - ( 54.6, 6.3) on Layer - + bbox = ( 52.5, 2.1 ) - ( 54.6, 4.2) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_409_ net:net46 + srcs: net:_397_ net:_401_ net:net48 congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 6.3 ) - ( 54.6, 8.4) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:net39 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 10.5 ) - ( 54.6, 12.6) on Layer - + srcs: net:clk net:_252_ net:_371_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 52.5, 12.6 ) - ( 54.6, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_114_ net:_130_ + srcs: net:_114_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 16.8 ) - ( 54.6, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_352_ net:_366_ + srcs: net:_130_ net:_366_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 18.9 ) - ( 54.6, 21) on Layer - violation type: Horizontal congestion - srcs: net:_072_ net:_244_ + srcs: net:_072_ net:_330_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 21 ) - ( 54.6, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_113_ net:_330_ net:_407_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_252_ net:_407_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 23.1 ) - ( 54.6, 25.2) on Layer - violation type: Horizontal congestion srcs: net:_113_ net:_129_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 52.5, 25.2 ) - ( 54.6, 27.3) on Layer - +violation type: Horizontal congestion + srcs: net:_113_ net:_129_ net:_130_ net:_371_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 52.5, 27.3 ) - ( 54.6, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_130_ net:_371_ + srcs: net:_221_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 29.4 ) - ( 54.6, 31.5) on Layer - -violation type: Horizontal congestion - srcs: net:_112_ net:_221_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 31.5 ) - ( 54.6, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_352_ net:net43 + srcs: net:_112_ net:_128_ net:_352_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 33.6 ) - ( 54.6, 35.7) on Layer - violation type: Horizontal congestion @@ -1267,89 +1443,85 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 39.9 ) - ( 54.6, 42) on Layer - violation type: Horizontal congestion - srcs: net:_116_ net:_349_ + srcs: net:_116_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 42 ) - ( 54.6, 44.1) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_245_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 44.1 ) - ( 54.6, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_199_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_160_ net:_165_ net:_199_ net:_401_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 52.5, 48.3 ) - ( 54.6, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_237_ net:_250_ + srcs: net:_174_ net:_237_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 50.4 ) - ( 54.6, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_174_ net:_178_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_178_ net:_250_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 52.5 ) - ( 54.6, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_258_ + srcs: net:_236_ net:_287_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 60.9 ) - ( 54.6, 63) on Layer - + bbox = ( 52.5, 54.6 ) - ( 54.6, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_173_ + srcs: net:_046_ net:_118_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 63 ) - ( 54.6, 65.1) on Layer - + bbox = ( 52.5, 73.5 ) - ( 54.6, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_126_ + srcs: net:_110_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 65.1 ) - ( 54.6, 67.2) on Layer - -violation type: Horizontal congestion - srcs: net:_008_ net:_159_ net:_165_ net:_245_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 52.5, 69.3 ) - ( 54.6, 71.4) on Layer - + bbox = ( 52.5, 77.7 ) - ( 54.6, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_394_ + srcs: net:_159_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 79.8 ) - ( 54.6, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_353_ + srcs: net:clk net:_160_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 81.9 ) - ( 54.6, 84) on Layer - + bbox = ( 52.5, 86.1 ) - ( 54.6, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:net48 + srcs: net:net43 net:net53 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 0 ) - ( 56.7, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_409_ net:net46 + srcs: net:_248_ net:net46 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 2.1 ) - ( 56.7, 4.2) on Layer - +violation type: Horizontal congestion + srcs: net:_397_ net:net48 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 6.3 ) - ( 56.7, 8.4) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_401_ net:net39 + srcs: net:clk net:_401_ net:net39 congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 54.6, 10.5 ) - ( 56.7, 12.6) on Layer - + bbox = ( 54.6, 8.4 ) - ( 56.7, 10.5) on Layer - violation type: Horizontal congestion - srcs: net:_371_ net:_401_ + srcs: net:_371_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 14.7 ) - ( 56.7, 16.8) on Layer - + bbox = ( 54.6, 12.6 ) - ( 56.7, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_130_ net:_373_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_352_ net:_373_ net:_401_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 16.8 ) - ( 56.7, 18.9) on Layer - +violation type: Horizontal congestion + srcs: net:_130_ net:_248_ net:_407_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 54.6, 18.9 ) - ( 56.7, 21) on Layer - violation type: Horizontal congestion srcs: net:_072_ net:_079_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 21 ) - ( 56.7, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_113_ net:_407_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 23.1 ) - ( 56.7, 25.2) on Layer - -violation type: Horizontal congestion - srcs: net:_113_ net:_129_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 27.3 ) - ( 56.7, 29.4) on Layer - -violation type: Horizontal congestion - srcs: net:_130_ net:_352_ net:_371_ net:net43 + srcs: net:_129_ net:_130_ net:_352_ net:_371_ congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 54.6, 29.4 ) - ( 56.7, 31.5) on Layer - + bbox = ( 54.6, 27.3 ) - ( 56.7, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_112_ net:_221_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_221_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 31.5 ) - ( 56.7, 33.6) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_112_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 33.6 ) - ( 56.7, 35.7) on Layer - violation type: Horizontal congestion srcs: net:_406_ net:dpath.a_lt_b$in1\[11\] congestion information: capacity:1 usage:2 overflow:1 @@ -1359,137 +1531,125 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 37.8 ) - ( 56.7, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_253_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 39.9 ) - ( 56.7, 42) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_159_ net:_245_ net:dpath.a_lt_b$in0\[15\] - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:clk net:_165_ net:dpath.a_lt_b$in0\[15\] + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 44.1 ) - ( 56.7, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_298_ net:_348_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 46.2 ) - ( 56.7, 48.3) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_199_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_160_ net:_199_ net:_298_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 48.3 ) - ( 56.7, 50.4) on Layer - violation type: Horizontal congestion srcs: net:_177_ net:_237_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 50.4 ) - ( 56.7, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_174_ net:_184_ net:_377_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_184_ net:_377_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 52.5 ) - ( 56.7, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_236_ net:_262_ + srcs: net:_236_ net:_287_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 54.6 ) - ( 56.7, 56.7) on Layer - +violation type: Horizontal congestion + srcs: net:_174_ net:_262_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 56.7 ) - ( 56.7, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_118_ net:_146_ + srcs: net:_146_ net:_147_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 60.9 ) - ( 56.7, 63) on Layer - + bbox = ( 54.6, 58.8 ) - ( 56.7, 60.9) on Layer - +violation type: Horizontal congestion + srcs: net:_173_ net:_174_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 63 ) - ( 56.7, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_118_ net:_134_ net:_262_ + srcs: net:_173_ net:_245_ net:_262_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 65.1 ) - ( 56.7, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_165_ net:_245_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_134_ net:_165_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 67.2 ) - ( 56.7, 69.3) on Layer - +violation type: Horizontal congestion + srcs: net:_118_ net:_134_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 69.3 ) - ( 56.7, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_100_ net:_118_ net:_394_ + srcs: net:_100_ net:_118_ net:_160_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 54.6, 73.5 ) - ( 56.7, 75.6) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_249_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 79.8 ) - ( 56.7, 81.9) on Layer - + bbox = ( 54.6, 73.5 ) - ( 56.7, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 81.9 ) - ( 56.7, 84) on Layer - + srcs: net:_110_ net:_159_ net:_353_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 54.6, 77.7 ) - ( 56.7, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_370_ + srcs: net:clk net:_370_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 84 ) - ( 56.7, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:net48 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 0 ) - ( 58.8, 2.1) on Layer - -violation type: Horizontal congestion - srcs: net:_397_ net:net53 + srcs: net:_248_ net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 4.2 ) - ( 58.8, 6.3) on Layer - + bbox = ( 56.7, 2.1 ) - ( 58.8, 4.2) on Layer - violation type: Horizontal congestion - srcs: net:_409_ net:net46 + srcs: net:_397_ net:net48 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 6.3 ) - ( 58.8, 8.4) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_401_ + srcs: net:clk net:_401_ net:net39 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 56.7, 8.4 ) - ( 58.8, 10.5) on Layer - +violation type: Horizontal congestion + srcs: net:_371_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 10.5 ) - ( 58.8, 12.6) on Layer - + bbox = ( 56.7, 12.6 ) - ( 58.8, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:net19 net:net40 + srcs: net:_352_ net:net40 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 16.8 ) - ( 58.8, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_352_ net:_371_ + srcs: net:_130_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 18.9 ) - ( 58.8, 21) on Layer - violation type: Horizontal congestion - srcs: net:_113_ net:dpath.a_lt_b$in0\[12\] - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 23.1 ) - ( 58.8, 25.2) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_018_ net:_248_ + srcs: net:clk net:_113_ net:dpath.a_lt_b$in0\[12\] congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 56.7, 25.2 ) - ( 58.8, 27.3) on Layer - + bbox = ( 56.7, 23.1 ) - ( 58.8, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_130_ net:_352_ net:_371_ net:_401_ net:net43 - congestion information: capacity:1 usage:5 overflow:4 - bbox = ( 56.7, 29.4 ) - ( 58.8, 31.5) on Layer - + srcs: net:_129_ net:_130_ net:_352_ net:_371_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 56.7, 27.3 ) - ( 58.8, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_112_ net:_372_ + srcs: net:_372_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 31.5 ) - ( 58.8, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_221_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_112_ net:_221_ net:_388_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 56.7, 33.6 ) - ( 58.8, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_388_ net:_406_ + srcs: net:clk net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 35.7 ) - ( 58.8, 37.8) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_165_ net:_249_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 37.8 ) - ( 58.8, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_159_ net:_245_ + srcs: net:_159_ net:_253_ net:_315_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 56.7, 44.1 ) - ( 58.8, 46.2) on Layer - + bbox = ( 56.7, 39.9 ) - ( 58.8, 42) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_348_ + srcs: net:clk net:_160_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 46.2 ) - ( 58.8, 48.3) on Layer - + bbox = ( 56.7, 44.1 ) - ( 58.8, 46.2) on Layer - violation type: Horizontal congestion srcs: net:_237_ net:_295_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 48.3 ) - ( 58.8, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_171_ net:_177_ net:_297_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 56.7, 50.4 ) - ( 58.8, 52.5) on Layer - -violation type: Horizontal congestion - srcs: net:_195_ net:_377_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_171_ net:_177_ net:_195_ net:_377_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 56.7, 52.5 ) - ( 58.8, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_196_ net:_236_ net:_271_ + srcs: net:_196_ net:_236_ net:_287_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 56.7, 56.7 ) - ( 58.8, 58.8) on Layer - + bbox = ( 56.7, 54.6 ) - ( 58.8, 56.7) on Layer - violation type: Horizontal congestion srcs: net:_143_ net:_144_ congestion information: capacity:1 usage:2 overflow:1 @@ -1499,55 +1659,55 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 60.9 ) - ( 58.8, 63) on Layer - violation type: Horizontal congestion - srcs: net:_172_ net:_263_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_118_ net:_172_ net:_263_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 63 ) - ( 58.8, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_118_ net:_145_ + srcs: net:_145_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 65.1 ) - ( 58.8, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_353_ net:_394_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 56.7, 71.4 ) - ( 58.8, 73.5) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_391_ + srcs: net:_118_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 73.5 ) - ( 58.8, 75.6) on Layer - + bbox = ( 56.7, 69.3 ) - ( 58.8, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_353_ + srcs: net:_160_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 81.9 ) - ( 58.8, 84) on Layer - + bbox = ( 56.7, 71.4 ) - ( 58.8, 73.5) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_159_ net:_353_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 56.7, 77.7 ) - ( 58.8, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_370_ + srcs: net:clk net:_393_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 84 ) - ( 58.8, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_388_ + srcs: net:_160_ net:_370_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 88.2 ) - ( 58.8, 90.3) on Layer - + bbox = ( 56.7, 86.1 ) - ( 58.8, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:net48 + srcs: net:_248_ net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 0 ) - ( 60.9, 2.1) on Layer - + bbox = ( 58.8, 2.1 ) - ( 60.9, 4.2) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net53 + srcs: net:_397_ net:net48 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 4.2 ) - ( 60.9, 6.3) on Layer - + bbox = ( 58.8, 6.3 ) - ( 60.9, 8.4) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_401_ + srcs: net:clk net:net39 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 10.5 ) - ( 60.9, 12.6) on Layer - + bbox = ( 58.8, 8.4 ) - ( 60.9, 10.5) on Layer - violation type: Horizontal congestion - srcs: net:net19 net:net40 + srcs: net:_409_ net:net19 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 16.8 ) - ( 60.9, 18.9) on Layer - + bbox = ( 58.8, 14.7 ) - ( 60.9, 16.8) on Layer - violation type: Horizontal congestion - srcs: net:_371_ net:_401_ net:net43 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 58.8, 29.4 ) - ( 60.9, 31.5) on Layer - + srcs: net:_130_ net:_371_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 58.8, 27.3 ) - ( 60.9, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_112_ net:_372_ + srcs: net:_112_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 31.5 ) - ( 60.9, 33.6) on Layer - violation type: Horizontal congestion @@ -1559,121 +1719,125 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 35.7 ) - ( 60.9, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_165_ net:_249_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 58.8, 37.8 ) - ( 60.9, 39.9) on Layer - -violation type: Horizontal congestion - srcs: net:_253_ net:_397_ + srcs: net:_159_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 39.9 ) - ( 60.9, 42) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_122_ net:_159_ net:_245_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:clk net:_245_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 58.8, 42 ) - ( 60.9, 44.1) on Layer - +violation type: Horizontal congestion + srcs: net:_122_ net:_359_ net:_397_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 44.1 ) - ( 60.9, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_193_ net:_272_ + srcs: net:_138_ net:_193_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 46.2 ) - ( 60.9, 48.3) on Layer - + bbox = ( 58.8, 48.3 ) - ( 60.9, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_171_ net:_177_ net:_297_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_297_ net:_348_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 50.4 ) - ( 60.9, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_287_ net:_348_ net:_377_ + srcs: net:_171_ net:_195_ net:_377_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 58.8, 54.6 ) - ( 60.9, 56.7) on Layer - + bbox = ( 58.8, 52.5 ) - ( 60.9, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_144_ net:_236_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 56.7 ) - ( 60.9, 58.8) on Layer - + srcs: net:_177_ net:_236_ net:_287_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 58.8, 54.6 ) - ( 60.9, 56.7) on Layer - violation type: Horizontal congestion srcs: net:_143_ net:_144_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 58.8 ) - ( 60.9, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_172_ net:_265_ net:_348_ + srcs: net:_172_ net:_245_ net:_265_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 63 ) - ( 60.9, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_135_ net:_245_ net:_356_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 58.8, 69.3 ) - ( 60.9, 71.4) on Layer - + srcs: net:_119_ net:_348_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 58.8, 65.1 ) - ( 60.9, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_391_ + srcs: net:_047_ net:_356_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 73.5 ) - ( 60.9, 75.6) on Layer - + bbox = ( 58.8, 69.3 ) - ( 60.9, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_353_ + srcs: net:_119_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 58.8, 71.4 ) - ( 60.9, 73.5) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_159_ net:_353_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 77.7 ) - ( 60.9, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_372_ + srcs: net:clk net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 81.9 ) - ( 60.9, 84) on Layer - + bbox = ( 58.8, 84 ) - ( 60.9, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:net22 + srcs: net:_160_ net:net1 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 86.1 ) - ( 60.9, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_388_ + srcs: net:_165_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 88.2 ) - ( 60.9, 90.3) on Layer - + bbox = ( 58.8, 92.4 ) - ( 60.9, 94.5) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net1 + srcs: net:_248_ net:net48 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 90.3 ) - ( 60.9, 92.4) on Layer - + bbox = ( 60.9, 6.3 ) - ( 63, 8.4) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_397_ + srcs: net:_409_ net:net19 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 10.5 ) - ( 63, 12.6) on Layer - + bbox = ( 60.9, 14.7 ) - ( 63, 16.8) on Layer - violation type: Horizontal congestion - srcs: net:net19 net:net40 + srcs: net:clk net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 16.8 ) - ( 63, 18.9) on Layer - + bbox = ( 60.9, 21 ) - ( 63, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_371_ net:_401_ + srcs: net:_130_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 27.3 ) - ( 63, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_397_ + srcs: net:_372_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 29.4 ) - ( 63, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_372_ net:_388_ + srcs: net:_159_ net:_248_ net:_397_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 60.9, 37.8 ) - ( 63, 39.9) on Layer - +violation type: Horizontal congestion + srcs: net:_050_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 31.5 ) - ( 63, 33.6) on Layer - + bbox = ( 60.9, 39.9 ) - ( 63, 42) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_248_ net:_253_ + srcs: net:clk net:_138_ net:_245_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 60.9, 37.8 ) - ( 63, 39.9) on Layer - + bbox = ( 60.9, 42 ) - ( 63, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_122_ net:_138_ net:_159_ net:_245_ net:_353_ - congestion information: capacity:1 usage:5 overflow:4 + srcs: net:_122_ net:_353_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 44.1 ) - ( 63, 46.2) on Layer - violation type: Horizontal congestion srcs: net:_272_ net:_288_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 46.2 ) - ( 63, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_177_ net:_289_ + srcs: net:_169_ net:_297_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 48.3 ) - ( 63, 50.4) on Layer - -violation type: Horizontal congestion - srcs: net:_169_ net:_171_ net:_297_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 50.4 ) - ( 63, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_189_ net:_191_ + srcs: net:_171_ net:_189_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 52.5 ) - ( 63, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_287_ net:_417_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 56.7 ) - ( 63, 58.8) on Layer - + srcs: net:_177_ net:_191_ net:_236_ net:_377_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 60.9, 54.6 ) - ( 63, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_143_ net:_236_ net:_417_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 60.9, 58.8 ) - ( 63, 60.9) on Layer - + srcs: net:_245_ net:_413_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 63 ) - ( 63, 65.1) on Layer - violation type: Horizontal congestion srcs: net:_119_ net:_135_ congestion information: capacity:1 usage:2 overflow:1 @@ -1683,55 +1847,63 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 73.5 ) - ( 63, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_248_ + srcs: net:_110_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 75.6 ) - ( 63, 77.7) on Layer - + bbox = ( 60.9, 77.7 ) - ( 63, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_353_ + srcs: net:_248_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 77.7 ) - ( 63, 79.8) on Layer - + bbox = ( 60.9, 79.8 ) - ( 63, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_372_ + srcs: net:_159_ net:net20 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 81.9 ) - ( 63, 84) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:net22 + srcs: net:clk net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 86.1 ) - ( 63, 88.2) on Layer - + bbox = ( 60.9, 84 ) - ( 63, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net1 + srcs: net:_160_ net:net1 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 90.3 ) - ( 63, 92.4) on Layer - + bbox = ( 60.9, 86.1 ) - ( 63, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_401_ + srcs: net:_165_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 12.6 ) - ( 65.1, 14.7) on Layer - + bbox = ( 60.9, 92.4 ) - ( 63, 94.5) on Layer - violation type: Horizontal congestion - srcs: net:clk net:net46 + srcs: net:_248_ net:net38 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 23.1 ) - ( 65.1, 25.2) on Layer - + bbox = ( 63, 18.9 ) - ( 65.1, 21) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:_401_ + srcs: net:_372_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 27.3 ) - ( 65.1, 29.4) on Layer - + bbox = ( 63, 29.4 ) - ( 65.1, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_372_ net:_388_ + srcs: net:_397_ net:net41 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 31.5 ) - ( 65.1, 33.6) on Layer - + bbox = ( 63, 33.6 ) - ( 65.1, 35.7) on Layer - violation type: Horizontal congestion srcs: net:_248_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 35.7 ) - ( 65.1, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_253_ net:_416_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_159_ net:_416_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 37.8 ) - ( 65.1, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_122_ net:_138_ net:_159_ net:_353_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 63, 44.1 ) - ( 65.1, 46.2) on Layer - + srcs: net:_066_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 63, 39.9 ) - ( 65.1, 42) on Layer - +violation type: Horizontal congestion + srcs: net:_138_ net:_245_ net:_416_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 63, 42 ) - ( 65.1, 44.1) on Layer - +violation type: Horizontal congestion + srcs: net:_272_ net:_353_ net:_416_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 63, 46.2 ) - ( 65.1, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_177_ net:_284_ + srcs: net:_169_ net:_284_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 48.3 ) - ( 65.1, 50.4) on Layer - violation type: Horizontal congestion @@ -1743,147 +1915,159 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 52.5 ) - ( 65.1, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_169_ net:_377_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_169_ net:_177_ net:_236_ net:_377_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 63, 54.6 ) - ( 65.1, 56.7) on Layer - violation type: Horizontal congestion srcs: net:_067_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 56.7 ) - ( 65.1, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_123_ net:_143_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 58.8 ) - ( 65.1, 60.9) on Layer - -violation type: Horizontal congestion - srcs: net:_236_ net:_253_ net:_417_ + srcs: net:_123_ net:_143_ net:_253_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 63, 60.9 ) - ( 65.1, 63) on Layer - + bbox = ( 63, 58.8 ) - ( 65.1, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_249_ + srcs: net:_245_ net:_413_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 69.3 ) - ( 65.1, 71.4) on Layer - + bbox = ( 63, 63 ) - ( 65.1, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_031_ net:_119_ + srcs: net:clk net:_031_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 71.4 ) - ( 65.1, 73.5) on Layer - + bbox = ( 63, 73.5 ) - ( 65.1, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_353_ + srcs: net:_353_ net:_391_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 77.7 ) - ( 65.1, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_372_ net:net20 + srcs: net:_110_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 63, 79.8 ) - ( 65.1, 81.9) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_372_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 84 ) - ( 65.1, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net1 + srcs: net:_160_ net:net20 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 90.3 ) - ( 65.1, 92.4) on Layer - + bbox = ( 63, 86.1 ) - ( 65.1, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net38 + srcs: net:_165_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 10.5 ) - ( 67.2, 12.6) on Layer - + bbox = ( 63, 92.4 ) - ( 65.1, 94.5) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:_401_ + srcs: net:_401_ net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 25.2 ) - ( 67.2, 27.3) on Layer - + bbox = ( 65.1, 10.5 ) - ( 67.2, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_372_ + srcs: net:_248_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 29.4 ) - ( 67.2, 31.5) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_397_ net:net41 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 65.1, 33.6 ) - ( 67.2, 35.7) on Layer - violation type: Horizontal congestion srcs: net:_122_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 35.7 ) - ( 67.2, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_253_ net:_286_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_159_ net:_286_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 37.8 ) - ( 67.2, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_122_ net:_138_ net:_159_ net:_353_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_253_ net:_285_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 65.1, 39.9 ) - ( 67.2, 42) on Layer - +violation type: Horizontal congestion + srcs: net:_122_ net:_138_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 44.1 ) - ( 67.2, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_169_ net:_177_ net:_284_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 65.1, 48.3 ) - ( 67.2, 50.4) on Layer - + srcs: net:_272_ net:_353_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 65.1, 46.2 ) - ( 67.2, 48.3) on Layer - violation type: Horizontal congestion srcs: net:_171_ net:_189_ net:_283_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 65.1, 50.4 ) - ( 67.2, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_139_ net:_169_ net:_377_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_139_ net:_169_ net:_177_ net:_377_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 65.1, 54.6 ) - ( 67.2, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_143_ net:_245_ + srcs: net:_013_ net:_236_ net:_245_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 65.1, 56.7 ) - ( 67.2, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_013_ net:_123_ + srcs: net:_123_ net:_143_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 58.8 ) - ( 67.2, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_236_ net:_413_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 65.1, 63 ) - ( 67.2, 65.1) on Layer - -violation type: Horizontal congestion - srcs: net:_249_ net:_261_ + srcs: net:clk net:_417_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 65.1, 60.9 ) - ( 67.2, 63) on Layer - +violation type: Horizontal congestion + srcs: net:_249_ net:_253_ net:_261_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 65.1, 69.3 ) - ( 67.2, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_353_ + srcs: net:_353_ net:_391_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 77.7 ) - ( 67.2, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_249_ + srcs: net:clk net:_110_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 79.8 ) - ( 67.2, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_372_ net:net20 + srcs: net:_159_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 84 ) - ( 67.2, 86.1) on Layer - + bbox = ( 65.1, 81.9 ) - ( 67.2, 84) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net1 + srcs: net:_160_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 90.3 ) - ( 67.2, 92.4) on Layer - + bbox = ( 65.1, 84 ) - ( 67.2, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:_414_ net:net48 + srcs: net:_248_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 31.5 ) - ( 69.3, 33.6) on Layer - + bbox = ( 67.2, 27.3 ) - ( 69.3, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_253_ + srcs: net:_397_ net:net41 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 35.7 ) - ( 69.3, 37.8) on Layer - + bbox = ( 67.2, 33.6 ) - ( 69.3, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_165_ net:_281_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_159_ net:_281_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 37.8 ) - ( 69.3, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_253_ + srcs: net:_253_ net:_414_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 39.9 ) - ( 69.3, 42) on Layer - violation type: Horizontal congestion - srcs: net:_136_ net:_272_ net:_353_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_138_ net:_272_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 44.1 ) - ( 69.3, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_177_ net:_272_ + srcs: net:_136_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 67.2, 46.2 ) - ( 69.3, 48.3) on Layer - +violation type: Horizontal congestion + srcs: net:_177_ net:_272_ net:_283_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 48.3 ) - ( 69.3, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_143_ net:_171_ net:_189_ net:_283_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_171_ net:_189_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 50.4 ) - ( 69.3, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_137_ net:_139_ + srcs: net:_139_ net:_377_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 52.5 ) - ( 69.3, 54.6) on Layer - + bbox = ( 67.2, 54.6 ) - ( 69.3, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_051_ net:_245_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_013_ net:_051_ net:_236_ net:_245_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 67.2, 56.7 ) - ( 69.3, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_013_ net:_123_ + srcs: net:_123_ net:_143_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 58.8 ) - ( 69.3, 60.9) on Layer - violation type: Horizontal congestion @@ -1891,11 +2075,7 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 60.9 ) - ( 69.3, 63) on Layer - violation type: Horizontal congestion - srcs: net:_236_ net:_245_ net:_413_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 67.2, 63 ) - ( 69.3, 65.1) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_253_ + srcs: net:clk net:_413_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 65.1 ) - ( 69.3, 67.2) on Layer - violation type: Horizontal congestion @@ -1903,79 +2083,91 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 67.2 ) - ( 69.3, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_391_ + srcs: net:_249_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 67.2, 71.4 ) - ( 69.3, 73.5) on Layer - +violation type: Horizontal congestion + srcs: net:_126_ net:_379_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 73.5 ) - ( 69.3, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_249_ + srcs: net:_353_ net:_391_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 67.2, 77.7 ) - ( 69.3, 79.8) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_110_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 79.8 ) - ( 69.3, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_372_ net:net20 + srcs: net:_159_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 84 ) - ( 69.3, 86.1) on Layer - + bbox = ( 67.2, 81.9 ) - ( 69.3, 84) on Layer - violation type: Horizontal congestion - srcs: net:_388_ net:net13 + srcs: net:_160_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 88.2 ) - ( 69.3, 90.3) on Layer - + bbox = ( 67.2, 84 ) - ( 69.3, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net1 + srcs: net:_249_ net:net1 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 90.3 ) - ( 69.3, 92.4) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_414_ + srcs: net:_372_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 31.5 ) - ( 71.4, 33.6) on Layer - + bbox = ( 69.3, 27.3 ) - ( 71.4, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_249_ net:_383_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 69.3, 35.7 ) - ( 71.4, 37.8) on Layer - + srcs: net:clk net:_388_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 29.4 ) - ( 71.4, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_268_ + srcs: net:_165_ net:net41 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 37.8 ) - ( 71.4, 39.9) on Layer - + bbox = ( 69.3, 31.5 ) - ( 71.4, 33.6) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_249_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 35.7 ) - ( 71.4, 37.8) on Layer - violation type: Horizontal congestion srcs: net:_273_ net:_381_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 39.9 ) - ( 71.4, 42) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_414_ + srcs: net:_245_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 42 ) - ( 71.4, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_136_ net:_176_ net:_276_ net:_353_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_176_ net:_276_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 44.1 ) - ( 71.4, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_175_ net:_186_ net:_278_ + srcs: net:_136_ net:_175_ net:_353_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 69.3, 46.2 ) - ( 71.4, 48.3) on Layer - +violation type: Horizontal congestion + srcs: net:_175_ net:_278_ net:_283_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 48.3 ) - ( 71.4, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_187_ net:_283_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_186_ net:_187_ net:_188_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 50.4 ) - ( 71.4, 52.5) on Layer - -violation type: Horizontal congestion - srcs: net:_137_ net:_188_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 52.5 ) - ( 71.4, 54.6) on Layer - violation type: Horizontal congestion srcs: net:_139_ net:_377_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 54.6 ) - ( 71.4, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:dpath.a_lt_b$in1\[7\] - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_236_ net:_245_ net:dpath.a_lt_b$in1\[7\] + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 56.7 ) - ( 71.4, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_360_ net:_413_ net:_417_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_360_ net:_417_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 60.9 ) - ( 71.4, 63) on Layer - violation type: Horizontal congestion - srcs: net:_236_ net:_246_ + srcs: net:_160_ net:_246_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 63 ) - ( 71.4, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_166_ net:_253_ + srcs: net:clk net:_166_ net:_413_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 65.1 ) - ( 71.4, 67.2) on Layer - violation type: Horizontal congestion @@ -1987,31 +2179,27 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 69.3 ) - ( 71.4, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_353_ + srcs: net:_249_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 71.4 ) - ( 71.4, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_391_ + srcs: net:clk net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 73.5 ) - ( 71.4, 75.6) on Layer - + bbox = ( 69.3, 77.7 ) - ( 71.4, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_249_ + srcs: net:_110_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 79.8 ) - ( 71.4, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_372_ + srcs: net:_159_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 81.9 ) - ( 71.4, 84) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net1 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 90.3 ) - ( 71.4, 92.4) on Layer - -violation type: Horizontal congestion - srcs: net:_388_ net:net10 + srcs: net:clk net:_388_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 29.4 ) - ( 73.5, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_414_ + srcs: net:_165_ net:net41 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 31.5 ) - ( 73.5, 33.6) on Layer - violation type: Horizontal congestion @@ -2019,67 +2207,55 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 35.7 ) - ( 73.5, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_381_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 37.8 ) - ( 73.5, 39.9) on Layer - -violation type: Horizontal congestion - srcs: net:_064_ net:_274_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_064_ net:_274_ net:_381_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 71.4, 39.9 ) - ( 73.5, 42) on Layer - violation type: Horizontal congestion - srcs: net:_120_ net:_414_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 42 ) - ( 73.5, 44.1) on Layer - -violation type: Horizontal congestion - srcs: net:_136_ net:_245_ net:_353_ + srcs: net:_136_ net:_245_ net:_253_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 71.4, 44.1 ) - ( 73.5, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_175_ net:_186_ + srcs: net:_277_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 48.3 ) - ( 73.5, 50.4) on Layer - + bbox = ( 71.4, 46.2 ) - ( 73.5, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_187_ net:_415_ + srcs: net:_186_ net:_415_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 50.4 ) - ( 73.5, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_137_ net:_245_ net:_377_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_137_ net:_187_ net:_245_ net:_377_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 71.4, 52.5 ) - ( 73.5, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_121_ net:_245_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 56.7 ) - ( 73.5, 58.8) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_398_ + srcs: net:_249_ net:_398_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 58.8 ) - ( 73.5, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_413_ net:_417_ + srcs: net:_160_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 60.9 ) - ( 73.5, 63) on Layer - + bbox = ( 71.4, 63 ) - ( 73.5, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_110_ net:_249_ net:_253_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:clk net:_110_ net:_413_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 71.4, 65.1 ) - ( 73.5, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_165_ + srcs: net:_159_ net:_351_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 67.2 ) - ( 73.5, 69.3) on Layer - + bbox = ( 71.4, 69.3 ) - ( 73.5, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_376_ net:_391_ + srcs: net:_160_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 73.5 ) - ( 73.5, 75.6) on Layer - + bbox = ( 71.4, 71.4 ) - ( 73.5, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_353_ + srcs: net:clk net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 75.6 ) - ( 73.5, 77.7) on Layer - + bbox = ( 71.4, 77.7 ) - ( 73.5, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_249_ + srcs: net:_110_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 79.8 ) - ( 73.5, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_372_ + srcs: net:_159_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 81.9 ) - ( 73.5, 84) on Layer - violation type: Horizontal congestion @@ -2087,137 +2263,157 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 90.3 ) - ( 73.5, 92.4) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:net10 + srcs: net:clk net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 25.2 ) - ( 75.6, 27.3) on Layer - + bbox = ( 73.5, 29.4 ) - ( 75.6, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_249_ + srcs: net:_165_ net:net41 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 35.7 ) - ( 75.6, 37.8) on Layer - + bbox = ( 73.5, 31.5 ) - ( 75.6, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_032_ net:_165_ net:_381_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 73.5, 37.8 ) - ( 75.6, 39.9) on Layer - + srcs: net:_010_ net:_120_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 73.5, 39.9 ) - ( 75.6, 42) on Layer - violation type: Horizontal congestion - srcs: net:_136_ net:_353_ + srcs: net:_136_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 44.1 ) - ( 75.6, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_121_ net:_136_ net:_175_ + srcs: net:_120_ net:_353_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 73.5, 46.2 ) - ( 75.6, 48.3) on Layer - +violation type: Horizontal congestion + srcs: net:_121_ net:_175_ net:_415_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 73.5, 48.3 ) - ( 75.6, 50.4) on Layer - + bbox = ( 73.5, 50.4 ) - ( 75.6, 52.5) on Layer - violation type: Horizontal congestion srcs: net:_137_ net:_377_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 52.5 ) - ( 75.6, 54.6) on Layer - -violation type: Horizontal congestion - srcs: net:_121_ net:_253_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 54.6 ) - ( 75.6, 56.7) on Layer - violation type: Horizontal congestion srcs: net:_065_ net:_087_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 56.7 ) - ( 75.6, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_165_ net:_382_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 73.5, 58.8 ) - ( 75.6, 60.9) on Layer - -violation type: Horizontal congestion - srcs: net:_413_ net:_417_ + srcs: net:_159_ net:_382_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 60.9 ) - ( 75.6, 63) on Layer - + bbox = ( 73.5, 58.8 ) - ( 75.6, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_249_ net:_253_ + srcs: net:_160_ net:_249_ net:_398_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 73.5, 65.1 ) - ( 75.6, 67.2) on Layer - + bbox = ( 73.5, 63 ) - ( 75.6, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_369_ + srcs: net:clk net:_413_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 73.5, 65.1 ) - ( 75.6, 67.2) on Layer - +violation type: Horizontal congestion + srcs: net:_110_ net:_160_ net:_369_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 73.5, 67.2 ) - ( 75.6, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_165_ + srcs: net:_159_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 69.3 ) - ( 75.6, 71.4) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_249_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 73.5, 71.4 ) - ( 75.6, 73.5) on Layer - violation type: Horizontal congestion srcs: net:clk net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 75.6 ) - ( 75.6, 77.7) on Layer - + bbox = ( 73.5, 77.7 ) - ( 75.6, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_249_ + srcs: net:_110_ net:_376_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 79.8 ) - ( 75.6, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_388_ net:net16 + srcs: net:_159_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 88.2 ) - ( 75.6, 90.3) on Layer - + bbox = ( 73.5, 81.9 ) - ( 75.6, 84) on Layer - violation type: Horizontal congestion srcs: net:_165_ net:net1 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 90.3 ) - ( 75.6, 92.4) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[2] net:_253_ + srcs: net:_165_ net:net41 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 94.5 ) - ( 75.6, 96.6) on Layer - + bbox = ( 75.6, 31.5 ) - ( 77.7, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_159_ net:_249_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:clk net:_249_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 35.7 ) - ( 77.7, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_010_ net:_102_ net:_120_ + srcs: net:_010_ net:_120_ net:dpath.a_lt_b$in0\[4\] congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 75.6, 42 ) - ( 77.7, 44.1) on Layer - + bbox = ( 75.6, 39.9 ) - ( 77.7, 42) on Layer - violation type: Horizontal congestion - srcs: net:_120_ net:_121_ + srcs: net:_102_ net:_136_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 48.3 ) - ( 77.7, 50.4) on Layer - + bbox = ( 75.6, 42 ) - ( 77.7, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_353_ net:_415_ + srcs: net:_353_ net:_357_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 50.4 ) - ( 77.7, 52.5) on Layer - + bbox = ( 75.6, 46.2 ) - ( 77.7, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_011_ net:_137_ net:_377_ + srcs: net:_121_ net:_353_ net:_415_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 75.6, 50.4 ) - ( 77.7, 52.5) on Layer - +violation type: Horizontal congestion + srcs: net:_011_ net:_377_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 52.5 ) - ( 77.7, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_065_ net:_121_ net:_253_ + srcs: net:_065_ net:_137_ net:_253_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 75.6, 54.6 ) - ( 77.7, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_165_ net:_382_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_159_ net:_382_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 58.8 ) - ( 77.7, 60.9) on Layer - violation type: Horizontal congestion srcs: net:_417_ net:net49 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 60.9 ) - ( 77.7, 63) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_253_ + srcs: net:_160_ net:_398_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 65.1 ) - ( 77.7, 67.2) on Layer - + bbox = ( 75.6, 63 ) - ( 77.7, 65.1) on Layer - violation type: Horizontal congestion srcs: net:_160_ net:_369_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 67.2 ) - ( 77.7, 69.3) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_165_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 75.6, 69.3 ) - ( 77.7, 71.4) on Layer - violation type: Horizontal congestion srcs: net:clk net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 75.6 ) - ( 77.7, 77.7) on Layer - + bbox = ( 75.6, 77.7 ) - ( 77.7, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_388_ net:net16 + srcs: net:_253_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 88.2 ) - ( 77.7, 90.3) on Layer - + bbox = ( 75.6, 81.9 ) - ( 77.7, 84) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[2] net:_253_ + srcs: net:net20 net:net30 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 94.5 ) - ( 77.7, 96.6) on Layer - + bbox = ( 75.6, 86.1 ) - ( 77.7, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_253_ + srcs: net:_165_ net:net1 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 31.5 ) - ( 79.8, 33.6) on Layer - + bbox = ( 75.6, 90.3 ) - ( 77.7, 92.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_249_ + srcs: net:_159_ net:_165_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 77.7, 33.6 ) - ( 79.8, 35.7) on Layer - +violation type: Horizontal congestion + srcs: net:_253_ net:_396_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 35.7 ) - ( 79.8, 37.8) on Layer - + bbox = ( 77.7, 44.1 ) - ( 79.8, 46.2) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_395_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 77.7, 48.3 ) - ( 79.8, 50.4) on Layer - violation type: Horizontal congestion srcs: net:_353_ net:_415_ congestion information: capacity:1 usage:2 overflow:1 @@ -2231,351 +2427,415 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 54.6 ) - ( 79.8, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_382_ + srcs: net:_159_ net:_382_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 58.8 ) - ( 79.8, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_253_ + srcs: net:_398_ net:net45 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 65.1 ) - ( 79.8, 67.2) on Layer - + bbox = ( 77.7, 63 ) - ( 79.8, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:net32 net:net45 + srcs: net:clk net:_160_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 67.2 ) - ( 79.8, 69.3) on Layer - + bbox = ( 77.7, 65.1 ) - ( 79.8, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_353_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_353_ net:_391_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 77.7, 75.6 ) - ( 79.8, 77.7) on Layer - violation type: Horizontal congestion - srcs: net:_372_ net:net30 + srcs: net:_253_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 81.9 ) - ( 79.8, 84) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[2] net:_253_ + srcs: net:clk net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 94.5 ) - ( 79.8, 96.6) on Layer - + bbox = ( 79.8, 35.7 ) - ( 81.9, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:net47 + srcs: net:_165_ net:_396_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 46.2 ) - ( 81.9, 48.3) on Layer - + bbox = ( 79.8, 37.8 ) - ( 81.9, 39.9) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_377_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 79.8, 50.4 ) - ( 81.9, 52.5) on Layer - violation type: Horizontal congestion srcs: net:clk net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 52.5 ) - ( 81.9, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_382_ + srcs: net:_159_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 58.8 ) - ( 81.9, 60.9) on Layer - + bbox = ( 79.8, 54.6 ) - ( 81.9, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_253_ + srcs: net:clk net:_382_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 65.1 ) - ( 81.9, 67.2) on Layer - + bbox = ( 79.8, 58.8 ) - ( 81.9, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:net32 net:net45 + srcs: net:_398_ net:net45 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 67.2 ) - ( 81.9, 69.3) on Layer - + bbox = ( 79.8, 63 ) - ( 81.9, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_353_ + srcs: net:_353_ net:_391_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 75.6 ) - ( 81.9, 77.7) on Layer - violation type: Horizontal congestion - srcs: net:_372_ net:net30 + srcs: net:_253_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 81.9 ) - ( 81.9, 84) on Layer - violation type: Horizontal congestion - srcs: net:_388_ net:net1 + srcs: net:clk net:net47 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 88.2 ) - ( 81.9, 90.3) on Layer - + bbox = ( 81.9, 44.1 ) - ( 84, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:net10 net:net27 + srcs: net:_160_ net:_377_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 81.9, 12.6 ) - ( 84, 14.7) on Layer - + bbox = ( 81.9, 50.4 ) - ( 84, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:clk net:net28 + srcs: net:clk net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 81.9, 52.5 ) - ( 84, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_382_ + srcs: net:_159_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 81.9, 58.8 ) - ( 84, 60.9) on Layer - + bbox = ( 81.9, 54.6 ) - ( 84, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net45 + srcs: net:_253_ net:net28 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 81.9, 69.3 ) - ( 84, 71.4) on Layer - + bbox = ( 81.9, 56.7 ) - ( 84, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_377_ net:net47 + srcs: net:clk net:_382_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 84, 46.2 ) - ( 86.1, 48.3) on Layer - + bbox = ( 81.9, 58.8 ) - ( 84, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_253_ + srcs: net:_159_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 84, 52.5 ) - ( 86.1, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net32 + srcs: net:_159_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 84, 67.2 ) - ( 86.1, 69.3) on Layer - + bbox = ( 84, 54.6 ) - ( 86.1, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:clk net:net45 + srcs: net:_253_ net:net28 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 84, 71.4 ) - ( 86.1, 73.5) on Layer - + bbox = ( 84, 56.7 ) - ( 86.1, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:clk net:net15 + srcs: net:_385_ net:net8 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 44.1 ) - ( 88.2, 46.2) on Layer - + bbox = ( 86.1, 48.3 ) - ( 88.2, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_253_ + srcs: net:_253_ net:net28 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 52.5 ) - ( 88.2, 54.6) on Layer - + bbox = ( 86.1, 56.7 ) - ( 88.2, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:clk net:net28 + srcs: net:net11 net:net49 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 54.6 ) - ( 88.2, 56.7) on Layer - + bbox = ( 86.1, 60.9 ) - ( 88.2, 63) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[4] net:_353_ + srcs: net:_353_ net:net25 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 56.7 ) - ( 88.2, 58.8) on Layer - + bbox = ( 86.1, 71.4 ) - ( 88.2, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_385_ + srcs: net:_385_ net:net49 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 58.8 ) - ( 88.2, 60.9) on Layer - + bbox = ( 88.2, 48.3 ) - ( 90.3, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:req_msg[21] + srcs: net:_249_ net:net49 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 63 ) - ( 88.2, 65.1) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:net25 + bbox = ( 88.2, 60.9 ) - ( 90.3, 63) on Layer - +violation type: Vertical congestion + srcs: net:resp_msg[4] net:net37 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 65.1 ) - ( 88.2, 67.2) on Layer - + bbox = ( 10.5, 8.4 ) - ( 12.6, 10.5) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net42 + srcs: net:net26 net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 8.4, 42 ) - ( 10.5, 44.1) on Layer - + bbox = ( 10.5, 29.4 ) - ( 12.6, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:_389_ + srcs: net:_158_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 10.5, 21 ) - ( 12.6, 23.1) on Layer - + bbox = ( 10.5, 31.5 ) - ( 12.6, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_397_ net:net26 + srcs: net:_158_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 10.5, 29.4 ) - ( 12.6, 31.5) on Layer - + bbox = ( 10.5, 33.6 ) - ( 12.6, 35.7) on Layer - +violation type: Vertical congestion + srcs: net:_158_ net:net23 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 10.5, 35.7 ) - ( 12.6, 37.8) on Layer - +violation type: Vertical congestion + srcs: net:_158_ net:_392_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 10.5, 39.9 ) - ( 12.6, 42) on Layer - +violation type: Vertical congestion + srcs: net:_158_ net:_392_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 10.5, 42 ) - ( 12.6, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:_380_ + srcs: net:_158_ net:_392_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 10.5, 44.1 ) - ( 12.6, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net34 + srcs: net:_158_ net:_392_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 10.5, 52.5 ) - ( 12.6, 54.6) on Layer - + bbox = ( 10.5, 46.2 ) - ( 12.6, 48.3) on Layer - violation type: Vertical congestion - srcs: net:resp_msg[4] net:net46 + srcs: net:_158_ net:_392_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 12.6, 8.4 ) - ( 14.7, 10.5) on Layer - + bbox = ( 10.5, 48.3 ) - ( 12.6, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net12 + srcs: net:_150_ net:net43 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 12.6, 35.7 ) - ( 14.7, 37.8) on Layer - +violation type: Vertical congestion + srcs: net:_150_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 12.6, 33.6 ) - ( 14.7, 35.7) on Layer - + bbox = ( 12.6, 37.8 ) - ( 14.7, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net17 + srcs: net:_150_ net:net43 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 12.6, 39.9 ) - ( 14.7, 42) on Layer - +violation type: Vertical congestion + srcs: net:_150_ net:net43 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 12.6, 42 ) - ( 14.7, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_375_ net:_421_ + srcs: net:_158_ net:net12 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 14.7, 29.4 ) - ( 16.8, 31.5) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net12 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 14.7, 31.5 ) - ( 16.8, 33.6) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:net34 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 14.7, 52.5 ) - ( 16.8, 54.6) on Layer - +violation type: Vertical congestion + srcs: net:_381_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 14.7, 42 ) - ( 16.8, 44.1) on Layer - + bbox = ( 16.8, 27.3 ) - ( 18.9, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_381_ net:_421_ + srcs: net:_381_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 16.8, 29.4 ) - ( 18.9, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_381_ net:_421_ + srcs: net:_381_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 16.8, 31.5 ) - ( 18.9, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_381_ net:_421_ + srcs: net:_381_ net:net12 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 16.8, 33.6 ) - ( 18.9, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_401_ + srcs: net:_248_ net:net42 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 18.9, 46.2 ) - ( 21, 48.3) on Layer - + bbox = ( 16.8, 39.9 ) - ( 18.9, 42) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_248_ + srcs: net:_248_ net:_375_ net:net42 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 16.8, 42 ) - ( 18.9, 44.1) on Layer - +violation type: Vertical congestion + srcs: net:_381_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 18.9, 48.3 ) - ( 21, 50.4) on Layer - + bbox = ( 18.9, 10.5 ) - ( 21, 12.6) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_401_ + srcs: net:_381_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 35.7 ) - ( 23.1, 37.8) on Layer - + bbox = ( 18.9, 12.6 ) - ( 21, 14.7) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_401_ + srcs: net:_401_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 37.8 ) - ( 23.1, 39.9) on Layer - + bbox = ( 18.9, 18.9 ) - ( 21, 21) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_401_ + srcs: net:_142_ net:_244_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 39.9 ) - ( 23.1, 42) on Layer - + bbox = ( 18.9, 31.5 ) - ( 21, 33.6) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ + srcs: net:_142_ net:_244_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 42 ) - ( 23.1, 44.1) on Layer - + bbox = ( 18.9, 33.6 ) - ( 21, 35.7) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ + srcs: net:_370_ net:net36 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 44.1 ) - ( 23.1, 46.2) on Layer - + bbox = ( 18.9, 48.3 ) - ( 21, 50.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:_150_ + srcs: net:_158_ net:_370_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 50.4 ) - ( 23.1, 52.5) on Layer - + bbox = ( 18.9, 50.4 ) - ( 21, 52.5) on Layer - violation type: Vertical congestion - srcs: net:clk net:_150_ + srcs: net:_158_ net:_370_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 52.5 ) - ( 23.1, 54.6) on Layer - + bbox = ( 18.9, 52.5 ) - ( 21, 54.6) on Layer - violation type: Vertical congestion - srcs: net:clk net:_150_ + srcs: net:_142_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 54.6 ) - ( 23.1, 56.7) on Layer - + bbox = ( 21, 21 ) - ( 23.1, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_380_ + srcs: net:_142_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 56.7 ) - ( 23.1, 58.8) on Layer - + bbox = ( 21, 23.1 ) - ( 23.1, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_244_ + srcs: net:_142_ net:_248_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 21, 35.7 ) - ( 23.1, 37.8) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_248_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 21, 37.8 ) - ( 23.1, 39.9) on Layer - +violation type: Vertical congestion + srcs: net:_353_ net:net44 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 23.1 ) - ( 25.2, 25.2) on Layer - + bbox = ( 21, 56.7 ) - ( 23.1, 58.8) on Layer - violation type: Vertical congestion srcs: net:_244_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 23.1, 27.3 ) - ( 25.2, 29.4) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_370_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 23.1, 29.4 ) - ( 25.2, 31.5) on Layer - +violation type: Vertical congestion + srcs: net:_150_ net:_248_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 23.1, 31.5 ) - ( 25.2, 33.6) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 23.1, 33.6 ) - ( 25.2, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_244_ + srcs: net:_401_ net:_405_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 23.1, 35.7 ) - ( 25.2, 37.8) on Layer - +violation type: Vertical congestion + srcs: net:_401_ net:net42 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 23.1, 37.8 ) - ( 25.2, 39.9) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 23.1, 39.9 ) - ( 25.2, 42) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_353_ + srcs: net:clk net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 23.1, 42 ) - ( 25.2, 44.1) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 23.1, 44.1 ) - ( 25.2, 46.2) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 23.1, 46.2 ) - ( 25.2, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_353_ + srcs: net:clk net:_142_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 23.1, 48.3 ) - ( 25.2, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_142_ net:net36 + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 23.1, 50.4 ) - ( 25.2, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_353_ + srcs: net:clk net:_142_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 23.1, 52.5 ) - ( 25.2, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 54.6 ) - ( 25.2, 56.7) on Layer - -violation type: Vertical congestion - srcs: net:_244_ net:_248_ + srcs: net:clk net:_421_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 18.9 ) - ( 27.3, 21) on Layer - + bbox = ( 23.1, 56.7 ) - ( 25.2, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_248_ + srcs: net:clk net:_421_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 21 ) - ( 27.3, 23.1) on Layer - + bbox = ( 23.1, 58.8 ) - ( 25.2, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_248_ + srcs: net:_142_ net:_244_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 31.5 ) - ( 27.3, 33.6) on Layer - + bbox = ( 25.2, 18.9 ) - ( 27.3, 21) on Layer - violation type: Vertical congestion srcs: net:clk net:_142_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 33.6 ) - ( 27.3, 35.7) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_142_ net:_400_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 25.2, 35.7 ) - ( 27.3, 37.8) on Layer - violation type: Vertical congestion - srcs: net:clk net:_142_ net:_400_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:clk net:_142_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 25.2, 37.8 ) - ( 27.3, 39.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_107_ + srcs: net:_053_ net:_107_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 25.2, 39.9 ) - ( 27.3, 42) on Layer - violation type: Vertical congestion - srcs: net:clk net:_150_ + srcs: net:_150_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 58.8 ) - ( 27.3, 60.9) on Layer - + bbox = ( 25.2, 60.9 ) - ( 27.3, 63) on Layer - violation type: Vertical congestion - srcs: net:clk net:_244_ + srcs: net:_150_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 16.8 ) - ( 29.4, 18.9) on Layer - + bbox = ( 25.2, 63 ) - ( 27.3, 65.1) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ + srcs: net:_353_ net:_380_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 21 ) - ( 29.4, 23.1) on Layer - + bbox = ( 25.2, 65.1 ) - ( 27.3, 67.2) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ + srcs: net:_380_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 23.1 ) - ( 29.4, 25.2) on Layer - + bbox = ( 27.3, 8.4 ) - ( 29.4, 10.5) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ + srcs: net:_248_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 25.2 ) - ( 29.4, 27.3) on Layer - + bbox = ( 27.3, 10.5 ) - ( 29.4, 12.6) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ + srcs: net:_244_ net:_386_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 27.3 ) - ( 29.4, 29.4) on Layer - + bbox = ( 27.3, 42 ) - ( 29.4, 44.1) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 29.4 ) - ( 29.4, 31.5) on Layer - + srcs: net:_248_ net:_353_ net:_386_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 27.3, 44.1 ) - ( 29.4, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_053_ net:dpath.a_lt_b$in1\[9\] + srcs: net:_353_ net:_386_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 39.9 ) - ( 29.4, 42) on Layer - + bbox = ( 27.3, 46.2 ) - ( 29.4, 48.3) on Layer - violation type: Vertical congestion srcs: net:_124_ net:_361_ net:_386_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 27.3, 48.3 ) - ( 29.4, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_386_ net:_403_ + srcs: net:_386_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 54.6 ) - ( 29.4, 56.7) on Layer - + bbox = ( 27.3, 50.4 ) - ( 29.4, 52.5) on Layer - violation type: Vertical congestion - srcs: net:net44 net:net7 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 56.7 ) - ( 29.4, 58.8) on Layer - + srcs: net:clk net:_000_ net:_386_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 27.3, 52.5 ) - ( 29.4, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_055_ net:net7 + srcs: net:_386_ net:_403_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 58.8 ) - ( 29.4, 60.9) on Layer - + bbox = ( 27.3, 54.6 ) - ( 29.4, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_055_ net:net7 + srcs: net:_142_ net:net6 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 60.9 ) - ( 29.4, 63) on Layer - + bbox = ( 29.4, 16.8 ) - ( 31.5, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:net6 + srcs: net:_158_ net:net6 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 12.6 ) - ( 31.5, 14.7) on Layer - + bbox = ( 29.4, 21 ) - ( 31.5, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_387_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_158_ net:_244_ net:_387_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 29.4, 23.1 ) - ( 31.5, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_392_ + srcs: net:_158_ net:_244_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 25.2 ) - ( 31.5, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_421_ + srcs: net:clk net:_244_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 27.3 ) - ( 31.5, 29.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:_077_ + srcs: net:_248_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 29.4 ) - ( 31.5, 31.5) on Layer - -violation type: Vertical congestion - srcs: net:_037_ net:_248_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 33.6 ) - ( 31.5, 35.7) on Layer - + bbox = ( 29.4, 31.5 ) - ( 31.5, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_307_ net:_362_ + srcs: net:_125_ net:_362_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 37.8 ) - ( 31.5, 39.9) on Layer - violation type: Vertical congestion @@ -2583,65 +2843,53 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 39.9 ) - ( 31.5, 42) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_386_ + srcs: net:_158_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 42 ) - ( 31.5, 44.1) on Layer - + bbox = ( 29.4, 50.4 ) - ( 31.5, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_124_ net:_248_ net:_386_ + srcs: net:_158_ net:_385_ net:net44 congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 29.4, 46.2 ) - ( 31.5, 48.3) on Layer - -violation type: Vertical congestion - srcs: net:_000_ net:net44 - congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 52.5 ) - ( 31.5, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_421_ net:ctrl.state.out\[1\] + srcs: net:_385_ net:ctrl.state.out\[1\] congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 56.7 ) - ( 31.5, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_420_ + srcs: net:_385_ net:_420_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 60.9 ) - ( 31.5, 63) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_420_ + srcs: net:_385_ net:_420_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 63 ) - ( 31.5, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net35 + srcs: net:_385_ net:net35 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 65.1 ) - ( 31.5, 67.2) on Layer - violation type: Vertical congestion - srcs: net:clk net:net35 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 69.3 ) - ( 31.5, 71.4) on Layer - -violation type: Vertical congestion - srcs: net:clk net:net35 + srcs: net:_380_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 71.4 ) - ( 31.5, 73.5) on Layer - -violation type: Vertical congestion - srcs: net:_244_ net:net53 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 10.5 ) - ( 33.6, 12.6) on Layer - + bbox = ( 29.4, 67.2 ) - ( 31.5, 69.3) on Layer - violation type: Vertical congestion - srcs: net:net18 net:net53 + srcs: net:_252_ net:net18 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 12.6 ) - ( 33.6, 14.7) on Layer - violation type: Vertical congestion - srcs: net:net18 net:net53 + srcs: net:_252_ net:net18 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 14.7 ) - ( 33.6, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:net53 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 18.9 ) - ( 33.6, 21) on Layer - -violation type: Vertical congestion - srcs: net:_070_ net:_314_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_070_ net:_077_ net:_314_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 31.5, 29.4 ) - ( 33.6, 31.5) on Layer - violation type: Vertical congestion srcs: net:_091_ net:_125_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 35.7 ) - ( 33.6, 37.8) on Layer - +violation type: Vertical congestion + srcs: net:_141_ net:_307_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 31.5, 37.8 ) - ( 33.6, 39.9) on Layer - violation type: Vertical congestion srcs: net:_142_ net:_307_ congestion information: capacity:1 usage:2 overflow:1 @@ -2650,18 +2898,6 @@ violation type: Vertical congestion srcs: net:_244_ net:_301_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 42 ) - ( 33.6, 44.1) on Layer - -violation type: Vertical congestion - srcs: net:_124_ net:_244_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 44.1 ) - ( 33.6, 46.2) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_052_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 48.3 ) - ( 33.6, 50.4) on Layer - -violation type: Vertical congestion - srcs: net:_108_ net:_142_ net:_421_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 31.5, 54.6 ) - ( 33.6, 56.7) on Layer - violation type: Vertical congestion srcs: net:_163_ net:_403_ congestion information: capacity:1 usage:2 overflow:1 @@ -2671,113 +2907,105 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 58.8 ) - ( 33.6, 60.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_353_ + srcs: net:_401_ net:net53 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 67.2 ) - ( 33.6, 69.3) on Layer - + bbox = ( 33.6, 10.5 ) - ( 35.7, 12.6) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:net52 + srcs: net:_142_ net:net53 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 71.4 ) - ( 33.6, 73.5) on Layer - + bbox = ( 33.6, 12.6 ) - ( 35.7, 14.7) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_342_ + srcs: net:_142_ net:net53 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 21 ) - ( 35.7, 23.1) on Layer - + bbox = ( 33.6, 14.7 ) - ( 35.7, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_043_ net:net53 + srcs: net:_027_ net:net53 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 23.1 ) - ( 35.7, 25.2) on Layer - + bbox = ( 33.6, 16.8 ) - ( 35.7, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_313_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 29.4 ) - ( 35.7, 31.5) on Layer - + srcs: net:_081_ net:_115_ net:net53 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 33.6, 18.9 ) - ( 35.7, 21) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_313_ + srcs: net:_342_ net:net53 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 31.5 ) - ( 35.7, 33.6) on Layer - + bbox = ( 33.6, 21 ) - ( 35.7, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_405_ + srcs: net:_111_ net:_313_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 33.6 ) - ( 35.7, 35.7) on Layer - + bbox = ( 33.6, 31.5 ) - ( 35.7, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_158_ + srcs: net:_140_ net:_309_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 35.7 ) - ( 35.7, 37.8) on Layer - -violation type: Vertical congestion - srcs: net:_140_ net:_141_ net:_158_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 37.8 ) - ( 35.7, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_158_ net:_306_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_140_ net:_306_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 39.9 ) - ( 35.7, 42) on Layer - violation type: Vertical congestion srcs: net:_140_ net:_158_ net:_216_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 42 ) - ( 35.7, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_158_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_124_ net:_140_ net:_158_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 44.1 ) - ( 35.7, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_158_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_140_ net:_158_ net:_385_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 46.2 ) - ( 35.7, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_014_ net:_158_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_014_ net:_158_ net:_385_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 33.6, 48.3 ) - ( 35.7, 50.4) on Layer - -violation type: Vertical congestion - srcs: net:_059_ net:_158_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 50.4 ) - ( 35.7, 52.5) on Layer - violation type: Vertical congestion srcs: net:clk net:_059_ net:_158_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 33.6, 52.5 ) - ( 35.7, 54.6) on Layer - + bbox = ( 33.6, 50.4 ) - ( 35.7, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_054_ net:_059_ + srcs: net:clk net:_059_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 33.6, 52.5 ) - ( 35.7, 54.6) on Layer - +violation type: Vertical congestion + srcs: net:_054_ net:_059_ net:_421_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 54.6 ) - ( 35.7, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_152_ net:_402_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_152_ net:_402_ net:_421_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 56.7 ) - ( 35.7, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_055_ net:_420_ net:_421_ + srcs: net:_154_ net:_420_ net:_421_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 58.8 ) - ( 35.7, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_374_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 35.7, 16.8 ) - ( 37.8, 18.9) on Layer - + srcs: net:_353_ net:net52 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 33.6, 69.3 ) - ( 35.7, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_081_ net:_252_ net:_367_ net:_401_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_353_ net:net52 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 33.6, 71.4 ) - ( 35.7, 73.5) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 35.7, 10.5 ) - ( 37.8, 12.6) on Layer - +violation type: Vertical congestion + srcs: net:_367_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 18.9 ) - ( 37.8, 21) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_367_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_367_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 21 ) - ( 37.8, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_020_ net:_252_ net:_343_ net:_401_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 35.7, 23.1 ) - ( 37.8, 25.2) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_252_ net:_401_ + srcs: net:_020_ net:_343_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 35.7, 25.2 ) - ( 37.8, 27.3) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_252_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 27.3 ) - ( 37.8, 29.4) on Layer - + bbox = ( 35.7, 23.1 ) - ( 37.8, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_016_ net:_252_ + srcs: net:_016_ net:_039_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 29.4 ) - ( 37.8, 31.5) on Layer - -violation type: Vertical congestion - srcs: net:_111_ net:_252_ net:_370_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 35.7, 31.5 ) - ( 37.8, 33.6) on Layer - violation type: Vertical congestion srcs: net:_200_ net:_312_ congestion information: capacity:1 usage:2 overflow:1 @@ -2787,7 +3015,7 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 35.7 ) - ( 37.8, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_218_ net:_309_ net:_310_ + srcs: net:_141_ net:_218_ net:_310_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 37.8 ) - ( 37.8, 39.9) on Layer - violation type: Vertical congestion @@ -2799,15 +3027,19 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 42 ) - ( 37.8, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_068_ net:_248_ net:_418_ + srcs: net:_244_ net:_375_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 35.7, 44.1 ) - ( 37.8, 46.2) on Layer - +violation type: Vertical congestion + srcs: net:_244_ net:_248_ net:_294_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 35.7, 48.3 ) - ( 37.8, 50.4) on Layer - + bbox = ( 35.7, 46.2 ) - ( 37.8, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_418_ net:net44 + srcs: net:_068_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 50.4 ) - ( 37.8, 52.5) on Layer - + bbox = ( 35.7, 48.3 ) - ( 37.8, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_151_ net:_154_ net:_402_ + srcs: net:_151_ net:_160_ net:_402_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 58.8 ) - ( 37.8, 60.9) on Layer - violation type: Vertical congestion @@ -2815,33 +3047,69 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 60.9 ) - ( 37.8, 63) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_384_ + srcs: net:_150_ net:_160_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 35.7, 63 ) - ( 37.8, 65.1) on Layer - +violation type: Vertical congestion + srcs: net:_150_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 65.1 ) - ( 37.8, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_384_ + srcs: net:_160_ net:_380_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 67.2 ) - ( 37.8, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_384_ + srcs: net:_160_ net:_378_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 69.3 ) - ( 37.8, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_384_ + srcs: net:_160_ net:net14 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 71.4 ) - ( 37.8, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:net53 + srcs: net:net46 net:net53 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 2.1 ) - ( 39.9, 4.2) on Layer - + bbox = ( 37.8, 0 ) - ( 39.9, 2.1) on Layer - violation type: Vertical congestion - srcs: net:_131_ net:_158_ + srcs: net:_380_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 25.2 ) - ( 39.9, 27.3) on Layer - + bbox = ( 37.8, 8.4 ) - ( 39.9, 10.5) on Layer - +violation type: Vertical congestion + srcs: net:_380_ net:_401_ net:net31 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 37.8, 10.5 ) - ( 39.9, 12.6) on Layer - violation type: Vertical congestion - srcs: net:_039_ net:_093_ net:dpath.a_lt_b$in1\[10\] + srcs: net:_142_ net:_252_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 37.8, 12.6 ) - ( 39.9, 14.7) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_142_ net:_252_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 37.8, 14.7 ) - ( 39.9, 16.8) on Layer - +violation type: Vertical congestion + srcs: net:_252_ net:dpath.a_lt_b$in0\[14\] + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 37.8, 16.8 ) - ( 39.9, 18.9) on Layer - +violation type: Vertical congestion + srcs: net:_043_ net:_131_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 37.8, 23.1 ) - ( 39.9, 25.2) on Layer - +violation type: Vertical congestion + srcs: net:_131_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 37.8, 25.2 ) - ( 39.9, 27.3) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 37.8, 27.3 ) - ( 39.9, 29.4) on Layer - +violation type: Vertical congestion + srcs: net:_093_ net:dpath.a_lt_b$in1\[10\] + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 29.4 ) - ( 39.9, 31.5) on Layer - +violation type: Vertical congestion + srcs: net:_127_ net:_150_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 37.8, 31.5 ) - ( 39.9, 33.6) on Layer - violation type: Vertical congestion srcs: net:_127_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 @@ -2867,65 +3135,77 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 44.1 ) - ( 39.9, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_298_ net:_418_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_253_ net:_298_ net:_418_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 46.2 ) - ( 39.9, 48.3) on Layer - violation type: Vertical congestion - srcs: net:clk net:_385_ + srcs: net:_401_ net:_418_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 54.6 ) - ( 39.9, 56.7) on Layer - + bbox = ( 37.8, 50.4 ) - ( 39.9, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_002_ net:_160_ net:_385_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 37.8, 56.7 ) - ( 39.9, 58.8) on Layer - -violation type: Vertical congestion - srcs: net:_157_ net:_160_ net:_385_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_152_ net:_157_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 58.8 ) - ( 39.9, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_385_ net:_402_ + srcs: net:_353_ net:net33 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 60.9 ) - ( 39.9, 63) on Layer - + bbox = ( 37.8, 65.1 ) - ( 39.9, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_384_ net:_385_ net:_402_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 37.8, 63 ) - ( 39.9, 65.1) on Layer - + srcs: net:_160_ net:net33 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 37.8, 73.5 ) - ( 39.9, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_409_ + srcs: net:_160_ net:net33 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 12.6 ) - ( 42, 14.7) on Layer - + bbox = ( 37.8, 75.6 ) - ( 39.9, 77.7) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_409_ + srcs: net:_160_ net:net33 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 14.7 ) - ( 42, 16.8) on Layer - + bbox = ( 37.8, 77.7 ) - ( 39.9, 79.8) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_244_ net:_409_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 39.9, 16.8 ) - ( 42, 18.9) on Layer - + srcs: net:_248_ net:net37 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 39.9, 4.2 ) - ( 42, 6.3) on Layer - violation type: Vertical congestion - srcs: net:_115_ net:_158_ net:_409_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 39.9, 18.9 ) - ( 42, 21) on Layer - + srcs: net:_248_ net:net37 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 39.9, 6.3 ) - ( 42, 8.4) on Layer - violation type: Vertical congestion - srcs: net:_115_ net:_158_ + srcs: net:_248_ net:net37 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 21 ) - ( 42, 23.1) on Layer - + bbox = ( 39.9, 8.4 ) - ( 42, 10.5) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 39.9, 14.7 ) - ( 42, 16.8) on Layer - violation type: Vertical congestion srcs: net:_115_ net:_158_ net:_352_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 39.9, 18.9 ) - ( 42, 21) on Layer - +violation type: Vertical congestion + srcs: net:_097_ net:_115_ net:_352_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 39.9, 21 ) - ( 42, 23.1) on Layer - +violation type: Vertical congestion + srcs: net:_115_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 23.1 ) - ( 42, 25.2) on Layer - violation type: Vertical congestion srcs: net:_115_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 25.2 ) - ( 42, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_227_ net:_352_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_227_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 27.3 ) - ( 42, 29.4) on Layer - violation type: Vertical congestion srcs: net:_352_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 29.4 ) - ( 42, 31.5) on Layer - +violation type: Vertical congestion + srcs: net:_111_ net:_127_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 39.9, 31.5 ) - ( 42, 33.6) on Layer - violation type: Vertical congestion srcs: net:_148_ net:_200_ congestion information: capacity:1 usage:2 overflow:1 @@ -2935,135 +3215,147 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 35.7 ) - ( 42, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_202_ net:_311_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_202_ net:_220_ net:_311_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 39.9, 37.8 ) - ( 42, 39.9) on Layer - violation type: Vertical congestion srcs: net:_202_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 39.9 ) - ( 42, 42) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_294_ + srcs: net:_204_ net:_252_ net:_253_ net:_375_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 39.9, 42 ) - ( 42, 44.1) on Layer - +violation type: Vertical congestion + srcs: net:_252_ net:_253_ net:_375_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 39.9, 44.1 ) - ( 42, 46.2) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_158_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 46.2 ) - ( 42, 48.3) on Layer - + bbox = ( 39.9, 48.3 ) - ( 42, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_058_ net:_153_ net:_159_ + srcs: net:_109_ net:_142_ net:_158_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 39.9, 56.7 ) - ( 42, 58.8) on Layer - + bbox = ( 39.9, 50.4 ) - ( 42, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_152_ net:_159_ net:_161_ net:_353_ - congestion information: capacity:1 usage:5 overflow:4 + srcs: net:_109_ net:_142_ net:_158_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 39.9, 52.5 ) - ( 42, 54.6) on Layer - +violation type: Vertical congestion + srcs: net:_147_ net:_150_ net:_161_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 39.9, 58.8 ) - ( 42, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_159_ net:_353_ net:_384_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_150_ net:_159_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 60.9 ) - ( 42, 63) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_159_ net:_353_ + srcs: net:_159_ net:_380_ net:_402_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 39.9, 63 ) - ( 42, 65.1) on Layer - violation type: Vertical congestion - srcs: net:clk net:_159_ net:net33 net:net50 - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:clk net:_159_ net:_380_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 39.9, 65.1 ) - ( 42, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:net33 + srcs: net:clk net:_159_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 67.2 ) - ( 42, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:net33 + srcs: net:net3 net:net37 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 69.3 ) - ( 42, 71.4) on Layer - + bbox = ( 42, 10.5 ) - ( 44.1, 12.6) on Layer - violation type: Vertical congestion - srcs: net:net33 net:net9 + srcs: net:_410_ net:net3 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 86.1 ) - ( 42, 88.2) on Layer - + bbox = ( 42, 12.6 ) - ( 44.1, 14.7) on Layer - violation type: Vertical congestion - srcs: net:_409_ net:net3 + srcs: net:_390_ net:_410_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 10.5 ) - ( 44.1, 12.6) on Layer - + bbox = ( 42, 14.7 ) - ( 44.1, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_337_ net:_352_ net:_389_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 42, 21 ) - ( 44.1, 23.1) on Layer - + srcs: net:_142_ net:_390_ net:_409_ net:_410_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 42, 16.8 ) - ( 44.1, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_338_ net:_341_ + srcs: net:_142_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 42, 18.9 ) - ( 44.1, 21) on Layer - +violation type: Vertical congestion + srcs: net:_337_ net:_338_ net:_341_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 23.1 ) - ( 44.1, 25.2) on Layer - violation type: Vertical congestion srcs: net:_206_ net:_341_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 25.2 ) - ( 44.1, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_131_ net:_327_ net:_345_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_131_ net:_327_ net:_345_ net:_370_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 42, 27.3 ) - ( 44.1, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_131_ net:_227_ net:_228_ net:_327_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_227_ net:_228_ net:_327_ net:_370_ net:_410_ + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 42, 29.4 ) - ( 44.1, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_127_ net:_149_ net:_228_ net:_327_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_149_ net:_228_ net:_317_ net:_327_ net:_410_ + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 42, 31.5 ) - ( 44.1, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_228_ net:_317_ net:_327_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_228_ net:_317_ net:_327_ net:_410_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 42, 33.6 ) - ( 44.1, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_201_ net:_228_ net:_317_ net:_327_ + srcs: net:_228_ net:_317_ net:_327_ net:_410_ congestion information: capacity:1 usage:4 overflow:3 bbox = ( 42, 35.7 ) - ( 44.1, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_228_ net:net43 + srcs: net:_228_ net:_327_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 37.8 ) - ( 44.1, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_228_ net:_419_ + srcs: net:_228_ net:net43 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 39.9 ) - ( 44.1, 42) on Layer - violation type: Vertical congestion - srcs: net:_228_ net:_252_ net:_253_ net:_375_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 42, 42 ) - ( 44.1, 44.1) on Layer - -violation type: Vertical congestion - srcs: net:_252_ net:_253_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 44.1 ) - ( 44.1, 46.2) on Layer - -violation type: Vertical congestion - srcs: net:_059_ net:_158_ net:_243_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 42, 48.3 ) - ( 44.1, 50.4) on Layer - + srcs: net:_228_ net:net43 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 42, 42 ) - ( 44.1, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_059_ net:_109_ + srcs: net:_059_ net:_243_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 50.4 ) - ( 44.1, 52.5) on Layer - + bbox = ( 42, 48.3 ) - ( 44.1, 50.4) on Layer - violation type: Vertical congestion srcs: net:_059_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 52.5 ) - ( 44.1, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_159_ net:_160_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_159_ net:_160_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 54.6 ) - ( 44.1, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:_384_ + srcs: net:_159_ net:_380_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 56.7 ) - ( 44.1, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:_384_ + srcs: net:_159_ net:_380_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 58.8 ) - ( 44.1, 60.9) on Layer - violation type: Vertical congestion - srcs: net:req_msg[29] net:_244_ + srcs: net:_353_ net:_384_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 4.2 ) - ( 46.2, 6.3) on Layer - + bbox = ( 42, 73.5 ) - ( 44.1, 75.6) on Layer - +violation type: Vertical congestion + srcs: net:_353_ net:_384_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 42, 75.6 ) - ( 44.1, 77.7) on Layer - violation type: Vertical congestion srcs: net:req_msg[29] net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 8.4 ) - ( 46.2, 10.5) on Layer - + bbox = ( 44.1, 2.1 ) - ( 46.2, 4.2) on Layer - violation type: Vertical congestion - srcs: net:_026_ net:_248_ + srcs: net:_026_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 14.7 ) - ( 46.2, 16.8) on Layer - violation type: Vertical congestion @@ -3071,9 +3363,25 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 16.8 ) - ( 46.2, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_337_ net:_338_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_337_ net:_338_ net:_410_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 23.1 ) - ( 46.2, 25.2) on Layer - +violation type: Vertical congestion + srcs: net:_327_ net:_410_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 44.1, 25.2 ) - ( 46.2, 27.3) on Layer - +violation type: Vertical congestion + srcs: net:_346_ net:_410_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 44.1, 27.3 ) - ( 46.2, 29.4) on Layer - +violation type: Vertical congestion + srcs: net:_131_ net:_207_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 44.1, 29.4 ) - ( 46.2, 31.5) on Layer - +violation type: Vertical congestion + srcs: net:_128_ net:_221_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 44.1, 31.5 ) - ( 46.2, 33.6) on Layer - violation type: Vertical congestion srcs: net:_128_ net:_318_ congestion information: capacity:1 usage:2 overflow:1 @@ -3083,37 +3391,21 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 35.7 ) - ( 46.2, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_326_ net:_327_ + srcs: net:_224_ net:_326_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 37.8 ) - ( 46.2, 39.9) on Layer - violation type: Vertical congestion srcs: net:_253_ net:_324_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 39.9 ) - ( 46.2, 42) on Layer - -violation type: Vertical congestion - srcs: net:_323_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 42 ) - ( 46.2, 44.1) on Layer - -violation type: Vertical congestion - srcs: net:_298_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 44.1 ) - ( 46.2, 46.2) on Layer - -violation type: Vertical congestion - srcs: net:_352_ net:_353_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 44.1, 46.2 ) - ( 46.2, 48.3) on Layer - violation type: Vertical congestion srcs: net:_353_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 48.3 ) - ( 46.2, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_160_ net:_353_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 44.1, 50.4 ) - ( 46.2, 52.5) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_353_ + srcs: net:_160_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 52.5 ) - ( 46.2, 54.6) on Layer - + bbox = ( 44.1, 50.4 ) - ( 46.2, 52.5) on Layer - violation type: Vertical congestion srcs: net:_158_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 @@ -3123,33 +3415,33 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 56.7 ) - ( 46.2, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_045_ net:dpath.a_lt_b$in1\[1\] - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_045_ net:_353_ net:dpath.a_lt_b$in1\[1\] + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 58.8 ) - ( 46.2, 60.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_007_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_007_ net:_165_ net:_353_ net:_384_ + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 44.1, 60.9 ) - ( 46.2, 63) on Layer - violation type: Vertical congestion - srcs: net:_029_ net:_083_ net:_411_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_165_ net:_384_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 44.1, 63 ) - ( 46.2, 65.1) on Layer - +violation type: Vertical congestion + srcs: net:_083_ net:_165_ net:_384_ net:_411_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 44.1, 65.1 ) - ( 46.2, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_411_ net:net52 - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_165_ net:_384_ net:_411_ net:net52 + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 44.1, 67.2 ) - ( 46.2, 69.3) on Layer - violation type: Vertical congestion - srcs: net:clk net:_165_ + srcs: net:_159_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 73.5 ) - ( 46.2, 75.6) on Layer - violation type: Vertical congestion - srcs: net:clk net:_165_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 75.6 ) - ( 46.2, 77.7) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_165_ + srcs: net:_252_ net:dpath.a_lt_b$in0\[13\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 77.7 ) - ( 46.2, 79.8) on Layer - + bbox = ( 46.2, 14.7 ) - ( 48.3, 16.8) on Layer - violation type: Vertical congestion srcs: net:_114_ net:_334_ congestion information: capacity:1 usage:2 overflow:1 @@ -3159,43 +3451,27 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 18.9 ) - ( 48.3, 21) on Layer - violation type: Vertical congestion - srcs: net:_339_ net:_410_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 21 ) - ( 48.3, 23.1) on Layer - -violation type: Vertical congestion - srcs: net:_327_ net:_410_ + srcs: net:_210_ net:_327_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 23.1 ) - ( 48.3, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_327_ net:_410_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 25.2 ) - ( 48.3, 27.3) on Layer - -violation type: Vertical congestion - srcs: net:_129_ net:_207_ net:_410_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 46.2, 27.3 ) - ( 48.3, 29.4) on Layer - -violation type: Vertical congestion - srcs: net:_129_ net:_130_ net:_410_ + srcs: net:_128_ net:_221_ net:_317_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 46.2, 29.4 ) - ( 48.3, 31.5) on Layer - -violation type: Vertical congestion - srcs: net:_221_ net:_410_ - congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 31.5 ) - ( 48.3, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_116_ net:_221_ net:_410_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_116_ net:_221_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 33.6 ) - ( 48.3, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_116_ net:_222_ net:_410_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_116_ net:_222_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 35.7 ) - ( 48.3, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_220_ net:_222_ net:_224_ net:_225_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_116_ net:_222_ net:_225_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 37.8 ) - ( 48.3, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_225_ net:_352_ + srcs: net:_116_ net:_225_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 39.9 ) - ( 48.3, 42) on Layer - violation type: Vertical congestion @@ -3203,24 +3479,28 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 42 ) - ( 48.3, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_205_ net:_215_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 46.2, 44.1 ) - ( 48.3, 46.2) on Layer - -violation type: Vertical congestion - srcs: net:_205_ net:_215_ net:_252_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_252_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 46.2 ) - ( 48.3, 48.3) on Layer - violation type: Vertical congestion srcs: net:_242_ net:_251_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 48.3 ) - ( 48.3, 50.4) on Layer - +violation type: Vertical congestion + srcs: net:_230_ net:_235_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 46.2, 50.4 ) - ( 48.3, 52.5) on Layer - violation type: Vertical congestion srcs: net:_165_ net:_287_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 54.6 ) - ( 48.3, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_133_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_117_ net:_133_ net:_384_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 46.2, 56.7 ) - ( 48.3, 58.8) on Layer - +violation type: Vertical congestion + srcs: net:_117_ net:_133_ net:_384_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 58.8 ) - ( 48.3, 60.9) on Layer - violation type: Vertical congestion srcs: net:_117_ net:_404_ net:_411_ @@ -3231,129 +3511,117 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 65.1 ) - ( 48.3, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_378_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 67.2 ) - ( 48.3, 69.3) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:_378_ net:net51 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 46.2, 69.3 ) - ( 48.3, 71.4) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:net51 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 71.4 ) - ( 48.3, 73.5) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:net51 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 73.5 ) - ( 48.3, 75.6) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_249_ + srcs: net:clk net:_165_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 75.6 ) - ( 48.3, 77.7) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_370_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 81.9 ) - ( 48.3, 84) on Layer - -violation type: Vertical congestion - srcs: net:_408_ net:_410_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 12.6 ) - ( 50.4, 14.7) on Layer - -violation type: Vertical congestion - srcs: net:_408_ net:_410_ + srcs: net:_244_ net:_408_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 14.7 ) - ( 50.4, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_073_ net:_408_ net:_410_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_244_ net:_408_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 16.8 ) - ( 50.4, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_209_ net:_333_ net:_410_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_209_ net:_333_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 18.9 ) - ( 50.4, 21) on Layer - violation type: Vertical congestion srcs: net:_209_ net:_332_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 21 ) - ( 50.4, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_210_ net:_212_ net:_332_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_212_ net:_332_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 23.1 ) - ( 50.4, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_210_ net:_212_ net:_332_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_212_ net:_332_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 25.2 ) - ( 50.4, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_208_ net:_213_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_129_ net:_208_ net:_213_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 27.3 ) - ( 50.4, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_132_ net:_207_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 31.5 ) - ( 50.4, 33.6) on Layer - -violation type: Vertical congestion - srcs: net:_201_ net:_235_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 35.7 ) - ( 50.4, 37.8) on Layer - -violation type: Vertical congestion - srcs: net:_116_ net:_235_ net:_253_ + srcs: net:_131_ net:_207_ net:_213_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 48.3, 37.8 ) - ( 50.4, 39.9) on Layer - -violation type: Vertical congestion - srcs: net:_116_ net:_235_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 39.9 ) - ( 50.4, 42) on Layer - + bbox = ( 48.3, 29.4 ) - ( 50.4, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_229_ net:_235_ + srcs: net:_207_ net:_213_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 44.1 ) - ( 50.4, 46.2) on Layer - + bbox = ( 48.3, 31.5 ) - ( 50.4, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_229_ net:_235_ + srcs: net:_213_ net:_319_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 46.2 ) - ( 50.4, 48.3) on Layer - + bbox = ( 48.3, 33.6 ) - ( 50.4, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_229_ net:_235_ + srcs: net:_213_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 48.3 ) - ( 50.4, 50.4) on Layer - + bbox = ( 48.3, 37.8 ) - ( 50.4, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_229_ net:_235_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_165_ net:_229_ net:_404_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 50.4 ) - ( 50.4, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_404_ + srcs: net:_159_ net:_165_ net:_404_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 48.3, 52.5 ) - ( 50.4, 54.6) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:_404_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 54.6 ) - ( 50.4, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_404_ + srcs: net:_165_ net:_404_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 56.7 ) - ( 50.4, 58.8) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:_239_ net:_404_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 48.3, 58.8 ) - ( 50.4, 60.9) on Layer - violation type: Vertical congestion srcs: net:_404_ net:_411_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 60.9 ) - ( 50.4, 63) on Layer - +violation type: Vertical congestion + srcs: net:_255_ net:_256_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 48.3, 63 ) - ( 50.4, 65.1) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_253_ net:_257_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 48.3, 67.2 ) - ( 50.4, 69.3) on Layer - violation type: Vertical congestion srcs: net:_249_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 69.3 ) - ( 50.4, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_394_ + srcs: net:_160_ net:_370_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 79.8 ) - ( 50.4, 81.9) on Layer - + bbox = ( 48.3, 84 ) - ( 50.4, 86.1) on Layer - violation type: Vertical congestion - srcs: net:_114_ net:_252_ + srcs: net:req_msg[11] net:_381_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 16.8 ) - ( 52.5, 18.9) on Layer - + bbox = ( 50.4, 4.2 ) - ( 52.5, 6.3) on Layer - +violation type: Vertical congestion + srcs: net:req_msg[11] net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 50.4, 6.3 ) - ( 52.5, 8.4) on Layer - violation type: Vertical congestion - srcs: net:_114_ net:_252_ + srcs: net:_252_ net:net39 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 18.9 ) - ( 52.5, 21) on Layer - + bbox = ( 50.4, 10.5 ) - ( 52.5, 12.6) on Layer - violation type: Vertical congestion - srcs: net:_114_ net:_252_ + srcs: net:clk net:_408_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 21 ) - ( 52.5, 23.1) on Layer - + bbox = ( 50.4, 12.6 ) - ( 52.5, 14.7) on Layer - violation type: Vertical congestion - srcs: net:_114_ net:_332_ + srcs: net:_244_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 23.1 ) - ( 52.5, 25.2) on Layer - + bbox = ( 50.4, 14.7 ) - ( 52.5, 16.8) on Layer - +violation type: Vertical congestion + srcs: net:_073_ net:_114_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 50.4, 16.8 ) - ( 52.5, 18.9) on Layer - violation type: Vertical congestion srcs: net:_129_ net:_233_ congestion information: capacity:1 usage:2 overflow:1 @@ -3363,41 +3631,45 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 27.3 ) - ( 52.5, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_213_ net:_235_ + srcs: net:_130_ net:_235_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 29.4 ) - ( 52.5, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_213_ net:_235_ + srcs: net:_201_ net:_320_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 31.5 ) - ( 52.5, 33.6) on Layer - -violation type: Vertical congestion - srcs: net:_128_ net:_132_ net:_201_ net:_213_ net:_235_ net:_320_ - congestion information: capacity:1 usage:6 overflow:5 bbox = ( 50.4, 33.6 ) - ( 52.5, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_132_ net:_213_ net:_352_ net:net43 - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 50.4, 35.7 ) - ( 52.5, 37.8) on Layer - -violation type: Vertical congestion - srcs: net:_132_ net:_213_ net:_352_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_132_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 37.8 ) - ( 52.5, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_132_ net:_213_ net:_249_ net:_368_ + srcs: net:_132_ net:_249_ net:_352_ net:_368_ congestion information: capacity:1 usage:4 overflow:3 bbox = ( 50.4, 39.9 ) - ( 52.5, 42) on Layer - violation type: Vertical congestion - srcs: net:_168_ net:_213_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_082_ net:_116_ net:_168_ net:_213_ net:_352_ + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 50.4, 42 ) - ( 52.5, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_205_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 48.3 ) - ( 52.5, 50.4) on Layer - + srcs: net:_205_ net:_215_ net:_245_ net:_352_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 50.4, 44.1 ) - ( 52.5, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_174_ net:_240_ net:_404_ + srcs: net:_205_ net:_214_ net:_215_ net:_245_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 50.4, 46.2 ) - ( 52.5, 48.3) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_165_ net:_205_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 50.4, 48.3 ) - ( 52.5, 50.4) on Layer - +violation type: Vertical congestion + srcs: net:_240_ net:_404_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 50.4 ) - ( 52.5, 52.5) on Layer - +violation type: Vertical congestion + srcs: net:_236_ net:_240_ net:_250_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 50.4, 52.5 ) - ( 52.5, 54.6) on Layer - violation type: Vertical congestion srcs: net:_239_ net:_250_ congestion information: capacity:1 usage:2 overflow:1 @@ -3407,103 +3679,95 @@ violation type: Vertical congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 56.7 ) - ( 52.5, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_239_ net:_250_ net:_254_ net:_258_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_250_ net:_254_ net:_258_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 58.8 ) - ( 52.5, 60.9) on Layer - violation type: Vertical congestion srcs: net:_250_ net:_258_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 60.9 ) - ( 52.5, 63) on Layer - -violation type: Vertical congestion - srcs: net:_245_ net:_255_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 63 ) - ( 52.5, 65.1) on Layer - -violation type: Vertical congestion - srcs: net:_245_ net:_253_ net:_259_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 50.4, 65.1 ) - ( 52.5, 67.2) on Layer - -violation type: Vertical congestion - srcs: net:_062_ net:_118_ net:_245_ net:_257_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 50.4, 67.2 ) - ( 52.5, 69.3) on Layer - violation type: Vertical congestion srcs: net:_084_ net:_118_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 69.3 ) - ( 52.5, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_084_ net:_118_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_084_ net:_118_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 71.4 ) - ( 52.5, 73.5) on Layer - violation type: Vertical congestion - srcs: net:clk net:_159_ + srcs: net:clk net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 73.5 ) - ( 52.5, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_253_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 75.6 ) - ( 52.5, 77.7) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_253_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 77.7 ) - ( 52.5, 79.8) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_253_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 79.8 ) - ( 52.5, 81.9) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_253_ + srcs: net:_409_ net:net39 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 81.9 ) - ( 52.5, 84) on Layer - + bbox = ( 52.5, 8.4 ) - ( 54.6, 10.5) on Layer - violation type: Vertical congestion - srcs: net:_328_ net:_330_ + srcs: net:_019_ net:dpath.a_lt_b$in1\[13\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 21 ) - ( 54.6, 23.1) on Layer - + bbox = ( 52.5, 14.7 ) - ( 54.6, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_113_ net:_211_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 23.1 ) - ( 54.6, 25.2) on Layer - + srcs: net:_130_ net:_244_ net:_352_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 52.5, 16.8 ) - ( 54.6, 18.9) on Layer - violation type: Vertical congestion srcs: net:_211_ net:_231_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 25.2 ) - ( 54.6, 27.3) on Layer - +violation type: Vertical congestion + srcs: net:_130_ net:_231_ net:_371_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 52.5, 27.3 ) - ( 54.6, 29.4) on Layer - violation type: Vertical congestion srcs: net:_364_ net:_371_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 29.4 ) - ( 54.6, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_112_ net:_364_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_112_ net:_235_ net:_364_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 31.5 ) - ( 54.6, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_352_ net:net43 - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_132_ net:_235_ net:_352_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 33.6 ) - ( 54.6, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_044_ net:_098_ net:_347_ + srcs: net:_132_ net:_235_ net:_352_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 52.5, 35.7 ) - ( 54.6, 37.8) on Layer - +violation type: Vertical congestion + srcs: net:_044_ net:_098_ net:_235_ net:_347_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 52.5, 37.8 ) - ( 54.6, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_349_ net:_350_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_235_ net:_349_ net:_350_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 39.9 ) - ( 54.6, 42) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_213_ + srcs: net:_028_ net:_082_ net:_235_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 52.5, 42 ) - ( 54.6, 44.1) on Layer - +violation type: Vertical congestion + srcs: net:_213_ net:_235_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 44.1 ) - ( 54.6, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_213_ net:_214_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_213_ net:_235_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 46.2 ) - ( 54.6, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_213_ + srcs: net:_213_ net:_235_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 48.3 ) - ( 54.6, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_178_ net:_236_ net:_250_ + srcs: net:_159_ net:_174_ net:_235_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 52.5, 50.4 ) - ( 54.6, 52.5) on Layer - +violation type: Vertical congestion + srcs: net:_174_ net:_178_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 52.5 ) - ( 54.6, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_178_ net:_236_ + srcs: net:_174_ net:_178_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 54.6 ) - ( 54.6, 56.7) on Layer - violation type: Vertical congestion @@ -3511,144 +3775,136 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 56.7 ) - ( 54.6, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_182_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_126_ net:_147_ net:_182_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 58.8 ) - ( 54.6, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_182_ net:_258_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_126_ net:_182_ net:_258_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 60.9 ) - ( 54.6, 63) on Layer - violation type: Vertical congestion - srcs: net:_258_ net:_412_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_110_ net:_126_ net:_258_ net:_412_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 52.5, 63 ) - ( 54.6, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_126_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_110_ net:_126_ net:_245_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 65.1 ) - ( 54.6, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_126_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_110_ net:_126_ net:_165_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 67.2 ) - ( 54.6, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_126_ net:_159_ net:_165_ + srcs: net:_008_ net:_110_ net:_126_ net:_165_ congestion information: capacity:1 usage:4 overflow:3 bbox = ( 52.5, 69.3 ) - ( 54.6, 71.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:_110_ net:_126_ net:_159_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_046_ net:_110_ net:_126_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 71.4 ) - ( 54.6, 73.5) on Layer - violation type: Vertical congestion srcs: net:_110_ net:_126_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 73.5 ) - ( 54.6, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_126_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_110_ net:_249_ net:_253_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 75.6 ) - ( 54.6, 77.7) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_126_ + srcs: net:_249_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 77.7 ) - ( 54.6, 79.8) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_126_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 79.8 ) - ( 54.6, 81.9) on Layer - -violation type: Vertical congestion - srcs: net:_244_ net:_401_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 6.3 ) - ( 56.7, 8.4) on Layer - -violation type: Vertical congestion - srcs: net:_244_ net:_401_ + srcs: net:clk net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 8.4 ) - ( 56.7, 10.5) on Layer - + bbox = ( 54.6, 10.5 ) - ( 56.7, 12.6) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_371_ + srcs: net:_042_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 12.6 ) - ( 56.7, 14.7) on Layer - -violation type: Vertical congestion - srcs: net:_042_ net:_244_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 14.7 ) - ( 56.7, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_096_ net:_244_ + srcs: net:_096_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 16.8 ) - ( 56.7, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_352_ net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 29.4 ) - ( 56.7, 31.5) on Layer - -violation type: Vertical congestion - srcs: net:_352_ net:_401_ net:net43 + srcs: net:_248_ net:_252_ net:_407_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 54.6, 31.5 ) - ( 56.7, 33.6) on Layer - + bbox = ( 54.6, 18.9 ) - ( 56.7, 21) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_252_ net:_330_ net:_407_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 54.6, 21 ) - ( 56.7, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_128_ net:_401_ + srcs: net:_113_ net:_129_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 33.6 ) - ( 56.7, 35.7) on Layer - + bbox = ( 54.6, 25.2 ) - ( 56.7, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_401_ net:dpath.a_lt_b$in1\[15\] + srcs: net:_129_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 35.7 ) - ( 56.7, 37.8) on Layer - + bbox = ( 54.6, 27.3 ) - ( 56.7, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_021_ net:_249_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_021_ net:_249_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 37.8 ) - ( 56.7, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_075_ net:_245_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 54.6, 39.9 ) - ( 56.7, 42) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_245_ net:_348_ net:_401_ net:dpath.a_lt_b$in0\[15\] - congestion information: capacity:1 usage:5 overflow:4 + srcs: net:_116_ net:_245_ net:_348_ net:dpath.a_lt_b$in0\[15\] + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 54.6, 42 ) - ( 56.7, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_348_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_165_ net:_348_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 44.1 ) - ( 56.7, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_401_ + srcs: net:_165_ net:_298_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 46.2 ) - ( 56.7, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_174_ net:_377_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_250_ net:_377_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 50.4 ) - ( 56.7, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_118_ net:_126_ net:_262_ + srcs: net:_174_ net:_262_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 56.7 ) - ( 56.7, 58.8) on Layer - +violation type: Vertical congestion + srcs: net:_146_ net:_174_ net:_262_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 54.6, 58.8 ) - ( 56.7, 60.9) on Layer - +violation type: Vertical congestion + srcs: net:_174_ net:_262_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 60.9 ) - ( 56.7, 63) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_118_ net:_126_ net:_173_ net:_262_ - congestion information: capacity:1 usage:5 overflow:4 + srcs: net:_173_ net:_262_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 63 ) - ( 56.7, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_118_ net:_134_ net:_173_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 54.6, 65.1 ) - ( 56.7, 67.2) on Layer - -violation type: Vertical congestion - srcs: net:_008_ net:_134_ net:dpath.a_lt_b$in1\[2\] - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 54.6, 69.3 ) - ( 56.7, 71.4) on Layer - + srcs: net:_118_ net:_134_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 67.2 ) - ( 56.7, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_394_ + srcs: net:_159_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 77.7 ) - ( 56.7, 79.8) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_371_ net:_407_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 56.7, 16.8 ) - ( 58.8, 18.9) on Layer - + srcs: net:clk net:_160_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 84 ) - ( 56.7, 86.1) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_407_ + srcs: net:_401_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 18.9 ) - ( 58.8, 21) on Layer - + bbox = ( 56.7, 8.4 ) - ( 58.8, 10.5) on Layer - violation type: Vertical congestion - srcs: net:_025_ net:_072_ net:_407_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 56.7, 21 ) - ( 58.8, 23.1) on Layer - + srcs: net:_401_ net:net19 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 56.7, 14.7 ) - ( 58.8, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_072_ net:_113_ + srcs: net:_025_ net:_072_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 56.7, 21 ) - ( 58.8, 23.1) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_072_ net:_113_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 23.1 ) - ( 58.8, 25.2) on Layer - violation type: Vertical congestion srcs: net:_041_ net:_113_ @@ -3659,145 +3915,105 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 27.3 ) - ( 58.8, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_113_ net:_401_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 29.4 ) - ( 58.8, 31.5) on Layer - -violation type: Vertical congestion - srcs: net:_017_ net:dpath.a_lt_b$in1\[11\] - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_017_ net:_388_ net:dpath.a_lt_b$in1\[11\] + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 56.7, 33.6 ) - ( 58.8, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_017_ net:_388_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_017_ net:_388_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 35.7 ) - ( 58.8, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_071_ net:_165_ net:_388_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_071_ net:_388_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 37.8 ) - ( 58.8, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_388_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_245_ net:_315_ net:_388_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 56.7, 39.9 ) - ( 58.8, 42) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_298_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 46.2 ) - ( 58.8, 48.3) on Layer - violation type: Vertical congestion srcs: net:_199_ net:_237_ net:_297_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 48.3 ) - ( 58.8, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_171_ net:_199_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_171_ net:_177_ net:_199_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 50.4 ) - ( 58.8, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_171_ net:_174_ net:_198_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_171_ net:_198_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 52.5 ) - ( 58.8, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_174_ net:_196_ net:_197_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 56.7, 54.6 ) - ( 58.8, 56.7) on Layer - -violation type: Vertical congestion - srcs: net:_174_ net:_197_ + srcs: net:_145_ net:_197_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 56.7 ) - ( 58.8, 58.8) on Layer - -violation type: Vertical congestion - srcs: net:_145_ net:_146_ net:_174_ net:_197_ - congestion information: capacity:1 usage:4 overflow:3 bbox = ( 56.7, 58.8 ) - ( 58.8, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_145_ net:_174_ + srcs: net:_118_ net:_145_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 60.9 ) - ( 58.8, 63) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_393_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_159_ net:_393_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 67.2 ) - ( 58.8, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_100_ net:_160_ net:_393_ net:_394_ + srcs: net:_134_ net:_159_ net:_353_ net:_393_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 56.7, 69.3 ) - ( 58.8, 71.4) on Layer - +violation type: Vertical congestion + srcs: net:_100_ net:_159_ net:_160_ net:_393_ congestion information: capacity:1 usage:4 overflow:3 bbox = ( 56.7, 71.4 ) - ( 58.8, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_393_ + srcs: net:_159_ net:_393_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 77.7 ) - ( 58.8, 79.8) on Layer - + bbox = ( 56.7, 73.5 ) - ( 58.8, 75.6) on Layer - violation type: Vertical congestion - srcs: net:resp_msg[9] net:_409_ + srcs: net:_159_ net:_393_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 6.3 ) - ( 60.9, 8.4) on Layer - + bbox = ( 56.7, 75.6 ) - ( 58.8, 77.7) on Layer - violation type: Vertical congestion - srcs: net:resp_msg[9] net:_409_ + srcs: net:resp_msg[9] net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 8.4 ) - ( 60.9, 10.5) on Layer - violation type: Vertical congestion - srcs: net:_409_ net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 10.5 ) - ( 60.9, 12.6) on Layer - -violation type: Vertical congestion - srcs: net:_409_ net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 12.6 ) - ( 60.9, 14.7) on Layer - -violation type: Vertical congestion - srcs: net:_352_ net:_371_ + srcs: net:_248_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 18.9 ) - ( 60.9, 21) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_352_ + srcs: net:_352_ net:dpath.a_lt_b$in1\[12\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 21 ) - ( 60.9, 23.1) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_130_ net:_352_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 58.8, 23.1 ) - ( 60.9, 25.2) on Layer - -violation type: Vertical congestion - srcs: net:_130_ net:_352_ net:dpath.a_lt_b$in1\[12\] - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 25.2 ) - ( 60.9, 27.3) on Layer - -violation type: Vertical congestion - srcs: net:_130_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 27.3 ) - ( 60.9, 29.4) on Layer - violation type: Vertical congestion srcs: net:_024_ net:_112_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 31.5 ) - ( 60.9, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_078_ net:_221_ net:_388_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_078_ net:_221_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 33.6 ) - ( 60.9, 35.7) on Layer - violation type: Vertical congestion srcs: net:_322_ net:_406_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 35.7 ) - ( 60.9, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_315_ net:_397_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 39.9 ) - ( 60.9, 42) on Layer - -violation type: Vertical congestion - srcs: net:_359_ net:_397_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 42 ) - ( 60.9, 44.1) on Layer - -violation type: Vertical congestion - srcs: net:_122_ net:_160_ + srcs: net:clk net:_406_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 44.1 ) - ( 60.9, 46.2) on Layer - + bbox = ( 58.8, 37.8 ) - ( 60.9, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_272_ net:_348_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_193_ net:_272_ net:_348_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 46.2 ) - ( 60.9, 48.3) on Layer - violation type: Vertical congestion srcs: net:_272_ net:_348_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 48.3 ) - ( 60.9, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_177_ net:_272_ net:_348_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 58.8, 50.4 ) - ( 60.9, 52.5) on Layer - -violation type: Vertical congestion - srcs: net:_177_ net:_272_ net:_348_ net:_377_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_177_ net:_272_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 52.5 ) - ( 60.9, 54.6) on Layer - +violation type: Vertical congestion + srcs: net:_196_ net:_272_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 58.8, 54.6 ) - ( 60.9, 56.7) on Layer - violation type: Vertical congestion srcs: net:_119_ net:_270_ congestion information: capacity:1 usage:2 overflow:1 @@ -3811,124 +4027,152 @@ violation type: Vertical congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 60.9 ) - ( 60.9, 63) on Layer - violation type: Vertical congestion - srcs: net:_119_ net:_348_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_118_ net:_119_ net:_245_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 63 ) - ( 60.9, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_356_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 69.3 ) - ( 60.9, 71.4) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_370_ + srcs: net:_118_ net:_348_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 84 ) - ( 60.9, 86.1) on Layer - + bbox = ( 58.8, 65.1 ) - ( 60.9, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_371_ net:_401_ net:net43 + srcs: net:_047_ net:_118_ net:_135_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 60.9, 27.3 ) - ( 63, 29.4) on Layer - + bbox = ( 58.8, 67.2 ) - ( 60.9, 69.3) on Layer - violation type: Vertical congestion srcs: net:clk net:_397_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 29.4 ) - ( 63, 31.5) on Layer - + bbox = ( 60.9, 8.4 ) - ( 63, 10.5) on Layer - violation type: Vertical congestion - srcs: net:clk net:_388_ net:_397_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 60.9, 31.5 ) - ( 63, 33.6) on Layer - + srcs: net:clk net:_397_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 10.5 ) - ( 63, 12.6) on Layer - violation type: Vertical congestion - srcs: net:clk net:_397_ net:_406_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 60.9, 33.6 ) - ( 63, 35.7) on Layer - + srcs: net:clk net:_371_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 12.6 ) - ( 63, 14.7) on Layer - violation type: Vertical congestion - srcs: net:clk net:_249_ net:_397_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 60.9, 35.7 ) - ( 63, 37.8) on Layer - + srcs: net:clk net:_371_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 14.7 ) - ( 63, 16.8) on Layer - violation type: Vertical congestion - srcs: net:clk net:_253_ net:_397_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:clk net:_371_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 16.8 ) - ( 63, 18.9) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_371_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 18.9 ) - ( 63, 21) on Layer - +violation type: Vertical congestion + srcs: net:_388_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 29.4 ) - ( 63, 31.5) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_388_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 31.5 ) - ( 63, 33.6) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_397_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 37.8 ) - ( 63, 39.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_104_ + srcs: net:_104_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 39.9 ) - ( 63, 42) on Layer - violation type: Vertical congestion - srcs: net:clk net:_104_ net:_138_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_104_ net:_138_ net:_359_ net:_397_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 60.9, 42 ) - ( 63, 44.1) on Layer - violation type: Vertical congestion srcs: net:_138_ net:_193_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 46.2 ) - ( 63, 48.3) on Layer - -violation type: Vertical congestion - srcs: net:_138_ net:_177_ net:_193_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 48.3 ) - ( 63, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_191_ net:_192_ + srcs: net:_194_ net:_348_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 50.4 ) - ( 63, 52.5) on Layer - +violation type: Vertical congestion + srcs: net:_192_ net:_348_ net:_377_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 52.5 ) - ( 63, 54.6) on Layer - violation type: Vertical congestion srcs: net:_287_ net:_348_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 54.6 ) - ( 63, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_144_ net:_236_ net:_348_ net:_417_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_144_ net:_348_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 56.7 ) - ( 63, 58.8) on Layer - violation type: Vertical congestion srcs: net:_144_ net:_348_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 58.8 ) - ( 63, 60.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_047_ net:_135_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 60.9, 67.2 ) - ( 63, 69.3) on Layer - + srcs: net:_135_ net:_348_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 63 ) - ( 63, 65.1) on Layer - violation type: Vertical congestion srcs: net:clk net:_047_ net:_101_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 69.3 ) - ( 63, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_248_ + srcs: net:clk net:_353_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 71.4 ) - ( 63, 73.5) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_248_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 79.8 ) - ( 63, 81.9) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_409_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 63, 14.7 ) - ( 65.1, 16.8) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 75.6 ) - ( 63, 77.7) on Layer - + bbox = ( 63, 16.8 ) - ( 65.1, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_371_ net:net46 + srcs: net:clk net:_130_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 23.1 ) - ( 65.1, 25.2) on Layer - + bbox = ( 63, 21 ) - ( 65.1, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_371_ net:net46 + srcs: net:_130_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 25.2 ) - ( 65.1, 27.3) on Layer - violation type: Vertical congestion srcs: net:_397_ net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 27.3 ) - ( 65.1, 29.4) on Layer - + bbox = ( 63, 33.6 ) - ( 65.1, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_416_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_248_ net:_397_ net:_416_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 35.7 ) - ( 65.1, 37.8) on Layer - violation type: Vertical congestion srcs: net:_012_ net:_050_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 39.9 ) - ( 65.1, 42) on Layer - violation type: Vertical congestion - srcs: net:_289_ net:_290_ + srcs: net:_353_ net:_416_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 63, 44.1 ) - ( 65.1, 46.2) on Layer - +violation type: Vertical congestion + srcs: net:_169_ net:_289_ net:_290_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 48.3 ) - ( 65.1, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_169_ net:_189_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_169_ net:_171_ net:_189_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 50.4 ) - ( 65.1, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_169_ net:_291_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_169_ net:_191_ net:_291_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 52.5 ) - ( 65.1, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_292_ net:_293_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_292_ net:_293_ net:_417_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 56.7 ) - ( 65.1, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_236_ net:_248_ net:_253_ net:_417_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_248_ net:_417_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 58.8 ) - ( 65.1, 60.9) on Layer - violation type: Vertical congestion srcs: net:_144_ net:_248_ @@ -3951,57 +4195,29 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 69.3 ) - ( 65.1, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_031_ net:_248_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 71.4 ) - ( 65.1, 73.5) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_248_ + srcs: net:_248_ net:_391_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 73.5 ) - ( 65.1, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:net46 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 12.6 ) - ( 67.2, 14.7) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:net46 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 14.7 ) - ( 67.2, 16.8) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:net46 + srcs: net:_248_ net:_391_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 16.8 ) - ( 67.2, 18.9) on Layer - + bbox = ( 63, 75.6 ) - ( 65.1, 77.7) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:net46 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 18.9 ) - ( 67.2, 21) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:net46 + srcs: net:_110_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 21 ) - ( 67.2, 23.1) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_397_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 65.1, 25.2 ) - ( 67.2, 27.3) on Layer - + bbox = ( 63, 77.7 ) - ( 65.1, 79.8) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_372_ + srcs: net:clk net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 29.4 ) - ( 67.2, 31.5) on Layer - + bbox = ( 65.1, 31.5 ) - ( 67.2, 33.6) on Layer - violation type: Vertical congestion srcs: net:_088_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 33.6 ) - ( 67.2, 35.7) on Layer - -violation type: Vertical congestion - srcs: net:_253_ net:_416_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 37.8 ) - ( 67.2, 39.9) on Layer - violation type: Vertical congestion srcs: net:_245_ net:_416_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 39.9 ) - ( 67.2, 42) on Layer - -violation type: Vertical congestion - srcs: net:_170_ net:_416_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 44.1 ) - ( 67.2, 46.2) on Layer - violation type: Vertical congestion srcs: net:_170_ net:_284_ congestion information: capacity:1 usage:2 overflow:1 @@ -4011,91 +4227,79 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 50.4 ) - ( 67.2, 52.5) on Layer - violation type: Vertical congestion - srcs: net:clk net:_067_ net:_143_ + srcs: net:_013_ net:_067_ net:_245_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 65.1, 56.7 ) - ( 67.2, 58.8) on Layer - violation type: Vertical congestion - srcs: net:clk net:_035_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_035_ net:_245_ net:_253_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 65.1, 58.8 ) - ( 67.2, 60.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_236_ net:_253_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_245_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 60.9 ) - ( 67.2, 63) on Layer - violation type: Vertical congestion srcs: net:_253_ net:_413_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 63 ) - ( 67.2, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_261_ + srcs: net:_253_ net:_266_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 67.2 ) - ( 67.2, 69.3) on Layer - + bbox = ( 65.1, 65.1 ) - ( 67.2, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_401_ net:net38 + srcs: net:_253_ net:_261_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 12.6 ) - ( 69.3, 14.7) on Layer - + bbox = ( 65.1, 67.2 ) - ( 67.2, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_401_ net:net38 + srcs: net:_031_ net:dpath.a_lt_b$in0\[3\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 14.7 ) - ( 69.3, 16.8) on Layer - + bbox = ( 65.1, 71.4 ) - ( 67.2, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_401_ net:net38 + srcs: net:clk net:_126_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 16.8 ) - ( 69.3, 18.9) on Layer - + bbox = ( 65.1, 73.5 ) - ( 67.2, 75.6) on Layer - violation type: Vertical congestion - srcs: net:clk net:_401_ + srcs: net:clk net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 23.1 ) - ( 69.3, 25.2) on Layer - + bbox = ( 65.1, 79.8 ) - ( 67.2, 81.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_372_ + srcs: net:_248_ net:net48 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 27.3 ) - ( 69.3, 29.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:_388_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 29.4 ) - ( 69.3, 31.5) on Layer - -violation type: Vertical congestion - srcs: net:_122_ net:_253_ + srcs: net:clk net:_414_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 35.7 ) - ( 69.3, 37.8) on Layer - -violation type: Vertical congestion - srcs: net:_122_ net:_159_ net:_253_ net:_281_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 67.2, 37.8 ) - ( 69.3, 39.9) on Layer - + bbox = ( 67.2, 31.5 ) - ( 69.3, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_122_ net:_159_ + srcs: net:_414_ net:dpath.a_lt_b$in0\[6\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 39.9 ) - ( 69.3, 42) on Layer - + bbox = ( 67.2, 33.6 ) - ( 69.3, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_122_ net:_159_ + srcs: net:_122_ net:_414_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 42 ) - ( 69.3, 44.1) on Layer - + bbox = ( 67.2, 35.7 ) - ( 69.3, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_136_ net:_138_ net:_272_ + srcs: net:_122_ net:_281_ net:_414_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 67.2, 44.1 ) - ( 69.3, 46.2) on Layer - + bbox = ( 67.2, 37.8 ) - ( 69.3, 39.9) on Layer - violation type: Vertical congestion srcs: net:_136_ net:_272_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 46.2 ) - ( 69.3, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_136_ net:_169_ net:_283_ + srcs: net:_136_ net:_177_ net:_283_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 48.3 ) - ( 69.3, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_137_ net:_143_ net:_169_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_137_ net:_177_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 50.4 ) - ( 69.3, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_123_ net:_139_ net:_143_ net:_169_ + srcs: net:_123_ net:_139_ net:_169_ net:_177_ congestion information: capacity:1 usage:4 overflow:3 bbox = ( 67.2, 52.5 ) - ( 69.3, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_123_ net:_143_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 54.6 ) - ( 69.3, 56.7) on Layer - -violation type: Vertical congestion - srcs: net:_123_ net:_245_ + srcs: net:clk net:_123_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 56.7 ) - ( 69.3, 58.8) on Layer - violation type: Vertical congestion @@ -4111,55 +4315,71 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 67.2 ) - ( 69.3, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_379_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_249_ net:_253_ net:_379_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 69.3 ) - ( 69.3, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_249_ net:net13 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 67.2, 73.5 ) - ( 69.3, 75.6) on Layer - + srcs: net:_248_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 18.9 ) - ( 71.4, 21) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_249_ net:net13 + srcs: net:clk net:_397_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 29.4 ) - ( 71.4, 31.5) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:_397_ net:net41 congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 67.2, 75.6 ) - ( 69.3, 77.7) on Layer - + bbox = ( 69.3, 31.5 ) - ( 71.4, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:net13 + srcs: net:_165_ net:_383_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 77.7 ) - ( 69.3, 79.8) on Layer - + bbox = ( 69.3, 33.6 ) - ( 71.4, 35.7) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_165_ net:_383_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 69.3, 35.7 ) - ( 71.4, 37.8) on Layer - violation type: Vertical congestion - srcs: net:net19 net:net48 + srcs: net:_159_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 12.6 ) - ( 71.4, 14.7) on Layer - + bbox = ( 69.3, 37.8 ) - ( 71.4, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_383_ + srcs: net:_253_ net:_414_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 35.7 ) - ( 71.4, 37.8) on Layer - + bbox = ( 69.3, 39.9 ) - ( 71.4, 42) on Layer - violation type: Vertical congestion srcs: net:_272_ net:_414_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 42 ) - ( 71.4, 44.1) on Layer - +violation type: Vertical congestion + srcs: net:_138_ net:_176_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 44.1 ) - ( 71.4, 46.2) on Layer - violation type: Vertical congestion srcs: net:_138_ net:_177_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 46.2 ) - ( 71.4, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_186_ + srcs: net:_139_ net:_143_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 48.3 ) - ( 71.4, 50.4) on Layer - + bbox = ( 69.3, 50.4 ) - ( 71.4, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_139_ net:_188_ + srcs: net:_139_ net:_143_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 50.4 ) - ( 71.4, 52.5) on Layer - + bbox = ( 69.3, 52.5 ) - ( 71.4, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_013_ net:_105_ net:_139_ + srcs: net:_139_ net:_143_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 54.6 ) - ( 71.4, 56.7) on Layer - +violation type: Vertical congestion + srcs: net:_105_ net:_139_ net:_143_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 56.7 ) - ( 71.4, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_123_ net:_353_ net:_360_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_123_ net:_160_ net:_353_ net:_360_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 69.3, 58.8 ) - ( 71.4, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_413_ + srcs: net:_160_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 60.9 ) - ( 71.4, 63) on Layer - violation type: Vertical congestion @@ -4179,71 +4399,123 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 69.3 ) - ( 71.4, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_381_ net:_397_ + srcs: net:_126_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 71.4 ) - ( 71.4, 73.5) on Layer - +violation type: Vertical congestion + srcs: net:_253_ net:_391_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 10.5 ) - ( 73.5, 12.6) on Layer - + bbox = ( 69.3, 75.6 ) - ( 71.4, 77.7) on Layer - violation type: Vertical congestion - srcs: net:_381_ net:_397_ + srcs: net:clk net:_253_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 77.7 ) - ( 71.4, 79.8) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 79.8 ) - ( 71.4, 81.9) on Layer - +violation type: Vertical congestion + srcs: net:req_msg[19] net:_249_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 88.2 ) - ( 71.4, 90.3) on Layer - +violation type: Vertical congestion + srcs: net:_397_ net:net48 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 12.6 ) - ( 73.5, 14.7) on Layer - violation type: Vertical congestion - srcs: net:_268_ net:_381_ + srcs: net:_397_ net:net48 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 14.7 ) - ( 73.5, 16.8) on Layer - +violation type: Vertical congestion + srcs: net:_397_ net:net48 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 16.8 ) - ( 73.5, 18.9) on Layer - +violation type: Vertical congestion + srcs: net:_397_ net:net48 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 18.9 ) - ( 73.5, 21) on Layer - +violation type: Vertical congestion + srcs: net:_397_ net:net48 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 21 ) - ( 73.5, 23.1) on Layer - +violation type: Vertical congestion + srcs: net:_397_ net:net48 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 23.1 ) - ( 73.5, 25.2) on Layer - +violation type: Vertical congestion + srcs: net:_397_ net:net10 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 37.8 ) - ( 73.5, 39.9) on Layer - + bbox = ( 71.4, 25.2 ) - ( 73.5, 27.3) on Layer - violation type: Vertical congestion srcs: net:_120_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 39.9 ) - ( 73.5, 42) on Layer - +violation type: Vertical congestion + srcs: net:_245_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 42 ) - ( 73.5, 44.1) on Layer - +violation type: Vertical congestion + srcs: net:_136_ net:_276_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 44.1 ) - ( 73.5, 46.2) on Layer - violation type: Vertical congestion srcs: net:_175_ net:_277_ net:_278_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 71.4, 46.2 ) - ( 73.5, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_282_ net:_415_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_282_ net:_283_ net:_415_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 71.4, 48.3 ) - ( 73.5, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_137_ net:_415_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_137_ net:_187_ net:_188_ net:_415_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 71.4, 50.4 ) - ( 73.5, 52.5) on Layer - violation type: Vertical congestion srcs: net:_245_ net:_377_ net:_415_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 71.4, 52.5 ) - ( 73.5, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_121_ net:_245_ + srcs: net:_236_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 54.6 ) - ( 73.5, 56.7) on Layer - + bbox = ( 71.4, 58.8 ) - ( 73.5, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_160_ net:_353_ net:_376_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_236_ net:_249_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 60.9 ) - ( 73.5, 63) on Layer - +violation type: Vertical congestion + srcs: net:_246_ net:_249_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 63 ) - ( 73.5, 65.1) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_376_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 67.2 ) - ( 73.5, 69.3) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_353_ net:_376_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 71.4, 71.4 ) - ( 73.5, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_353_ + srcs: net:_160_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 73.5 ) - ( 73.5, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_159_ + srcs: net:_160_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 75.6 ) - ( 73.5, 77.7) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_159_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 77.7 ) - ( 73.5, 79.8) on Layer - -violation type: Vertical congestion - srcs: net:_126_ net:_159_ + srcs: net:_381_ net:net10 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 79.8 ) - ( 73.5, 81.9) on Layer - + bbox = ( 73.5, 21 ) - ( 75.6, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_159_ + srcs: net:_381_ net:net10 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 81.9 ) - ( 73.5, 84) on Layer - + bbox = ( 73.5, 23.1 ) - ( 75.6, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_159_ + srcs: net:_159_ net:_381_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 84 ) - ( 73.5, 86.1) on Layer - + bbox = ( 73.5, 33.6 ) - ( 75.6, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_032_ net:_086_ net:_414_ + srcs: net:_032_ net:_086_ net:_381_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 73.5, 35.7 ) - ( 75.6, 37.8) on Layer - violation type: Vertical congestion @@ -4255,374 +4527,378 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 46.2 ) - ( 75.6, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_121_ net:_245_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_175_ net:_186_ net:_245_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 73.5, 48.3 ) - ( 75.6, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_121_ net:_187_ net:_245_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_121_ net:_245_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 50.4 ) - ( 75.6, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_279_ net:_280_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_121_ net:_279_ net:_280_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 73.5, 54.6 ) - ( 75.6, 56.7) on Layer - violation type: Vertical congestion srcs: net:_249_ net:_275_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 56.7 ) - ( 75.6, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_249_ net:_275_ net:_398_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_165_ net:_275_ net:_398_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 73.5, 58.8 ) - ( 75.6, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_249_ net:_398_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_165_ net:_398_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 60.9 ) - ( 75.6, 63) on Layer - violation type: Vertical congestion - srcs: net:_076_ net:_159_ net:_249_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_076_ net:_165_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 63 ) - ( 75.6, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_159_ + srcs: net:_110_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 65.1 ) - ( 75.6, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_160_ net:_165_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 73.5, 67.2 ) - ( 75.6, 69.3) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_160_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 69.3 ) - ( 75.6, 71.4) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_376_ + srcs: net:_249_ net:_376_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 73.5 ) - ( 75.6, 75.6) on Layer - violation type: Vertical congestion - srcs: net:clk net:_376_ + srcs: net:_249_ net:_376_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 75.6 ) - ( 75.6, 77.7) on Layer - violation type: Vertical congestion - srcs: net:clk net:_376_ + srcs: net:_249_ net:_376_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 77.7 ) - ( 75.6, 79.8) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_376_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 79.8 ) - ( 75.6, 81.9) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_381_ + srcs: net:_120_ net:_136_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 35.7 ) - ( 77.7, 37.8) on Layer - + bbox = ( 75.6, 46.2 ) - ( 77.7, 48.3) on Layer - violation type: Vertical congestion - srcs: net:clk net:_010_ + srcs: net:_011_ net:_137_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 39.9 ) - ( 77.7, 42) on Layer - + bbox = ( 75.6, 52.5 ) - ( 77.7, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_136_ net:_353_ + srcs: net:clk net:_413_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 44.1 ) - ( 77.7, 46.2) on Layer - + bbox = ( 75.6, 60.9 ) - ( 77.7, 63) on Layer - violation type: Vertical congestion - srcs: net:_120_ net:_136_ net:_353_ + srcs: net:clk net:_249_ net:_413_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 75.6, 46.2 ) - ( 77.7, 48.3) on Layer - -violation type: Vertical congestion - srcs: net:_175_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 48.3 ) - ( 77.7, 50.4) on Layer - + bbox = ( 75.6, 63 ) - ( 77.7, 65.1) on Layer - violation type: Vertical congestion - srcs: net:clk net:dpath.a_lt_b$in0\[0\] + srcs: net:_249_ net:dpath.a_lt_b$in0\[0\] congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 65.1 ) - ( 77.7, 67.2) on Layer - violation type: Vertical congestion - srcs: net:clk net:_110_ net:_160_ + srcs: net:_110_ net:_160_ net:_249_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 75.6, 67.2 ) - ( 77.7, 69.3) on Layer - violation type: Vertical congestion - srcs: net:clk net:_110_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_110_ net:_159_ net:_160_ net:_249_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 75.6, 69.3 ) - ( 77.7, 71.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:_110_ + srcs: net:_110_ net:_159_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 71.4 ) - ( 77.7, 73.5) on Layer - violation type: Vertical congestion - srcs: net:clk net:_110_ + srcs: net:_110_ net:_159_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 73.5 ) - ( 77.7, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_165_ + srcs: net:_110_ net:_159_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 75.6, 75.6 ) - ( 77.7, 77.7) on Layer - +violation type: Vertical congestion + srcs: net:_110_ net:_159_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 77.7 ) - ( 77.7, 79.8) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:net30 + srcs: net:_159_ net:_376_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 86.1 ) - ( 77.7, 88.2) on Layer - + bbox = ( 75.6, 79.8 ) - ( 77.7, 81.9) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:dpath.a_lt_b$in0\[4\] + srcs: net:_372_ net:_376_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 37.8 ) - ( 79.8, 39.9) on Layer - + bbox = ( 75.6, 81.9 ) - ( 77.7, 84) on Layer - violation type: Vertical congestion - srcs: net:_120_ net:_165_ + srcs: net:_249_ net:dpath.a_lt_b$in0\[4\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 39.9 ) - ( 79.8, 42) on Layer - + bbox = ( 77.7, 37.8 ) - ( 79.8, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_102_ net:_136_ + srcs: net:_102_ net:_396_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 42 ) - ( 79.8, 44.1) on Layer - + bbox = ( 77.7, 44.1 ) - ( 79.8, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_358_ + srcs: net:_121_ net:_358_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 48.3 ) - ( 79.8, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_049_ net:_160_ + srcs: net:_049_ net:_121_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 50.4 ) - ( 79.8, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_137_ net:_160_ + srcs: net:clk net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 52.5 ) - ( 79.8, 54.6) on Layer - + bbox = ( 77.7, 75.6 ) - ( 79.8, 77.7) on Layer - violation type: Vertical congestion - srcs: net:_121_ net:_160_ + srcs: net:req_msg[16] net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 54.6 ) - ( 79.8, 56.7) on Layer - + bbox = ( 77.7, 88.2 ) - ( 79.8, 90.3) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:dpath.a_lt_b$in0\[5\] + srcs: net:_159_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 56.7 ) - ( 79.8, 58.8) on Layer - + bbox = ( 79.8, 33.6 ) - ( 81.9, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:net45 + srcs: net:_253_ net:net47 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 60.9 ) - ( 79.8, 63) on Layer - + bbox = ( 79.8, 44.1 ) - ( 81.9, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:net45 + srcs: net:_353_ net:_415_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 63 ) - ( 79.8, 65.1) on Layer - + bbox = ( 79.8, 46.2 ) - ( 81.9, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:net45 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 65.1 ) - ( 79.8, 67.2) on Layer - + srcs: net:_160_ net:_353_ net:_415_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 79.8, 48.3 ) - ( 81.9, 50.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:_249_ + srcs: net:_353_ net:_377_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 35.7 ) - ( 81.9, 37.8) on Layer - + bbox = ( 79.8, 50.4 ) - ( 81.9, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_249_ + srcs: net:clk net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 37.8 ) - ( 81.9, 39.9) on Layer - + bbox = ( 79.8, 58.8 ) - ( 81.9, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_249_ + srcs: net:clk net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 39.9 ) - ( 81.9, 42) on Layer - + bbox = ( 79.8, 60.9 ) - ( 81.9, 63) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_249_ + srcs: net:clk net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 42 ) - ( 81.9, 44.1) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_249_ net:_396_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 79.8, 44.1 ) - ( 81.9, 46.2) on Layer - + bbox = ( 79.8, 63 ) - ( 81.9, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_415_ + srcs: net:clk net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 46.2 ) - ( 81.9, 48.3) on Layer - + bbox = ( 79.8, 65.1 ) - ( 81.9, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_415_ + srcs: net:clk net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 48.3 ) - ( 81.9, 50.4) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_353_ net:_377_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 79.8, 50.4 ) - ( 81.9, 52.5) on Layer - + bbox = ( 79.8, 67.2 ) - ( 81.9, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:dpath.a_lt_b$in1\[5\] + srcs: net:clk net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 52.5 ) - ( 81.9, 54.6) on Layer - + bbox = ( 79.8, 73.5 ) - ( 81.9, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_253_ + srcs: net:clk net:_396_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 54.6 ) - ( 81.9, 56.7) on Layer - + bbox = ( 81.9, 35.7 ) - ( 84, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_253_ + srcs: net:_253_ net:net28 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 56.7 ) - ( 81.9, 58.8) on Layer - + bbox = ( 81.9, 54.6 ) - ( 84, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_253_ + srcs: net:_159_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 58.8 ) - ( 81.9, 60.9) on Layer - + bbox = ( 84, 39.9 ) - ( 86.1, 42) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_253_ + srcs: net:clk net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 60.9 ) - ( 81.9, 63) on Layer - + bbox = ( 84, 44.1 ) - ( 86.1, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_253_ + srcs: net:clk net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 63 ) - ( 81.9, 65.1) on Layer - + bbox = ( 84, 46.2 ) - ( 86.1, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:net1 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 88.2 ) - ( 81.9, 90.3) on Layer - + srcs: net:clk net:_159_ net:_253_ net:_377_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 84, 48.3 ) - ( 86.1, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_395_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 81.9, 48.3 ) - ( 84, 50.4) on Layer - + srcs: net:clk net:_159_ net:_160_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 84, 50.4 ) - ( 86.1, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:net28 + srcs: net:clk net:_160_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 81.9, 50.4 ) - ( 84, 52.5) on Layer - + bbox = ( 84, 52.5 ) - ( 86.1, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_353_ + srcs: net:clk net:_160_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 81.9, 52.5 ) - ( 84, 54.6) on Layer - + bbox = ( 84, 54.6 ) - ( 86.1, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_353_ + srcs: net:clk net:_160_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 81.9, 54.6 ) - ( 84, 56.7) on Layer - + bbox = ( 84, 56.7 ) - ( 86.1, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:net45 + srcs: net:req_msg[5] net:net40 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 81.9, 67.2 ) - ( 84, 69.3) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_353_ net:_391_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 81.9, 73.5 ) - ( 84, 75.6) on Layer - + bbox = ( 86.1, 12.6 ) - ( 88.2, 14.7) on Layer - violation type: Vertical congestion - srcs: net:net27 net:net40 + srcs: net:req_msg[24] net:_377_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 84, 12.6 ) - ( 86.1, 14.7) on Layer - + bbox = ( 86.1, 46.2 ) - ( 88.2, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_377_ net:net49 + srcs: net:_159_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 84, 46.2 ) - ( 86.1, 48.3) on Layer - + bbox = ( 86.1, 52.5 ) - ( 88.2, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_377_ net:net49 + srcs: net:net25 net:net45 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 84, 48.3 ) - ( 86.1, 50.4) on Layer - + bbox = ( 86.1, 69.3 ) - ( 88.2, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:net28 net:net49 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 84, 52.5 ) - ( 86.1, 54.6) on Layer - + srcs: net:_165_ net:net15 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 88.2, 39.9 ) - ( 90.3, 42) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_382_ net:net49 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 84, 58.8 ) - ( 86.1, 60.9) on Layer - + srcs: net:_165_ net:net15 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 88.2, 42 ) - ( 90.3, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_249_ + srcs: net:_165_ net:net49 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 84, 65.1 ) - ( 86.1, 67.2) on Layer - + bbox = ( 88.2, 48.3 ) - ( 90.3, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:net45 + srcs: net:_165_ net:net49 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 84, 69.3 ) - ( 86.1, 71.4) on Layer - + bbox = ( 88.2, 50.4 ) - ( 90.3, 52.5) on Layer - violation type: Vertical congestion - srcs: net:clk net:net47 + srcs: net:_165_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 37.8 ) - ( 88.2, 39.9) on Layer - + bbox = ( 88.2, 52.5 ) - ( 90.3, 54.6) on Layer - violation type: Vertical congestion - srcs: net:clk net:net47 + srcs: net:_165_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 39.9 ) - ( 88.2, 42) on Layer - + bbox = ( 88.2, 54.6 ) - ( 90.3, 56.7) on Layer - violation type: Vertical congestion - srcs: net:clk net:net47 + srcs: net:_165_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 42 ) - ( 88.2, 44.1) on Layer - + bbox = ( 88.2, 56.7 ) - ( 90.3, 58.8) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:_249_ net:net11 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 88.2, 60.9 ) - ( 90.3, 63) on Layer - violation type: Vertical congestion - srcs: net:net15 net:net47 + srcs: net:_165_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 44.1 ) - ( 88.2, 46.2) on Layer - + bbox = ( 88.2, 63 ) - ( 90.3, 65.1) on Layer - violation type: Vertical congestion - srcs: net:clk net:_385_ + srcs: net:_165_ net:net32 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 54.6 ) - ( 88.2, 56.7) on Layer - + bbox = ( 88.2, 67.2 ) - ( 90.3, 69.3) on Layer - violation type: Vertical congestion - srcs: net:clk net:_385_ + srcs: net:_165_ net:net25 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 56.7 ) - ( 88.2, 58.8) on Layer - + bbox = ( 88.2, 71.4 ) - ( 90.3, 73.5) on Layer - violation type: Vertical congestion - srcs: net:clk net:_165_ + srcs: net:_253_ net:_372_ net:net49 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 90.3, 56.7 ) - ( 92.4, 58.8) on Layer - +violation type: Vertical congestion + srcs: net:_353_ net:_372_ net:net49 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 90.3, 58.8 ) - ( 92.4, 60.9) on Layer - +violation type: Vertical congestion + srcs: net:_353_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 67.2 ) - ( 88.2, 69.3) on Layer - + bbox = ( 90.3, 60.9 ) - ( 92.4, 63) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_385_ + srcs: net:_353_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 88.2, 58.8 ) - ( 90.3, 60.9) on Layer - + bbox = ( 90.3, 63 ) - ( 92.4, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:net11 + srcs: net:_353_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 88.2, 60.9 ) - ( 90.3, 63) on Layer - + bbox = ( 90.3, 65.1 ) - ( 92.4, 67.2) on Layer - violation type: Vertical congestion - srcs: net:clk net:_353_ + srcs: net:_353_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 88.2, 63 ) - ( 90.3, 65.1) on Layer - + bbox = ( 90.3, 67.2 ) - ( 92.4, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:net25 + srcs: net:_353_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 88.2, 65.1 ) - ( 90.3, 67.2) on Layer - + bbox = ( 90.3, 69.3 ) - ( 92.4, 71.4) on Layer - violation type: Vertical congestion - srcs: net:net25 net:net32 + srcs: net:_249_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 88.2, 67.2 ) - ( 90.3, 69.3) on Layer - + bbox = ( 92.4, 42 ) - ( 94.5, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_388_ + srcs: net:_372_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 37.8 ) - ( 92.4, 39.9) on Layer - + bbox = ( 92.4, 48.3 ) - ( 94.5, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_388_ + srcs: net:_372_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 39.9 ) - ( 92.4, 42) on Layer - + bbox = ( 92.4, 50.4 ) - ( 94.5, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_388_ + srcs: net:_372_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 42 ) - ( 92.4, 44.1) on Layer - + bbox = ( 92.4, 52.5 ) - ( 94.5, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_388_ + srcs: net:_372_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 44.1 ) - ( 92.4, 46.2) on Layer - + bbox = ( 92.4, 54.6 ) - ( 94.5, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_388_ + srcs: net:_253_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 46.2 ) - ( 92.4, 48.3) on Layer - + bbox = ( 92.4, 58.8 ) - ( 94.5, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_388_ + srcs: net:_253_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 48.3 ) - ( 92.4, 50.4) on Layer - + bbox = ( 92.4, 60.9 ) - ( 94.5, 63) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_388_ + srcs: net:_253_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 50.4 ) - ( 92.4, 52.5) on Layer - + bbox = ( 92.4, 63 ) - ( 94.5, 65.1) on Layer - violation type: Vertical congestion - srcs: net:req_msg[4] net:_388_ + srcs: net:_253_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 54.6 ) - ( 92.4, 56.7) on Layer - + bbox = ( 92.4, 65.1 ) - ( 94.5, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_372_ + srcs: net:_253_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 92.4, 67.2 ) - ( 94.5, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_372_ + srcs: net:_253_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 92.4, 69.3 ) - ( 94.5, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_372_ + srcs: net:_253_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 92.4, 71.4 ) - ( 94.5, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_372_ + srcs: net:_253_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 94.5, 42 ) - ( 96.6, 44.1) on Layer - + bbox = ( 92.4, 73.5 ) - ( 94.5, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_372_ + srcs: net:_249_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 94.5, 44.1 ) - ( 96.6, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_372_ + srcs: net:_249_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 94.5, 46.2 ) - ( 96.6, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_372_ + srcs: net:_249_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 94.5, 48.3 ) - ( 96.6, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_372_ + srcs: net:_249_ net:_388_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 94.5, 50.4 ) - ( 96.6, 52.5) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_388_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 94.5, 52.5 ) - ( 96.6, 54.6) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 94.5, 54.6 ) - ( 96.6, 56.7) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_388_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 94.5, 56.7 ) - ( 96.6, 58.8) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_388_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 94.5, 58.8 ) - ( 96.6, 60.9) on Layer - diff --git a/src/grt/test/congestion7.guideok b/src/grt/test/congestion7.guideok index bf4c0d0757c..097d3e355c9 100644 --- a/src/grt/test/congestion7.guideok +++ b/src/grt/test/congestion7.guideok @@ -1,10 +1,10 @@ _000_ ( 54600 105000 58800 109200 metal1 -54600 105000 58800 113400 metal2 -54600 109200 58800 113400 metal2 -54600 109200 63000 113400 metal3 -58800 109200 63000 113400 metal2 +54600 105000 58800 109200 metal2 +54600 105000 63000 109200 metal3 +58800 105000 63000 109200 metal2 +58800 105000 63000 113400 metal2 58800 109200 63000 113400 metal1 ) _001_ @@ -47,19 +47,19 @@ _006_ _007_ ( 88200 121800 92400 126000 metal1 -88200 121800 92400 126000 metal2 -88200 121800 96600 126000 metal3 -92400 121800 96600 126000 metal2 -92400 121800 96600 130200 metal2 +88200 121800 92400 130200 metal2 +88200 126000 92400 130200 metal2 +88200 126000 96600 130200 metal3 +92400 126000 96600 130200 metal2 92400 126000 96600 130200 metal1 ) _008_ ( 105000 138600 109200 142800 metal1 -105000 138600 109200 147000 metal2 -105000 142800 109200 147000 metal2 -105000 142800 113400 147000 metal3 -109200 142800 113400 147000 metal2 +105000 138600 109200 142800 metal2 +105000 138600 113400 142800 metal3 +109200 138600 113400 142800 metal2 +109200 138600 113400 147000 metal2 109200 142800 113400 147000 metal1 ) _009_ @@ -73,14 +73,10 @@ _009_ _010_ ( 147000 79800 151200 84000 metal1 -147000 79800 151200 84000 metal2 -147000 79800 155400 84000 metal3 -151200 79800 155400 84000 metal2 -151200 79800 155400 92400 metal2 -151200 88200 155400 92400 metal2 -151200 88200 159600 92400 metal3 -155400 88200 159600 92400 metal2 -155400 84000 159600 92400 metal2 +147000 79800 151200 88200 metal2 +147000 84000 151200 88200 metal2 +147000 84000 159600 88200 metal3 +155400 84000 159600 88200 metal2 155400 84000 159600 88200 metal1 ) _011_ @@ -101,10 +97,10 @@ _012_ _013_ ( 130200 117600 134400 121800 metal1 -130200 117600 134400 121800 metal2 -130200 117600 142800 121800 metal3 -138600 117600 142800 121800 metal2 -138600 113400 142800 121800 metal2 +130200 113400 134400 121800 metal2 +130200 113400 134400 117600 metal2 +130200 113400 142800 117600 metal3 +138600 113400 142800 117600 metal2 138600 113400 142800 117600 metal1 ) _014_ @@ -155,11 +151,9 @@ _019_ ) _020_ ( -67200 46200 71400 50400 metal1 -67200 46200 71400 54600 metal2 -67200 50400 71400 54600 metal2 -67200 50400 75600 54600 metal3 -71400 50400 75600 54600 metal2 +67200 46200 75600 50400 metal1 +71400 46200 75600 50400 metal1 +71400 46200 75600 54600 metal2 71400 50400 75600 54600 metal1 ) _021_ @@ -190,7 +184,13 @@ _024_ _025_ ( 113400 42000 117600 46200 metal1 -113400 42000 117600 50400 metal2 +113400 42000 117600 46200 metal2 +113400 42000 121800 46200 metal3 +117600 42000 121800 46200 metal2 +117600 42000 121800 50400 metal2 +117600 46200 121800 50400 metal2 +113400 46200 121800 50400 metal3 +113400 46200 117600 50400 metal2 113400 46200 117600 50400 metal1 ) _026_ @@ -217,10 +217,10 @@ _028_ _029_ ( 84000 130200 88200 134400 metal1 -84000 130200 88200 134400 metal2 -84000 130200 92400 134400 metal3 -88200 130200 92400 134400 metal2 -88200 130200 92400 138600 metal2 +84000 130200 88200 138600 metal2 +84000 134400 88200 138600 metal2 +84000 134400 92400 138600 metal3 +88200 134400 92400 138600 metal2 88200 134400 92400 138600 metal1 ) _030_ @@ -267,19 +267,19 @@ _035_ _036_ ( 50400 92400 54600 96600 metal1 -50400 92400 54600 96600 metal2 -50400 92400 58800 96600 metal3 -54600 92400 58800 96600 metal2 -54600 92400 58800 100800 metal2 +50400 92400 54600 100800 metal2 +50400 96600 54600 100800 metal2 +50400 96600 58800 100800 metal3 +54600 96600 58800 100800 metal2 54600 96600 58800 100800 metal1 ) _037_ ( 54600 71400 58800 75600 metal1 -54600 71400 58800 75600 metal2 -54600 71400 63000 75600 metal3 -58800 71400 63000 75600 metal2 -58800 67200 63000 75600 metal2 +54600 67200 58800 75600 metal2 +54600 67200 58800 71400 metal2 +54600 67200 63000 71400 metal3 +58800 67200 63000 71400 metal2 58800 67200 63000 71400 metal1 ) _038_ @@ -291,10 +291,10 @@ _038_ _039_ ( 71400 58800 75600 63000 metal1 -71400 58800 75600 63000 metal2 -71400 58800 79800 63000 metal3 -75600 58800 79800 63000 metal2 -75600 58800 79800 67200 metal2 +71400 58800 75600 67200 metal2 +71400 63000 75600 67200 metal2 +71400 63000 79800 67200 metal3 +75600 63000 79800 67200 metal2 75600 63000 79800 67200 metal1 ) _040_ @@ -311,11 +311,10 @@ _041_ _042_ ( 100800 29400 105000 33600 metal1 -100800 25200 105000 33600 metal2 -100800 25200 105000 29400 metal2 -100800 25200 113400 29400 metal3 -109200 25200 113400 29400 metal2 -109200 25200 113400 37800 metal2 +100800 29400 105000 33600 metal2 +100800 29400 113400 33600 metal3 +109200 29400 113400 33600 metal2 +109200 29400 113400 37800 metal2 109200 33600 113400 37800 metal1 ) _043_ @@ -344,19 +343,18 @@ _045_ ) _046_ ( -105000 142800 113400 147000 metal1 -109200 142800 113400 147000 metal1 +105000 142800 109200 147000 metal1 +105000 142800 109200 147000 metal2 +105000 142800 113400 147000 metal3 +109200 142800 113400 147000 metal2 109200 142800 113400 151200 metal2 109200 147000 113400 151200 metal1 ) _047_ ( -117600 134400 121800 138600 metal1 -117600 134400 121800 142800 metal2 -117600 138600 121800 142800 metal1 -117600 138600 126000 142800 metal1 -121800 138600 126000 142800 metal1 -121800 138600 126000 147000 metal2 +117600 134400 126000 138600 metal1 +121800 134400 126000 138600 metal1 +121800 134400 126000 147000 metal2 121800 142800 126000 147000 metal1 ) _048_ @@ -396,10 +394,10 @@ _052_ _053_ ( 50400 84000 54600 88200 metal1 -50400 79800 54600 88200 metal2 -50400 79800 54600 84000 metal2 -50400 79800 58800 84000 metal3 -54600 79800 58800 84000 metal2 +50400 84000 54600 88200 metal2 +50400 84000 58800 88200 metal3 +54600 84000 58800 88200 metal2 +54600 79800 58800 88200 metal2 54600 79800 58800 84000 metal1 ) _054_ @@ -442,23 +440,27 @@ _058_ ) _059_ ( -67200 100800 71400 113400 metal2 +67200 100800 71400 109200 metal2 +67200 100800 71400 105000 metal1 +67200 105000 71400 113400 metal2 67200 109200 71400 117600 metal2 67200 113400 71400 117600 metal1 67200 109200 71400 113400 metal1 67200 109200 71400 113400 metal2 -67200 109200 88200 113400 metal3 -84000 109200 88200 113400 metal2 -84000 100800 88200 113400 metal2 +67200 109200 79800 113400 metal3 +75600 109200 79800 113400 metal2 +75600 105000 79800 113400 metal2 +75600 105000 79800 109200 metal2 +75600 105000 88200 109200 metal3 +84000 105000 88200 109200 metal2 +84000 100800 88200 109200 metal2 84000 100800 88200 105000 metal1 84000 96600 88200 105000 metal2 84000 96600 88200 100800 metal1 63000 105000 67200 109200 metal1 -63000 100800 67200 109200 metal2 -63000 100800 67200 105000 metal2 -63000 100800 71400 105000 metal3 -67200 100800 71400 105000 metal2 -67200 100800 71400 105000 metal1 +63000 105000 67200 109200 metal2 +63000 105000 71400 109200 metal3 +67200 105000 71400 109200 metal2 ) _060_ ( @@ -477,10 +479,10 @@ _061_ _062_ ( 100800 134400 105000 138600 metal1 -100800 134400 105000 142800 metal2 -100800 138600 105000 142800 metal2 -100800 138600 109200 142800 metal3 -105000 138600 109200 142800 metal2 +100800 134400 105000 138600 metal2 +100800 134400 109200 138600 metal3 +105000 134400 109200 138600 metal2 +105000 134400 109200 142800 metal2 105000 138600 109200 142800 metal1 ) _063_ @@ -502,10 +504,10 @@ _064_ _065_ ( 147000 113400 151200 117600 metal1 -147000 109200 151200 117600 metal2 -147000 109200 151200 113400 metal2 -147000 109200 159600 113400 metal3 -155400 109200 159600 113400 metal2 +147000 113400 151200 117600 metal2 +147000 113400 159600 117600 metal3 +155400 113400 159600 117600 metal2 +155400 109200 159600 117600 metal2 155400 109200 159600 113400 metal1 ) _066_ @@ -545,10 +547,10 @@ _069_ _070_ ( 63000 58800 67200 63000 metal1 -63000 58800 67200 67200 metal2 -63000 63000 67200 67200 metal2 -63000 63000 71400 67200 metal3 -67200 63000 71400 67200 metal2 +63000 58800 67200 63000 metal2 +63000 58800 71400 63000 metal3 +67200 58800 71400 63000 metal2 +67200 58800 71400 67200 metal2 67200 63000 71400 67200 metal1 ) _071_ @@ -560,27 +562,22 @@ _071_ _072_ ( 105000 42000 109200 46200 metal1 -105000 42000 109200 50400 metal2 -105000 46200 109200 50400 metal2 -105000 46200 113400 50400 metal3 -109200 46200 113400 50400 metal2 -109200 46200 113400 54600 metal2 -109200 50400 113400 54600 metal2 -109200 50400 117600 54600 metal3 -113400 50400 117600 54600 metal2 +105000 42000 109200 46200 metal2 +105000 42000 117600 46200 metal3 +113400 42000 117600 46200 metal2 +113400 42000 117600 54600 metal2 113400 50400 117600 54600 metal1 ) _073_ ( -88200 37800 92400 42000 metal1 -88200 37800 92400 46200 metal2 -88200 42000 92400 46200 metal2 -88200 42000 96600 46200 metal3 -92400 42000 96600 46200 metal2 +88200 37800 96600 42000 metal1 +92400 37800 96600 46200 metal2 92400 42000 96600 46200 metal1 -92400 42000 100800 46200 metal1 -96600 42000 100800 46200 metal1 -96600 33600 100800 46200 metal2 +92400 37800 96600 42000 metal1 +92400 37800 96600 42000 metal2 +92400 37800 100800 42000 metal3 +96600 37800 100800 42000 metal2 +96600 33600 100800 42000 metal2 96600 33600 100800 37800 metal2 96600 33600 105000 37800 metal3 100800 33600 105000 37800 metal2 @@ -609,10 +606,10 @@ _076_ _077_ ( 58800 63000 63000 67200 metal1 -58800 63000 63000 67200 metal2 -58800 63000 67200 67200 metal3 -63000 63000 67200 67200 metal2 -63000 58800 67200 67200 metal2 +58800 58800 63000 67200 metal2 +58800 58800 63000 63000 metal2 +58800 58800 67200 63000 metal3 +63000 58800 67200 63000 metal2 63000 58800 67200 63000 metal1 ) _078_ @@ -638,27 +635,30 @@ _080_ _081_ ( 67200 37800 71400 42000 metal1 -67200 37800 71400 46200 metal2 -67200 42000 71400 46200 metal1 -67200 42000 75600 46200 metal1 +67200 37800 71400 42000 metal2 +67200 37800 75600 42000 metal3 +71400 37800 75600 42000 metal2 +71400 37800 75600 46200 metal2 +71400 42000 75600 46200 metal1 ) _082_ ( 100800 84000 105000 88200 metal1 -100800 84000 105000 92400 metal2 -100800 88200 105000 92400 metal2 -100800 88200 109200 92400 metal3 -105000 88200 109200 92400 metal2 -105000 84000 109200 92400 metal2 +100800 84000 105000 88200 metal2 +100800 84000 109200 88200 metal3 +105000 84000 109200 88200 metal2 105000 84000 109200 88200 metal1 ) _083_ ( 88200 134400 92400 138600 metal1 88200 134400 92400 138600 metal2 -88200 134400 100800 138600 metal3 -96600 134400 100800 138600 metal2 -96600 130200 100800 138600 metal2 +88200 134400 96600 138600 metal3 +92400 134400 96600 138600 metal2 +92400 130200 96600 138600 metal2 +92400 130200 96600 134400 metal2 +92400 130200 100800 134400 metal3 +96600 130200 100800 134400 metal2 96600 130200 100800 134400 metal1 ) _084_ @@ -700,10 +700,10 @@ _089_ _090_ ( 54600 96600 58800 100800 metal1 -54600 92400 58800 100800 metal2 -54600 92400 58800 96600 metal2 -54600 92400 67200 96600 metal3 -63000 92400 67200 96600 metal2 +54600 96600 58800 100800 metal2 +54600 96600 67200 100800 metal3 +63000 96600 67200 100800 metal2 +63000 92400 67200 100800 metal2 63000 92400 67200 96600 metal1 ) _091_ @@ -760,10 +760,10 @@ _097_ _098_ ( 100800 75600 105000 79800 metal1 -100800 75600 105000 79800 metal2 -100800 75600 109200 79800 metal3 -105000 75600 109200 79800 metal2 -105000 75600 109200 84000 metal2 +100800 75600 105000 84000 metal2 +100800 79800 105000 84000 metal2 +100800 79800 109200 84000 metal3 +105000 79800 109200 84000 metal2 105000 79800 109200 84000 metal1 ) _099_ @@ -792,9 +792,12 @@ _101_ _102_ ( 151200 84000 155400 88200 metal1 -151200 84000 155400 96600 metal2 -151200 92400 155400 96600 metal1 -151200 92400 159600 96600 metal1 +151200 84000 155400 92400 metal2 +151200 88200 155400 92400 metal2 +151200 88200 159600 92400 metal3 +155400 88200 159600 92400 metal2 +155400 88200 159600 96600 metal2 +155400 92400 159600 96600 metal1 ) _103_ ( @@ -823,10 +826,8 @@ _107_ ( 50400 79800 54600 84000 metal1 50400 79800 54600 88200 metal2 -50400 84000 54600 88200 metal2 -50400 84000 63000 88200 metal3 -58800 84000 63000 88200 metal2 -58800 84000 63000 88200 metal1 +50400 84000 54600 88200 metal1 +50400 84000 63000 88200 metal1 ) _108_ ( @@ -836,153 +837,153 @@ _108_ ) _109_ ( +79800 105000 84000 109200 metal1 79800 105000 84000 113400 metal2 79800 109200 84000 113400 metal1 -84000 100800 88200 109200 metal2 -84000 105000 88200 109200 metal2 -79800 105000 88200 109200 metal3 -79800 105000 84000 109200 metal2 -79800 105000 84000 109200 metal1 79800 100800 84000 105000 metal1 79800 100800 84000 105000 metal2 79800 100800 88200 105000 metal3 84000 100800 88200 105000 metal2 84000 100800 88200 105000 metal1 +79800 100800 84000 109200 metal2 ) _110_ ( -105000 134400 109200 138600 metal1 -105000 134400 109200 155400 metal2 -105000 151200 109200 155400 metal2 -105000 151200 155400 155400 metal3 -151200 151200 155400 155400 metal2 -151200 138600 155400 155400 metal2 -105000 126000 109200 138600 metal2 105000 126000 109200 130200 metal1 -151200 134400 155400 142800 metal2 +105000 126000 109200 134400 metal2 +105000 130200 109200 134400 metal2 +105000 130200 113400 134400 metal3 +109200 130200 113400 134400 metal2 +109200 130200 113400 138600 metal2 +147000 134400 155400 138600 metal1 +109200 134400 113400 180600 metal2 +109200 176400 113400 180600 metal2 +109200 176400 155400 180600 metal3 +151200 176400 155400 180600 metal2 +151200 134400 155400 180600 metal2 151200 134400 155400 138600 metal1 -147000 134400 151200 138600 metal1 -147000 134400 151200 142800 metal2 -147000 138600 151200 142800 metal2 -147000 138600 155400 142800 metal3 -151200 138600 155400 142800 metal2 -142800 130200 151200 134400 metal1 -147000 130200 151200 134400 metal1 +142800 130200 147000 134400 metal1 +142800 130200 147000 134400 metal2 +142800 130200 151200 134400 metal3 +147000 130200 151200 134400 metal2 147000 130200 151200 138600 metal2 +147000 134400 151200 138600 metal1 +105000 134400 109200 138600 metal1 +105000 134400 109200 138600 metal2 +105000 134400 113400 138600 metal3 +109200 134400 113400 138600 metal2 ) _111_ ( -67200 63000 71400 67200 metal1 -67200 63000 71400 67200 metal2 -67200 63000 79800 67200 metal3 -75600 63000 79800 67200 metal2 +67200 63000 79800 67200 metal1 75600 63000 79800 67200 metal1 -63000 63000 71400 67200 metal1 -75600 63000 84000 67200 metal1 -75600 63000 79800 71400 metal1 -79800 63000 84000 67200 metal1 -79800 63000 84000 71400 metal2 +75600 63000 79800 71400 metal2 +75600 67200 79800 71400 metal1 +75600 67200 84000 71400 metal1 +63000 63000 67200 67200 metal1 +63000 63000 67200 67200 metal2 +63000 63000 71400 67200 metal3 +67200 63000 71400 67200 metal2 +67200 63000 71400 67200 metal1 79800 67200 84000 71400 metal1 +79800 63000 84000 71400 metal2 +79800 63000 84000 67200 metal1 ) _112_ ( 100800 67200 105000 71400 metal1 -100800 63000 105000 71400 metal2 -100800 63000 105000 67200 metal2 -100800 63000 109200 67200 metal3 -105000 63000 109200 67200 metal2 -105000 63000 109200 67200 metal1 -105000 63000 117600 67200 metal3 -113400 63000 117600 67200 metal2 -113400 63000 117600 71400 metal2 -113400 67200 117600 71400 metal2 -113400 67200 121800 71400 metal3 +100800 67200 105000 71400 metal2 +100800 67200 109200 71400 metal3 +105000 67200 109200 71400 metal2 +105000 67200 121800 71400 metal3 117600 67200 121800 71400 metal2 117600 67200 121800 71400 metal1 -117600 63000 121800 71400 metal2 -117600 63000 121800 67200 metal2 -117600 63000 126000 67200 metal3 -121800 63000 126000 67200 metal2 +117600 67200 126000 71400 metal3 +121800 67200 126000 71400 metal2 +121800 63000 126000 71400 metal2 121800 63000 126000 67200 metal1 +105000 63000 109200 71400 metal2 +105000 63000 109200 67200 metal1 ) _113_ ( -109200 50400 113400 54600 metal1 -109200 46200 113400 54600 metal2 +105000 54600 109200 58800 metal1 +105000 54600 109200 58800 metal2 +105000 54600 117600 58800 metal3 +113400 54600 117600 58800 metal2 +113400 54600 117600 67200 metal2 +113400 63000 117600 67200 metal1 +113400 50400 117600 54600 metal2 +105000 50400 117600 54600 metal3 +105000 50400 109200 54600 metal2 +105000 50400 109200 54600 metal1 +113400 46200 117600 50400 metal2 +109200 46200 117600 50400 metal3 +109200 46200 113400 50400 metal2 109200 46200 113400 50400 metal1 -109200 50400 121800 54600 metal1 -117600 50400 121800 54600 metal1 -117600 46200 121800 54600 metal2 +113400 50400 117600 58800 metal2 +113400 46200 121800 50400 metal3 +117600 46200 121800 50400 metal2 117600 46200 121800 50400 metal1 -105000 54600 109200 58800 metal1 -105000 54600 109200 63000 metal2 -105000 58800 109200 63000 metal1 -105000 58800 113400 63000 metal1 -109200 58800 113400 63000 metal1 -109200 58800 113400 67200 metal2 -109200 63000 113400 67200 metal1 -109200 63000 117600 67200 metal1 -105000 50400 113400 54600 metal1 -105000 54600 113400 58800 metal1 -109200 54600 113400 58800 metal1 -109200 50400 113400 58800 metal2 +113400 46200 117600 54600 metal2 ) _114_ ( -100800 33600 105000 37800 metal2 -100800 33600 113400 37800 metal3 -109200 33600 113400 37800 metal2 -109200 33600 113400 37800 metal1 -109200 33600 113400 50400 metal2 -109200 46200 113400 50400 metal2 -100800 46200 113400 50400 metal3 -100800 46200 105000 50400 metal2 -100800 46200 105000 54600 metal2 -100800 50400 105000 54600 metal1 -92400 42000 96600 46200 metal1 92400 33600 96600 46200 metal2 -100800 33600 105000 42000 metal2 -100800 37800 105000 42000 metal1 -92400 29400 96600 37800 metal2 -92400 29400 96600 33600 metal2 -92400 29400 105000 33600 metal3 -100800 29400 105000 33600 metal2 -100800 29400 105000 37800 metal2 +92400 42000 96600 46200 metal1 +92400 42000 96600 50400 metal2 +92400 46200 96600 50400 metal1 +92400 46200 100800 50400 metal1 +96600 46200 100800 50400 metal1 +96600 46200 100800 54600 metal2 +96600 50400 100800 54600 metal1 +96600 50400 105000 54600 metal1 88200 33600 92400 37800 metal1 88200 33600 92400 37800 metal2 88200 33600 96600 37800 metal3 92400 33600 96600 37800 metal2 92400 33600 96600 37800 metal1 -) -_115_ -( -71400 37800 75600 42000 metal1 -71400 37800 75600 42000 metal2 -71400 37800 84000 42000 metal3 -79800 37800 84000 42000 metal2 -79800 37800 84000 42000 metal1 +100800 37800 105000 42000 metal1 +100800 33600 105000 42000 metal2 +100800 33600 105000 37800 metal2 +100800 33600 113400 37800 metal3 +109200 33600 113400 37800 metal2 +109200 33600 113400 37800 metal1 +100800 29400 105000 37800 metal2 +100800 29400 105000 33600 metal2 +92400 29400 105000 33600 metal3 +92400 29400 96600 33600 metal2 +92400 29400 96600 37800 metal2 +) +_115_ +( +79800 50400 84000 54600 metal1 79800 50400 84000 58800 metal2 79800 54600 84000 58800 metal1 +79800 37800 84000 54600 metal2 +71400 37800 75600 42000 metal1 +71400 37800 75600 42000 metal2 +71400 37800 84000 42000 metal3 +79800 37800 84000 42000 metal2 +79800 37800 84000 42000 metal1 67200 42000 71400 46200 metal1 67200 37800 71400 46200 metal2 67200 37800 71400 42000 metal1 67200 37800 75600 42000 metal1 -71400 37800 75600 54600 metal2 -71400 50400 75600 54600 metal2 -71400 50400 84000 54600 metal3 -79800 50400 84000 54600 metal2 -79800 50400 84000 54600 metal1 ) _116_ ( -100800 84000 105000 92400 metal2 -100800 88200 105000 92400 metal2 -100800 88200 113400 92400 metal3 -109200 88200 113400 92400 metal2 -109200 84000 113400 92400 metal2 -109200 84000 113400 88200 metal1 -92400 67200 96600 88200 metal2 +100800 84000 113400 88200 metal1 92400 67200 96600 71400 metal1 +92400 67200 96600 79800 metal2 +92400 75600 96600 79800 metal1 +92400 75600 100800 79800 metal1 +96600 75600 100800 79800 metal1 +96600 75600 100800 84000 metal2 +96600 79800 100800 84000 metal1 +92400 79800 100800 84000 metal1 +92400 79800 96600 84000 metal1 +92400 79800 96600 88200 metal2 92400 84000 96600 88200 metal1 92400 84000 96600 88200 metal2 92400 84000 105000 88200 metal3 @@ -991,296 +992,293 @@ _116_ ) _117_ ( -92400 113400 105000 117600 metal1 -92400 126000 96600 134400 metal2 -92400 130200 96600 134400 metal1 84000 113400 88200 117600 metal1 -84000 113400 88200 117600 metal2 -84000 113400 96600 117600 metal3 -92400 113400 96600 117600 metal2 -92400 113400 96600 117600 metal1 -92400 117600 96600 121800 metal1 -92400 113400 96600 121800 metal2 -92400 117600 96600 130200 metal2 +84000 109200 88200 117600 metal2 +84000 109200 88200 113400 metal2 +84000 109200 100800 113400 metal3 +96600 109200 100800 113400 metal2 +96600 109200 100800 117600 metal2 +96600 113400 100800 117600 metal1 +92400 130200 96600 134400 metal1 +92400 130200 96600 134400 metal2 +88200 130200 96600 134400 metal3 +88200 130200 92400 134400 metal2 +88200 126000 92400 134400 metal2 88200 126000 92400 130200 metal1 -88200 126000 92400 130200 metal2 -88200 126000 96600 130200 metal3 -92400 126000 96600 130200 metal2 +96600 113400 105000 117600 metal1 +88200 121800 92400 130200 metal2 +88200 121800 92400 126000 metal1 +88200 121800 96600 126000 metal1 +92400 121800 96600 126000 metal1 +92400 117600 96600 126000 metal2 +92400 117600 96600 121800 metal1 +92400 117600 100800 121800 metal1 +96600 117600 100800 121800 metal1 +96600 113400 100800 121800 metal2 ) _118_ ( +100800 138600 105000 151200 metal2 +100800 147000 105000 151200 metal2 +100800 147000 109200 151200 metal3 +105000 147000 109200 151200 metal2 +105000 147000 109200 151200 metal1 113400 121800 117600 126000 metal1 113400 121800 117600 126000 metal2 109200 121800 117600 126000 metal3 109200 121800 113400 126000 metal2 109200 121800 113400 134400 metal2 109200 130200 113400 134400 metal1 -100800 138600 105000 147000 metal2 -100800 142800 105000 147000 metal2 -100800 142800 109200 147000 metal3 -105000 142800 109200 147000 metal2 -105000 142800 109200 151200 metal2 -109200 130200 121800 134400 metal1 -109200 130200 113400 138600 metal1 -105000 147000 109200 151200 metal1 -105000 147000 109200 151200 metal2 105000 147000 117600 151200 metal3 113400 147000 117600 151200 metal2 113400 147000 117600 151200 metal1 +109200 130200 121800 134400 metal1 100800 138600 105000 142800 metal1 100800 138600 105000 142800 metal2 100800 138600 113400 142800 metal3 109200 138600 113400 142800 metal2 109200 134400 113400 142800 metal2 109200 134400 113400 138600 metal1 +109200 130200 113400 138600 metal2 ) _119_ ( -121800 130200 130200 134400 metal1 -126000 130200 130200 134400 metal1 -126000 130200 130200 138600 metal2 -126000 134400 130200 138600 metal1 +121800 130200 126000 142800 metal2 +121800 138600 126000 142800 metal2 +121800 138600 130200 142800 metal3 +126000 138600 130200 142800 metal2 +117600 117600 121800 121800 metal1 +117600 113400 121800 121800 metal2 +117600 113400 121800 117600 metal1 113400 121800 117600 126000 metal1 113400 121800 117600 126000 metal2 113400 121800 121800 126000 metal3 117600 121800 121800 126000 metal2 -117600 113400 121800 117600 metal1 -117600 113400 121800 121800 metal2 -117600 117600 121800 121800 metal1 -126000 134400 130200 147000 metal2 -117600 117600 121800 126000 metal2 -117600 142800 121800 147000 metal1 -117600 142800 121800 147000 metal2 -117600 142800 130200 147000 metal3 -126000 142800 130200 147000 metal2 -126000 142800 130200 147000 metal1 -126000 142800 134400 147000 metal1 +126000 138600 130200 147000 metal2 117600 121800 121800 134400 metal2 117600 130200 121800 134400 metal2 117600 130200 126000 134400 metal3 121800 130200 126000 134400 metal2 121800 130200 126000 134400 metal1 +117600 142800 121800 147000 metal1 +117600 142800 121800 147000 metal2 +117600 142800 130200 147000 metal3 +126000 142800 130200 147000 metal2 +126000 142800 134400 147000 metal3 +130200 142800 134400 147000 metal2 +130200 142800 134400 147000 metal1 +117600 117600 121800 126000 metal2 +126000 134400 130200 142800 metal2 +126000 134400 130200 138600 metal1 ) _120_ ( -147000 88200 151200 92400 metal2 -147000 88200 163800 92400 metal3 -159600 88200 163800 92400 metal2 -142800 84000 147000 88200 metal1 -142800 84000 147000 92400 metal2 -142800 88200 147000 92400 metal2 -142800 88200 151200 92400 metal3 -155400 79800 159600 84000 metal1 +159600 79800 163800 88200 metal2 +159600 79800 163800 84000 metal2 +155400 79800 163800 84000 metal3 155400 79800 159600 84000 metal2 -155400 79800 168000 84000 metal3 -163800 79800 168000 84000 metal2 -163800 79800 168000 88200 metal2 -163800 84000 168000 88200 metal2 -159600 84000 168000 88200 metal3 +155400 79800 159600 84000 metal1 +142800 84000 147000 88200 metal1 +142800 84000 147000 88200 metal2 +142800 84000 151200 88200 metal3 +147000 84000 151200 88200 metal2 +147000 84000 163800 88200 metal3 159600 84000 163800 88200 metal2 -159600 84000 163800 92400 metal2 147000 92400 151200 96600 metal1 -147000 88200 151200 96600 metal2 +147000 84000 151200 96600 metal2 142800 79800 147000 88200 metal2 142800 79800 147000 84000 metal1 -155400 96600 159600 100800 metal1 -155400 92400 159600 100800 metal2 +159600 84000 168000 88200 metal3 +163800 84000 168000 88200 metal2 +163800 84000 168000 96600 metal2 +163800 92400 168000 96600 metal2 +155400 92400 168000 96600 metal3 155400 92400 159600 96600 metal2 -155400 92400 163800 96600 metal3 -159600 92400 163800 96600 metal2 -159600 88200 163800 96600 metal2 +155400 92400 159600 100800 metal2 +155400 96600 159600 100800 metal1 ) _121_ ( -147000 113400 151200 117600 metal1 -147000 113400 151200 117600 metal2 -142800 113400 151200 117600 metal3 -142800 113400 147000 117600 metal2 -142800 105000 147000 117600 metal2 -142800 105000 147000 109200 metal2 -142800 105000 151200 109200 metal3 -147000 105000 151200 109200 metal2 -147000 105000 151200 109200 metal1 -147000 100800 151200 109200 metal2 147000 100800 151200 105000 metal1 147000 100800 151200 105000 metal2 147000 100800 159600 105000 metal3 155400 100800 159600 105000 metal2 155400 96600 159600 100800 metal1 155400 96600 159600 105000 metal2 +147000 100800 151200 109200 metal2 +147000 105000 151200 109200 metal1 155400 100800 159600 117600 metal2 155400 113400 159600 117600 metal1 +147000 113400 151200 117600 metal1 +147000 105000 151200 117600 metal2 ) _122_ ( -130200 71400 134400 88200 metal2 +130200 88200 134400 92400 metal1 +130200 88200 134400 92400 metal2 +130200 88200 138600 92400 metal3 +134400 88200 138600 92400 metal2 +134400 71400 138600 92400 metal2 117600 88200 121800 96600 metal2 117600 92400 121800 96600 metal1 +117600 88200 121800 92400 metal1 +117600 88200 121800 92400 metal2 +117600 88200 134400 92400 metal3 130200 71400 134400 75600 metal1 130200 71400 134400 75600 metal2 130200 71400 138600 75600 metal3 134400 71400 138600 75600 metal2 134400 71400 138600 75600 metal1 -117600 88200 121800 92400 metal1 -117600 88200 121800 92400 metal2 -117600 88200 130200 92400 metal3 -126000 88200 130200 92400 metal2 -126000 84000 130200 92400 metal2 -126000 84000 130200 88200 metal2 -126000 84000 134400 88200 metal3 -130200 84000 134400 88200 metal2 -130200 84000 134400 92400 metal2 -130200 88200 134400 92400 metal1 ) _123_ ( -126000 105000 134400 109200 metal1 130200 105000 134400 109200 metal1 -130200 105000 134400 121800 metal2 +130200 100800 134400 109200 metal2 +130200 100800 134400 105000 metal1 130200 117600 134400 121800 metal2 130200 117600 142800 121800 metal3 138600 117600 142800 121800 metal2 138600 117600 142800 121800 metal1 -130200 100800 134400 109200 metal2 -130200 100800 134400 105000 metal1 -138600 117600 142800 126000 metal2 +130200 105000 138600 109200 metal1 138600 121800 142800 126000 metal1 +138600 117600 142800 126000 metal2 +130200 105000 134400 121800 metal2 126000 117600 130200 121800 metal1 126000 117600 130200 121800 metal2 126000 117600 134400 121800 metal3 -130200 105000 138600 109200 metal1 +126000 105000 134400 109200 metal1 ) _124_ ( -67200 92400 71400 96600 metal1 -67200 88200 71400 96600 metal2 -67200 88200 71400 92400 metal1 -58800 96600 63000 100800 metal2 -58800 96600 71400 100800 metal3 -67200 96600 71400 100800 metal2 -67200 92400 71400 100800 metal2 54600 100800 58800 105000 metal1 -54600 96600 58800 105000 metal2 -54600 96600 58800 100800 metal2 -54600 96600 63000 100800 metal3 -58800 92400 63000 100800 metal2 +54600 100800 58800 105000 metal2 +54600 100800 63000 105000 metal3 +58800 100800 63000 105000 metal2 +58800 92400 63000 105000 metal2 58800 92400 63000 96600 metal1 +58800 88200 63000 96600 metal2 +58800 88200 63000 92400 metal2 +58800 88200 71400 92400 metal3 +67200 88200 71400 92400 metal2 +67200 88200 71400 92400 metal1 +67200 88200 71400 96600 metal2 +67200 92400 71400 96600 metal1 ) _125_ ( -58800 75600 63000 79800 metal1 +63000 71400 67200 75600 metal1 +63000 71400 67200 79800 metal2 +54600 79800 58800 84000 metal1 +54600 75600 58800 84000 metal2 +54600 75600 58800 79800 metal2 +54600 75600 63000 79800 metal3 58800 75600 63000 79800 metal2 +58800 75600 63000 79800 metal1 58800 75600 67200 79800 metal3 63000 75600 67200 79800 metal2 63000 75600 67200 79800 metal1 -63000 71400 67200 75600 metal1 -63000 71400 67200 79800 metal2 +63000 75600 67200 84000 metal2 63000 79800 67200 84000 metal1 -63000 79800 67200 84000 metal2 -58800 79800 67200 84000 metal3 -58800 79800 63000 84000 metal2 -54600 79800 58800 84000 metal1 -54600 79800 58800 84000 metal2 -54600 79800 63000 84000 metal3 -58800 75600 63000 84000 metal2 ) _126_ ( +105000 121800 109200 126000 metal1 105000 117600 109200 126000 metal2 105000 117600 109200 121800 metal1 -105000 121800 109200 126000 metal1 -105000 121800 109200 126000 metal2 -105000 121800 113400 126000 metal3 -109200 121800 113400 126000 metal2 -109200 121800 113400 134400 metal2 -109200 130200 113400 134400 metal1 -109200 130200 113400 134400 metal2 -109200 130200 142800 134400 metal3 -138600 130200 142800 134400 metal2 -138600 130200 142800 138600 metal2 -138600 134400 142800 138600 metal1 105000 134400 109200 138600 metal1 -105000 130200 109200 138600 metal2 -105000 130200 109200 134400 metal1 -105000 130200 113400 134400 metal1 +105000 121800 109200 138600 metal2 +105000 134400 109200 159600 metal2 +105000 155400 109200 159600 metal2 +105000 155400 134400 159600 metal3 +130200 155400 134400 159600 metal2 +130200 151200 134400 159600 metal2 +130200 151200 134400 155400 metal2 +130200 151200 142800 155400 metal3 +138600 151200 142800 155400 metal2 +138600 134400 142800 155400 metal2 +138600 134400 142800 138600 metal1 ) _127_ ( -75600 67200 79800 71400 metal1 75600 67200 79800 75600 metal2 75600 71400 79800 75600 metal1 +79800 63000 84000 71400 metal2 +79800 63000 84000 67200 metal1 75600 63000 79800 71400 metal2 -79800 63000 88200 67200 metal1 -84000 63000 88200 67200 metal1 -84000 63000 88200 71400 metal2 -84000 67200 88200 71400 metal1 75600 63000 79800 67200 metal1 -75600 63000 79800 67200 metal2 -75600 63000 84000 67200 metal3 -79800 63000 84000 67200 metal2 -79800 63000 84000 67200 metal1 +79800 67200 84000 71400 metal2 +75600 67200 84000 71400 metal3 +75600 67200 79800 71400 metal2 +75600 67200 79800 71400 metal1 +79800 67200 88200 71400 metal3 +84000 67200 88200 71400 metal2 +84000 67200 88200 71400 metal1 ) _128_ ( +75600 71400 92400 75600 metal1 105000 67200 109200 71400 metal1 105000 67200 109200 75600 metal2 -105000 71400 109200 75600 metal1 -105000 71400 109200 75600 metal2 -92400 71400 109200 75600 metal3 -92400 71400 96600 75600 metal2 92400 71400 96600 75600 metal1 +92400 71400 96600 75600 metal2 +92400 71400 109200 75600 metal3 +105000 71400 109200 75600 metal2 +105000 71400 109200 75600 metal1 88200 71400 92400 75600 metal1 88200 67200 92400 75600 metal2 88200 67200 92400 71400 metal1 100800 67200 109200 71400 metal1 -75600 71400 92400 75600 metal1 88200 71400 96600 75600 metal1 105000 71400 113400 75600 metal1 ) _129_ ( -100800 50400 105000 54600 metal1 -100800 50400 105000 54600 metal2 -100800 50400 113400 54600 metal3 -109200 50400 113400 54600 metal2 109200 50400 113400 58800 metal2 -105000 54600 109200 58800 metal1 -105000 54600 109200 58800 metal2 -105000 54600 113400 58800 metal3 +109200 50400 113400 54600 metal1 +100800 50400 113400 54600 metal1 +109200 54600 113400 58800 metal1 109200 54600 113400 58800 metal2 -100800 50400 105000 58800 metal2 -109200 54600 113400 63000 metal2 -109200 58800 113400 63000 metal1 109200 54600 121800 58800 metal3 117600 54600 121800 58800 metal2 117600 54600 121800 58800 metal1 +105000 54600 113400 58800 metal1 92400 63000 96600 67200 metal1 92400 54600 96600 67200 metal2 92400 54600 96600 58800 metal2 92400 54600 105000 58800 metal3 100800 54600 105000 58800 metal2 100800 54600 105000 58800 metal1 +109200 54600 113400 63000 metal2 +109200 58800 113400 63000 metal1 +100800 50400 105000 58800 metal2 +100800 50400 105000 54600 metal1 ) _130_ ( 92400 63000 96600 67200 metal1 -92400 58800 96600 67200 metal2 -92400 58800 96600 63000 metal1 -92400 58800 105000 63000 metal1 +92400 63000 96600 67200 metal2 +92400 63000 105000 67200 metal3 +100800 63000 105000 67200 metal2 +100800 58800 105000 67200 metal2 +100800 58800 105000 63000 metal1 105000 33600 109200 42000 metal2 105000 33600 109200 37800 metal1 100800 54600 105000 58800 metal1 100800 54600 105000 63000 metal2 -100800 58800 105000 63000 metal1 -105000 37800 113400 42000 metal1 -109200 37800 113400 42000 metal1 -109200 37800 113400 63000 metal2 -109200 58800 113400 63000 metal2 -105000 58800 113400 63000 metal3 -105000 58800 109200 63000 metal2 -105000 58800 109200 63000 metal1 105000 37800 109200 42000 metal1 105000 37800 109200 42000 metal2 +105000 37800 130200 42000 metal3 +126000 37800 130200 42000 metal2 +126000 37800 130200 54600 metal2 +126000 50400 130200 54600 metal2 +117600 50400 130200 54600 metal3 +117600 50400 121800 54600 metal2 +117600 50400 121800 58800 metal2 +117600 54600 121800 58800 metal1 +105000 54600 121800 58800 metal1 +105000 54600 109200 58800 metal1 +105000 54600 109200 63000 metal2 +105000 58800 109200 63000 metal1 100800 37800 109200 42000 metal3 100800 37800 105000 42000 metal2 100800 37800 105000 42000 metal1 @@ -1288,10 +1286,10 @@ _130_ ) _131_ ( -88200 63000 92400 67200 metal1 -88200 63000 92400 67200 metal2 -88200 63000 100800 67200 metal3 -96600 63000 100800 67200 metal2 +88200 58800 92400 63000 metal2 +88200 58800 100800 63000 metal3 +96600 58800 100800 63000 metal2 +96600 58800 100800 67200 metal2 96600 63000 100800 67200 metal1 75600 50400 79800 54600 metal1 75600 50400 79800 58800 metal2 @@ -1300,17 +1298,19 @@ _131_ 79800 54600 84000 58800 metal2 79800 54600 84000 58800 metal1 84000 58800 88200 63000 metal1 -84000 58800 88200 67200 metal2 -84000 63000 88200 67200 metal2 -84000 63000 92400 67200 metal3 -79800 54600 88200 58800 metal3 -84000 54600 88200 58800 metal2 +84000 58800 88200 63000 metal2 +84000 58800 92400 63000 metal3 +79800 54600 88200 58800 metal1 +84000 54600 88200 58800 metal1 84000 54600 88200 63000 metal2 75600 46200 79800 54600 metal2 75600 46200 79800 50400 metal1 +88200 58800 92400 67200 metal2 +88200 63000 92400 67200 metal1 ) _132_ ( +100800 67200 105000 71400 metal1 100800 63000 105000 71400 metal2 100800 63000 105000 67200 metal2 96600 63000 105000 67200 metal3 @@ -1319,11 +1319,7 @@ _132_ 100800 79800 105000 84000 metal1 100800 79800 105000 88200 metal2 100800 84000 105000 88200 metal1 -100800 67200 105000 71400 metal1 -100800 67200 105000 71400 metal2 -100800 67200 109200 71400 metal3 -105000 67200 109200 71400 metal2 -105000 67200 109200 75600 metal2 +100800 67200 105000 75600 metal2 100800 71400 105000 84000 metal2 100800 71400 105000 75600 metal2 100800 71400 109200 75600 metal3 @@ -1338,47 +1334,47 @@ _133_ 96600 117600 109200 121800 metal3 105000 117600 109200 121800 metal2 105000 117600 109200 121800 metal1 -88200 117600 92400 126000 metal2 -88200 121800 92400 126000 metal1 -92400 113400 96600 117600 metal1 92400 113400 96600 121800 metal2 +92400 113400 96600 117600 metal1 92400 117600 96600 121800 metal2 92400 117600 100800 121800 metal3 +88200 121800 92400 126000 metal1 +88200 121800 92400 126000 metal2 +88200 121800 96600 126000 metal3 +92400 121800 96600 126000 metal2 +92400 117600 96600 126000 metal2 88200 117600 92400 121800 metal1 88200 117600 92400 121800 metal2 88200 117600 96600 121800 metal3 ) _134_ ( -109200 134400 113400 142800 metal2 -113400 142800 117600 147000 metal1 -113400 138600 117600 147000 metal2 -113400 138600 117600 142800 metal2 -109200 138600 117600 142800 metal3 -109200 138600 113400 142800 metal2 -109200 138600 113400 142800 metal1 109200 134400 113400 138600 metal1 109200 134400 113400 138600 metal2 109200 134400 117600 138600 metal3 113400 134400 117600 138600 metal2 113400 130200 117600 138600 metal2 113400 130200 117600 134400 metal1 +109200 138600 113400 142800 metal1 +109200 134400 113400 142800 metal2 +109200 138600 113400 147000 metal2 +109200 142800 113400 147000 metal1 +109200 142800 117600 147000 metal1 ) _135_ ( +121800 130200 126000 134400 metal2 +121800 130200 130200 134400 metal3 +126000 130200 130200 134400 metal2 +126000 130200 130200 134400 metal1 +121800 126000 126000 134400 metal2 121800 126000 126000 130200 metal1 -121800 126000 126000 130200 metal2 -121800 126000 130200 130200 metal3 -126000 126000 130200 130200 metal2 -126000 126000 130200 134400 metal2 -117600 138600 126000 142800 metal1 -121800 138600 126000 142800 metal1 -121800 134400 126000 142800 metal2 +117600 138600 121800 142800 metal1 +117600 134400 121800 142800 metal2 +117600 134400 121800 138600 metal2 +117600 134400 126000 138600 metal3 +121800 134400 126000 138600 metal2 121800 134400 126000 138600 metal1 -126000 130200 130200 134400 metal1 -126000 130200 130200 134400 metal2 -121800 130200 130200 134400 metal3 -121800 130200 126000 134400 metal2 121800 130200 126000 138600 metal2 ) _136_ @@ -1389,37 +1385,36 @@ _136_ 134400 84000 147000 88200 metal3 142800 84000 147000 88200 metal2 142800 84000 147000 92400 metal2 +151200 84000 159600 88200 metal1 +151200 84000 155400 88200 metal1 +151200 84000 155400 92400 metal2 142800 88200 147000 92400 metal1 -151200 92400 155400 96600 metal1 -151200 84000 155400 96600 metal2 -151200 84000 155400 88200 metal2 -151200 84000 159600 88200 metal3 -155400 84000 159600 88200 metal2 -155400 84000 159600 88200 metal1 -147000 88200 151200 92400 metal1 -147000 84000 151200 92400 metal2 -147000 84000 151200 88200 metal2 -147000 84000 155400 88200 metal3 +142800 88200 147000 92400 metal2 +142800 88200 151200 92400 metal3 +147000 88200 151200 92400 metal2 147000 96600 151200 100800 metal1 147000 88200 151200 100800 metal2 -142800 88200 151200 92400 metal1 +147000 88200 155400 92400 metal3 +151200 88200 155400 92400 metal2 +151200 88200 155400 96600 metal2 +151200 92400 155400 96600 metal1 ) _137_ ( -151200 100800 155400 109200 metal2 -151200 100800 155400 105000 metal1 +134400 100800 138600 105000 metal1 +134400 100800 138600 109200 metal2 +134400 105000 138600 109200 metal2 +134400 105000 151200 109200 metal3 +147000 105000 151200 109200 metal2 +147000 105000 151200 109200 metal1 +147000 105000 155400 109200 metal3 151200 105000 155400 109200 metal2 151200 105000 159600 109200 metal3 155400 105000 159600 109200 metal2 155400 105000 159600 113400 metal2 155400 109200 159600 113400 metal1 -147000 105000 151200 109200 metal1 -147000 105000 151200 109200 metal2 -147000 105000 155400 109200 metal3 -134400 105000 151200 109200 metal1 -134400 105000 138600 109200 metal1 -134400 100800 138600 109200 metal2 -134400 100800 138600 105000 metal1 +151200 100800 155400 105000 metal1 +151200 100800 155400 109200 metal2 142800 100800 155400 105000 metal1 ) _138_ @@ -1433,157 +1428,193 @@ _138_ 121800 84000 134400 88200 metal3 130200 84000 134400 88200 metal2 130200 84000 134400 92400 metal2 -117600 96600 126000 100800 metal1 130200 88200 134400 92400 metal1 -130200 88200 134400 92400 metal2 -130200 88200 142800 92400 metal3 -138600 88200 142800 92400 metal2 -138600 88200 142800 105000 metal2 +117600 96600 126000 100800 metal1 +130200 88200 138600 92400 metal1 +134400 88200 138600 92400 metal1 +134400 88200 138600 96600 metal2 +134400 92400 138600 96600 metal2 +134400 92400 142800 96600 metal3 +138600 92400 142800 96600 metal2 +138600 92400 142800 105000 metal2 138600 100800 142800 105000 metal1 ) _139_ ( -138600 100800 142800 105000 metal1 -138600 100800 142800 109200 metal2 +138600 117600 142800 121800 metal1 +138600 109200 142800 121800 metal2 +130200 109200 134400 113400 metal1 +130200 109200 134400 113400 metal2 +130200 109200 138600 113400 metal3 +134400 109200 138600 113400 metal2 +134400 105000 138600 113400 metal2 +134400 105000 138600 109200 metal1 +134400 105000 142800 109200 metal1 138600 105000 142800 109200 metal1 +138600 105000 142800 113400 metal2 138600 109200 142800 113400 metal2 138600 109200 147000 113400 metal3 142800 109200 147000 113400 metal2 142800 109200 147000 113400 metal1 -130200 109200 134400 113400 metal1 -130200 109200 134400 117600 metal2 -130200 113400 134400 117600 metal2 -130200 113400 138600 117600 metal3 -134400 113400 138600 117600 metal2 -134400 109200 138600 117600 metal2 -134400 109200 138600 113400 metal2 -134400 109200 142800 113400 metal3 -134400 105000 142800 109200 metal1 -138600 117600 142800 121800 metal1 -138600 109200 142800 121800 metal2 -138600 105000 142800 113400 metal2 +138600 100800 142800 105000 metal1 +138600 100800 142800 109200 metal2 ) _140_ ( -54600 96600 71400 100800 metal1 +67200 92400 71400 96600 metal1 +67200 92400 71400 100800 metal2 +67200 96600 71400 100800 metal1 67200 96600 75600 100800 metal1 -67200 92400 71400 100800 metal1 +67200 71400 79800 75600 metal1 67200 84000 71400 88200 metal1 67200 71400 71400 88200 metal2 +54600 96600 58800 100800 metal1 +54600 96600 58800 100800 metal2 +46200 96600 58800 100800 metal3 +46200 96600 50400 100800 metal2 +46200 75600 50400 100800 metal2 +46200 75600 50400 79800 metal1 +46200 75600 54600 79800 metal1 +50400 75600 54600 79800 metal1 +50400 71400 54600 79800 metal2 +50400 71400 54600 75600 metal2 +50400 71400 71400 75600 metal3 67200 71400 71400 75600 metal2 -67200 71400 79800 75600 metal3 -75600 71400 79800 75600 metal2 -75600 71400 79800 75600 metal1 +67200 71400 71400 75600 metal1 67200 84000 75600 88200 metal1 67200 84000 71400 96600 metal2 -67200 92400 71400 96600 metal1 ) _141_ ( -63000 75600 71400 79800 metal1 -63000 75600 67200 79800 metal1 -63000 75600 67200 84000 metal2 +67200 75600 71400 79800 metal1 +67200 71400 71400 79800 metal2 +67200 71400 71400 75600 metal2 +67200 71400 79800 75600 metal3 +75600 71400 79800 75600 metal2 +75600 71400 79800 75600 metal1 +58800 79800 63000 84000 metal2 +58800 79800 67200 84000 metal3 +63000 79800 67200 84000 metal2 63000 79800 67200 84000 metal1 -58800 79800 63000 84000 metal1 -58800 79800 67200 84000 metal2 -71400 79800 75600 84000 metal1 -71400 75600 75600 84000 metal2 -67200 75600 75600 79800 metal1 +67200 79800 75600 84000 metal1 +67200 75600 71400 84000 metal2 58800 79800 63000 88200 metal2 58800 84000 63000 88200 metal1 -71400 75600 75600 79800 metal1 -71400 75600 75600 79800 metal2 -71400 71400 75600 79800 metal3 -71400 71400 79800 75600 metal3 -75600 71400 79800 75600 metal2 -75600 71400 79800 75600 metal1 -54600 79800 63000 84000 metal1 +67200 79800 71400 84000 metal1 +67200 79800 71400 84000 metal2 +63000 79800 71400 84000 metal3 +54600 79800 58800 84000 metal1 +54600 79800 58800 84000 metal2 +54600 79800 63000 84000 metal3 ) _142_ ( -54600 50400 58800 54600 metal2 -54600 50400 67200 54600 metal3 -63000 50400 67200 54600 metal2 -63000 50400 67200 54600 metal1 -54600 50400 58800 63000 metal2 -54600 58800 58800 63000 metal2 -42000 58800 58800 63000 metal3 -42000 58800 46200 63000 metal2 -42000 58800 46200 113400 metal2 -42000 109200 46200 113400 metal1 -42000 109200 67200 113400 metal1 -67200 105000 71400 109200 metal2 -67200 105000 84000 109200 metal3 -79800 105000 84000 109200 metal2 -79800 105000 84000 109200 metal1 -67200 84000 71400 109200 metal2 -67200 84000 71400 88200 metal2 -63000 84000 71400 88200 metal3 -63000 84000 67200 88200 metal2 -63000 84000 67200 88200 metal1 +50400 50400 54600 54600 metal1 +50400 37800 54600 54600 metal2 +50400 37800 54600 42000 metal2 +50400 37800 58800 42000 metal3 +54600 37800 58800 42000 metal2 +54600 33600 58800 42000 metal2 +54600 33600 58800 37800 metal1 +54600 33600 67200 37800 metal1 +63000 33600 67200 37800 metal1 +63000 25200 67200 37800 metal2 +63000 25200 67200 29400 metal2 +63000 25200 84000 29400 metal3 +79800 25200 84000 29400 metal2 +79800 25200 84000 42000 metal2 +79800 37800 84000 42000 metal1 +79800 37800 88200 42000 metal1 79800 105000 92400 109200 metal1 -63000 109200 67200 113400 metal1 -63000 105000 67200 113400 metal2 -63000 105000 67200 109200 metal2 -63000 105000 71400 109200 metal3 +50400 71400 54600 75600 metal2 +50400 71400 58800 75600 metal3 +54600 71400 58800 75600 metal2 +54600 71400 58800 79800 metal2 +54600 75600 58800 79800 metal1 +54600 75600 63000 79800 metal1 +58800 75600 63000 79800 metal1 +58800 75600 63000 84000 metal2 +58800 79800 63000 84000 metal1 +58800 79800 67200 84000 metal1 +63000 79800 67200 84000 metal1 +63000 79800 67200 88200 metal2 +63000 84000 67200 88200 metal1 +37800 71400 54600 75600 metal3 +37800 71400 42000 75600 metal2 +37800 71400 42000 79800 metal2 +33600 75600 42000 79800 metal2 +33600 75600 37800 88200 metal2 +33600 84000 37800 88200 metal2 +29400 84000 37800 88200 metal3 +29400 84000 33600 88200 metal2 +29400 84000 33600 100800 metal2 +29400 96600 33600 100800 metal2 +29400 96600 37800 100800 metal3 +33600 96600 37800 100800 metal2 +33600 96600 37800 117600 metal2 +33600 113400 37800 117600 metal2 +33600 113400 50400 117600 metal3 +46200 113400 50400 117600 metal2 +46200 113400 50400 121800 metal2 +46200 117600 50400 121800 metal2 +46200 117600 54600 121800 metal3 +50400 117600 54600 121800 metal2 +50400 113400 54600 121800 metal2 +50400 113400 54600 117600 metal2 +50400 113400 58800 117600 metal3 +54600 113400 58800 117600 metal2 +54600 113400 63000 117600 metal2 +58800 113400 63000 117600 metal1 +58800 109200 63000 117600 metal1 +58800 109200 67200 113400 metal1 +50400 50400 54600 75600 metal2 +63000 109200 79800 113400 metal1 +75600 109200 79800 113400 metal1 +75600 105000 79800 113400 metal2 +75600 105000 79800 109200 metal1 +75600 105000 84000 109200 metal1 +84000 37800 88200 42000 metal1 84000 37800 88200 46200 metal2 84000 42000 88200 46200 metal1 -54600 42000 58800 54600 metal2 -54600 42000 58800 46200 metal2 -54600 42000 63000 46200 metal3 -58800 42000 63000 46200 metal2 -58800 33600 63000 46200 metal2 -58800 33600 63000 37800 metal2 -58800 33600 67200 37800 metal3 -63000 33600 67200 37800 metal2 -63000 21000 67200 37800 metal2 -63000 21000 67200 25200 metal2 -63000 21000 75600 25200 metal3 -71400 21000 75600 25200 metal2 -71400 21000 75600 37800 metal2 -71400 33600 75600 37800 metal2 -71400 33600 84000 37800 metal3 -79800 33600 84000 37800 metal2 -79800 33600 84000 42000 metal2 -79800 37800 84000 42000 metal2 -79800 37800 88200 42000 metal3 -84000 37800 88200 42000 metal2 -84000 37800 88200 42000 metal1 +50400 50400 67200 54600 metal1 +79800 105000 84000 109200 metal1 79800 96600 84000 109200 metal2 79800 96600 84000 100800 metal1 ) _143_ ( 113400 117600 117600 121800 metal1 -113400 117600 117600 121800 metal2 -113400 117600 138600 121800 metal3 -134400 117600 138600 121800 metal2 -134400 113400 138600 121800 metal2 -134400 113400 138600 117600 metal1 -134400 113400 142800 117600 metal1 -138600 113400 142800 117600 metal1 -138600 100800 142800 117600 metal2 -138600 100800 142800 105000 metal1 +113400 113400 117600 121800 metal2 +113400 113400 117600 117600 metal1 +113400 113400 134400 117600 metal1 +130200 113400 134400 117600 metal1 +130200 105000 134400 117600 metal2 +130200 105000 134400 109200 metal1 +130200 105000 138600 109200 metal1 +134400 105000 138600 109200 metal1 +134400 100800 138600 109200 metal2 +134400 100800 138600 105000 metal1 +134400 100800 142800 105000 metal1 ) _144_ ( +117600 117600 121800 121800 metal1 +117600 117600 121800 121800 metal2 +117600 117600 126000 121800 metal3 +121800 117600 126000 121800 metal2 +121800 117600 126000 126000 metal2 +117600 113400 121800 117600 metal1 +117600 113400 121800 117600 metal2 +117600 113400 126000 117600 metal3 +121800 113400 126000 117600 metal2 +121800 113400 126000 121800 metal2 +113400 121800 126000 126000 metal1 121800 121800 126000 126000 metal1 121800 121800 126000 126000 metal2 121800 121800 130200 126000 metal3 126000 121800 130200 126000 metal2 126000 121800 130200 134400 metal2 126000 130200 130200 134400 metal1 -121800 113400 126000 121800 metal2 -121800 113400 126000 117600 metal2 -117600 113400 126000 117600 metal3 -117600 113400 121800 117600 metal2 -117600 113400 121800 117600 metal1 -121800 117600 126000 126000 metal2 -113400 121800 126000 126000 metal1 -117600 117600 121800 121800 metal1 -117600 117600 121800 121800 metal2 -117600 117600 126000 121800 metal3 -121800 117600 126000 121800 metal2 113400 117600 117600 121800 metal1 113400 117600 117600 121800 metal2 113400 117600 121800 121800 metal3 @@ -1616,7 +1647,9 @@ _147_ 79800 117600 117600 121800 metal3 113400 117600 117600 121800 metal2 113400 117600 117600 121800 metal1 -75600 117600 84000 121800 metal1 +75600 117600 79800 121800 metal1 +75600 117600 79800 121800 metal2 +75600 117600 84000 121800 metal3 ) _148_ ( @@ -1629,55 +1662,29 @@ _148_ ) _149_ ( -79800 67200 84000 71400 metal1 -79800 67200 84000 71400 metal2 -79800 67200 88200 71400 metal3 -84000 67200 88200 71400 metal2 +79800 67200 88200 71400 metal1 +84000 67200 88200 71400 metal1 84000 63000 88200 71400 metal2 -84000 63000 88200 67200 metal1 -84000 63000 100800 67200 metal1 +84000 63000 88200 67200 metal2 +84000 63000 100800 67200 metal3 +96600 63000 100800 67200 metal2 +96600 63000 100800 67200 metal1 ) _150_ ( +79800 113400 84000 117600 metal2 +79800 113400 88200 117600 metal3 +84000 113400 88200 117600 metal2 +84000 71400 88200 117600 metal2 +84000 71400 88200 75600 metal1 +84000 67200 88200 75600 metal1 +79800 67200 88200 71400 metal1 +75600 117600 79800 121800 metal1 +75600 113400 79800 121800 metal2 +75600 113400 79800 117600 metal2 +75600 113400 84000 117600 metal3 79800 117600 84000 121800 metal1 -79800 117600 84000 130200 metal2 -79800 126000 84000 130200 metal2 -75600 126000 84000 130200 metal3 -75600 126000 79800 130200 metal2 -75600 126000 79800 134400 metal2 -75600 130200 79800 134400 metal1 -67200 130200 79800 134400 metal1 -67200 130200 71400 134400 metal1 -67200 130200 71400 138600 metal2 -67200 134400 71400 138600 metal2 -58800 134400 71400 138600 metal3 -58800 134400 63000 138600 metal2 -58800 130200 63000 138600 metal2 -58800 130200 63000 134400 metal2 -46200 130200 63000 134400 metal3 -46200 130200 50400 134400 metal2 -46200 113400 50400 134400 metal2 -46200 113400 50400 117600 metal2 -37800 113400 50400 117600 metal3 -37800 113400 42000 117600 metal2 -37800 96600 42000 117600 metal2 -37800 96600 42000 100800 metal2 -33600 96600 42000 100800 metal3 -33600 96600 37800 100800 metal2 -33600 84000 37800 100800 metal2 -33600 84000 37800 88200 metal2 -29400 84000 37800 88200 metal3 -29400 84000 33600 88200 metal2 -29400 63000 33600 88200 metal2 -29400 63000 33600 67200 metal2 -29400 63000 67200 67200 metal3 -63000 63000 67200 67200 metal2 -63000 63000 67200 71400 metal2 -63000 67200 67200 71400 metal2 -63000 67200 84000 71400 metal3 -79800 67200 84000 71400 metal2 -79800 67200 84000 71400 metal1 -75600 117600 84000 121800 metal1 +79800 113400 84000 121800 metal2 ) _151_ ( @@ -1746,265 +1753,237 @@ _157_ ) _158_ ( -67200 105000 84000 109200 metal1 +84000 96600 88200 105000 metal2 +84000 100800 88200 105000 metal2 +84000 100800 92400 105000 metal3 +88200 100800 92400 105000 metal2 +88200 100800 92400 113400 metal2 +92400 113400 96600 117600 metal1 +92400 113400 96600 117600 metal2 +88200 113400 96600 117600 metal3 +88200 113400 92400 117600 metal2 +88200 109200 92400 117600 metal2 +63000 84000 67200 88200 metal1 +63000 84000 67200 92400 metal2 +88200 109200 92400 113400 metal2 +84000 109200 92400 113400 metal3 +84000 109200 88200 113400 metal2 +84000 109200 88200 113400 metal1 +63000 88200 67200 96600 metal2 +63000 92400 67200 96600 metal2 +63000 92400 67200 100800 metal3 +63000 96600 71400 100800 metal3 +67200 96600 71400 100800 metal2 +67200 96600 71400 109200 metal2 +67200 105000 71400 109200 metal1 +63000 50400 67200 54600 metal1 +63000 50400 67200 54600 metal2 +63000 50400 84000 54600 metal3 +79800 50400 84000 54600 metal2 +79800 42000 84000 54600 metal2 +79800 42000 84000 46200 metal1 +79800 42000 84000 46200 metal2 +79800 42000 88200 46200 metal3 +84000 42000 88200 46200 metal2 +84000 37800 88200 46200 metal2 +84000 37800 88200 42000 metal1 +67200 105000 71400 113400 metal2 +67200 109200 71400 113400 metal2 +67200 109200 88200 113400 metal3 +46200 50400 67200 54600 metal3 +46200 50400 50400 54600 metal2 +46200 50400 50400 58800 metal2 +46200 54600 50400 58800 metal2 +42000 54600 50400 58800 metal3 +42000 54600 46200 58800 metal2 +42000 54600 46200 79800 metal2 +42000 75600 46200 79800 metal2 +42000 75600 50400 79800 metal3 +46200 75600 50400 79800 metal2 +46200 75600 50400 88200 metal2 +46200 84000 50400 88200 metal2 +46200 84000 58800 88200 metal3 +54600 84000 58800 88200 metal2 +54600 84000 58800 92400 metal2 +54600 88200 58800 92400 metal2 +54600 88200 67200 92400 metal3 +63000 88200 67200 92400 metal2 79800 96600 84000 100800 metal1 79800 96600 84000 100800 metal2 79800 96600 88200 100800 metal3 84000 96600 88200 100800 metal2 84000 96600 88200 100800 metal1 -79800 96600 84000 109200 metal2 -79800 105000 84000 109200 metal1 -25200 79800 29400 84000 metal2 -25200 79800 67200 84000 metal3 -63000 79800 67200 84000 metal2 -63000 79800 67200 88200 metal2 -63000 84000 67200 88200 metal1 -21000 79800 29400 84000 metal3 -21000 79800 25200 84000 metal2 -21000 42000 25200 84000 metal2 -21000 42000 25200 46200 metal2 -21000 42000 42000 46200 metal3 -37800 42000 42000 46200 metal2 -37800 37800 42000 46200 metal2 -37800 37800 42000 42000 metal2 -37800 37800 67200 42000 metal3 -63000 37800 67200 42000 metal2 -63000 37800 67200 42000 metal1 -63000 37800 84000 42000 metal1 -79800 37800 88200 42000 metal1 -92400 113400 96600 117600 metal1 -92400 109200 96600 117600 metal2 -92400 109200 96600 113400 metal2 -84000 109200 96600 113400 metal3 -84000 109200 88200 113400 metal2 -84000 109200 88200 113400 metal1 -25200 79800 29400 109200 metal2 -25200 105000 29400 109200 metal2 -25200 105000 33600 109200 metal3 -29400 105000 33600 109200 metal2 -29400 105000 33600 126000 metal2 -29400 121800 33600 126000 metal2 -29400 121800 54600 126000 metal3 -50400 121800 54600 126000 metal2 -50400 121800 58800 126000 metal2 -54600 113400 58800 126000 metal2 -54600 113400 63000 117600 metal2 -58800 105000 63000 117600 metal2 -58800 105000 63000 109200 metal1 -58800 105000 71400 109200 metal1 -63000 37800 67200 54600 metal2 -63000 50400 67200 54600 metal1 -79800 37800 84000 46200 metal1 -79800 105000 88200 109200 metal1 -84000 105000 88200 109200 metal1 -84000 105000 88200 113400 metal2 ) _159_ ( -109200 147000 113400 155400 metal2 -109200 147000 113400 151200 metal1 -109200 142800 113400 151200 metal1 -109200 142800 113400 147000 metal1 -109200 142800 117600 147000 metal2 -113400 134400 117600 147000 metal2 -113400 134400 117600 138600 metal1 -138600 79800 142800 84000 metal1 -138600 75600 142800 84000 metal2 +79800 121800 88200 126000 metal1 +88200 134400 117600 138600 metal1 +159600 126000 163800 130200 metal1 +159600 126000 163800 142800 metal2 +84000 121800 88200 138600 metal2 +84000 121800 88200 126000 metal1 138600 75600 142800 79800 metal1 -79800 121800 84000 138600 metal2 -142800 134400 147000 138600 metal1 -142800 130200 147000 138600 metal2 -142800 130200 147000 134400 metal1 -79800 121800 84000 126000 metal1 -79800 121800 84000 126000 metal2 -79800 121800 88200 126000 metal3 -84000 121800 88200 126000 metal2 +138600 71400 142800 79800 metal2 +138600 71400 142800 75600 metal2 +138600 71400 180600 75600 metal3 +176400 71400 180600 75600 metal2 +176400 71400 180600 88200 metal2 +176400 84000 180600 88200 metal2 +176400 84000 184800 88200 metal3 +180600 84000 184800 88200 metal2 +180600 84000 184800 96600 metal2 +180600 92400 184800 96600 metal1 +176400 92400 184800 96600 metal1 +176400 92400 180600 96600 metal1 +176400 92400 180600 121800 metal2 +176400 117600 180600 121800 metal2 +159600 117600 180600 121800 metal3 +159600 117600 163800 121800 metal2 +159600 117600 163800 130200 metal2 +138600 75600 142800 84000 metal2 +138600 79800 142800 84000 metal1 84000 109200 88200 126000 metal2 84000 109200 88200 113400 metal1 -113400 84000 142800 88200 metal1 -138600 84000 142800 88200 metal1 -138600 79800 142800 88200 metal2 -147000 117600 151200 121800 metal1 -147000 117600 151200 121800 metal2 -142800 117600 151200 121800 metal3 -142800 117600 147000 121800 metal2 -142800 117600 147000 134400 metal2 -79800 134400 84000 138600 metal2 -79800 134400 92400 138600 metal3 -88200 134400 92400 138600 metal2 -88200 134400 92400 138600 metal1 -134400 130200 147000 134400 metal1 -134400 130200 138600 134400 metal1 -134400 130200 138600 138600 metal2 -134400 134400 138600 138600 metal1 -138600 75600 159600 79800 metal1 -155400 75600 159600 79800 metal1 -155400 71400 159600 79800 metal2 -155400 71400 159600 75600 metal1 -155400 71400 168000 75600 metal1 -163800 71400 168000 75600 metal1 -163800 71400 168000 84000 metal2 -163800 79800 168000 84000 metal2 -163800 79800 176400 84000 metal3 -172200 79800 176400 84000 metal2 -172200 79800 176400 88200 metal2 -172200 84000 176400 88200 metal2 -172200 84000 189000 88200 metal3 -184800 84000 189000 88200 metal2 -184800 84000 189000 117600 metal2 -184800 113400 189000 117600 metal2 -184800 113400 193200 117600 metal3 -189000 113400 193200 117600 metal2 -189000 113400 193200 147000 metal2 -189000 142800 193200 147000 metal2 -172200 142800 193200 147000 metal3 -172200 142800 176400 147000 metal2 -105000 100800 109200 105000 metal1 -105000 100800 109200 109200 metal2 -105000 105000 109200 109200 metal2 -100800 105000 109200 109200 metal3 -100800 105000 105000 109200 metal2 -100800 105000 105000 113400 metal2 -100800 109200 105000 113400 metal1 -84000 109200 105000 113400 metal1 -109200 151200 113400 163800 metal2 -109200 159600 113400 163800 metal2 -109200 159600 142800 163800 metal3 -138600 159600 142800 163800 metal2 -138600 155400 142800 163800 metal2 -138600 155400 142800 159600 metal1 -138600 155400 151200 159600 metal1 -147000 155400 151200 159600 metal1 -147000 155400 151200 163800 metal2 -147000 159600 151200 163800 metal1 -147000 159600 159600 163800 metal1 -155400 159600 159600 163800 metal1 -155400 151200 159600 163800 metal2 -155400 151200 159600 155400 metal1 -155400 151200 168000 155400 metal1 -163800 151200 168000 155400 metal1 -163800 147000 168000 155400 metal2 -163800 147000 168000 151200 metal2 -163800 147000 176400 151200 metal3 -172200 147000 176400 151200 metal2 -172200 142800 176400 151200 metal2 142800 134400 147000 142800 metal2 142800 138600 147000 142800 metal2 -142800 138600 176400 142800 metal3 -172200 138600 176400 142800 metal2 -172200 138600 176400 147000 metal2 -79800 134400 84000 155400 metal2 -79800 151200 84000 155400 metal2 -79800 151200 113400 155400 metal3 -109200 151200 113400 155400 metal2 +142800 138600 163800 142800 metal3 +159600 138600 163800 142800 metal2 +134400 134400 138600 138600 metal1 +134400 134400 138600 138600 metal2 +134400 134400 147000 138600 metal3 +142800 134400 147000 138600 metal2 +142800 134400 147000 138600 metal1 +84000 134400 88200 138600 metal1 +84000 134400 88200 138600 metal2 +71400 134400 88200 138600 metal3 +71400 134400 75600 138600 metal2 +71400 134400 75600 172200 metal2 +71400 168000 75600 172200 metal2 +71400 168000 130200 172200 metal3 +126000 168000 130200 172200 metal2 +126000 163800 130200 172200 metal2 +126000 163800 130200 168000 metal2 +126000 163800 142800 168000 metal3 +138600 163800 142800 168000 metal2 +138600 163800 142800 172200 metal2 +138600 168000 142800 172200 metal2 +138600 168000 163800 172200 metal3 +159600 168000 163800 172200 metal2 +159600 155400 163800 172200 metal2 +159600 155400 163800 159600 metal2 +159600 155400 168000 159600 metal3 +163800 155400 168000 159600 metal2 +163800 138600 168000 159600 metal2 +163800 138600 168000 142800 metal2 +159600 138600 168000 142800 metal3 +113400 84000 117600 88200 metal1 +113400 84000 117600 88200 metal2 +113400 84000 142800 88200 metal3 +138600 84000 142800 88200 metal2 +138600 79800 142800 88200 metal2 +105000 100800 113400 105000 metal1 +109200 100800 113400 105000 metal1 +109200 84000 113400 105000 metal2 +109200 84000 113400 88200 metal1 +109200 84000 117600 88200 metal1 +147000 117600 151200 121800 metal1 +147000 117600 151200 130200 metal2 +147000 126000 151200 130200 metal1 +147000 126000 163800 130200 metal1 +84000 134400 92400 138600 metal1 ) _160_ ( -155400 134400 163800 138600 metal1 +71400 121800 79800 126000 metal1 +71400 121800 75600 126000 metal1 +71400 121800 75600 134400 metal2 +71400 130200 75600 134400 metal2 +67200 130200 75600 134400 metal3 +67200 130200 71400 134400 metal2 +67200 130200 71400 163800 metal2 +67200 159600 71400 163800 metal2 +67200 159600 100800 163800 metal3 +96600 159600 100800 163800 metal2 +96600 159600 100800 176400 metal2 +96600 172200 100800 176400 metal2 +96600 172200 126000 176400 metal3 +121800 172200 126000 176400 metal2 67200 113400 79800 117600 metal1 -138600 117600 142800 121800 metal1 -138600 117600 142800 130200 metal2 -138600 126000 142800 130200 metal1 -138600 126000 159600 130200 metal1 -155400 126000 159600 130200 metal1 -155400 126000 159600 138600 metal2 -155400 134400 159600 138600 metal1 -75600 113400 79800 117600 metal1 -75600 113400 79800 117600 metal2 -75600 113400 88200 117600 metal3 -84000 113400 88200 117600 metal2 84000 113400 88200 117600 metal1 84000 105000 88200 117600 metal2 84000 105000 88200 109200 metal1 84000 105000 92400 109200 metal1 88200 105000 92400 109200 metal1 -88200 92400 92400 109200 metal2 -88200 92400 92400 96600 metal1 -88200 92400 117600 96600 metal1 -113400 163800 117600 168000 metal2 -113400 163800 121800 168000 metal3 -117600 163800 121800 168000 metal2 -117600 163800 121800 172200 metal2 -117600 168000 121800 172200 metal2 -117600 168000 159600 172200 metal3 -155400 168000 159600 172200 metal2 -155400 147000 159600 172200 metal2 -155400 147000 159600 151200 metal2 -155400 147000 163800 151200 metal3 -159600 147000 163800 151200 metal2 -159600 134400 163800 151200 metal2 -159600 134400 163800 138600 metal1 +88200 100800 92400 109200 metal2 +88200 100800 92400 105000 metal1 +88200 100800 100800 105000 metal1 +96600 100800 100800 105000 metal1 +96600 96600 100800 105000 metal2 +96600 96600 100800 100800 metal1 +96600 96600 117600 100800 metal1 +113400 147000 121800 151200 metal1 155400 96600 159600 100800 metal1 -155400 96600 159600 100800 metal2 -155400 96600 172200 100800 metal3 -168000 96600 172200 100800 metal2 -168000 96600 172200 109200 metal2 -168000 105000 172200 109200 metal1 -163800 105000 172200 109200 metal1 -163800 105000 168000 109200 metal1 -163800 105000 168000 117600 metal2 -163800 113400 168000 117600 metal1 -163800 113400 172200 117600 metal1 -168000 113400 172200 117600 metal1 -168000 113400 172200 121800 metal2 -168000 117600 172200 121800 metal2 -168000 117600 176400 121800 metal3 -172200 117600 176400 121800 metal2 -172200 117600 176400 134400 metal2 -172200 130200 176400 134400 metal1 -163800 130200 176400 134400 metal1 -163800 130200 168000 134400 metal1 -163800 130200 168000 138600 metal2 -163800 134400 168000 138600 metal1 -159600 134400 168000 138600 metal1 -113400 147000 117600 168000 metal2 -113400 147000 117600 151200 metal1 +155400 96600 159600 105000 metal2 +155400 100800 159600 105000 metal1 +155400 100800 163800 105000 metal1 +159600 100800 163800 105000 metal1 +159600 100800 163800 142800 metal2 +159600 138600 163800 142800 metal1 +121800 172200 126000 180600 metal2 +121800 176400 126000 180600 metal1 +121800 176400 130200 180600 metal1 +126000 176400 130200 180600 metal1 +126000 176400 130200 184800 metal2 +126000 180600 130200 184800 metal1 +126000 180600 159600 184800 metal1 +155400 180600 159600 184800 metal1 +155400 159600 159600 184800 metal2 +155400 159600 159600 163800 metal2 +155400 159600 163800 163800 metal3 +159600 159600 163800 163800 metal2 +159600 138600 163800 163800 metal2 +138600 117600 142800 121800 metal1 +138600 117600 142800 130200 metal2 +138600 126000 142800 130200 metal1 +138600 126000 151200 130200 metal1 +147000 126000 151200 130200 metal1 +147000 126000 151200 138600 metal2 +147000 134400 151200 138600 metal1 +117600 147000 121800 151200 metal1 +117600 142800 121800 151200 metal2 +117600 142800 121800 147000 metal1 +113400 96600 117600 100800 metal1 +113400 92400 117600 100800 metal2 113400 92400 117600 96600 metal1 -113400 88200 117600 96600 metal2 -113400 88200 117600 92400 metal1 -113400 88200 121800 92400 metal1 +113400 92400 121800 96600 metal1 +117600 92400 121800 96600 metal1 +117600 88200 121800 96600 metal2 +117600 88200 121800 92400 metal1 +75600 113400 79800 117600 metal1 75600 113400 79800 126000 metal2 75600 121800 79800 126000 metal1 -147000 134400 159600 138600 metal1 -75600 121800 79800 151200 metal2 -75600 147000 79800 151200 metal1 -75600 147000 96600 151200 metal1 -92400 147000 96600 151200 metal1 -92400 147000 96600 159600 metal2 -92400 155400 96600 159600 metal2 -92400 155400 105000 159600 metal3 -100800 155400 105000 159600 metal2 -100800 155400 105000 163800 metal2 -100800 159600 105000 163800 metal2 -100800 159600 113400 163800 metal3 -109200 159600 113400 163800 metal2 -109200 159600 113400 168000 metal2 -109200 163800 113400 168000 metal2 -109200 163800 117600 168000 metal3 -113400 142800 117600 151200 metal2 -113400 142800 117600 147000 metal2 -113400 142800 121800 147000 metal3 -117600 142800 121800 147000 metal2 -117600 142800 121800 147000 metal1 -113400 92400 117600 100800 metal1 +147000 134400 151200 142800 metal2 +147000 138600 151200 142800 metal1 +147000 138600 163800 142800 metal1 +75600 113400 88200 117600 metal1 +117600 147000 126000 151200 metal1 +121800 147000 126000 151200 metal1 +121800 147000 126000 176400 metal2 ) _161_ ( 75600 117600 79800 121800 metal1 -75600 117600 79800 121800 metal2 -75600 117600 84000 121800 metal3 -79800 117600 84000 121800 metal2 -79800 117600 84000 126000 metal2 -79800 121800 84000 126000 metal1 +75600 117600 79800 126000 metal2 +75600 121800 79800 126000 metal1 +75600 121800 84000 126000 metal1 ) _162_ ( 63000 117600 67200 121800 metal1 -63000 117600 67200 130200 metal2 -63000 126000 67200 130200 metal2 -63000 126000 71400 130200 metal3 -67200 126000 71400 130200 metal2 -67200 121800 71400 130200 metal2 +63000 117600 67200 126000 metal2 +63000 121800 67200 126000 metal2 +63000 121800 71400 126000 metal3 +67200 121800 71400 126000 metal2 67200 121800 71400 126000 metal1 ) _163_ @@ -2023,130 +2002,116 @@ _164_ ) _165_ ( -134400 79800 138600 84000 metal2 -134400 79800 142800 84000 metal3 -138600 79800 142800 84000 metal2 +88200 105000 96600 109200 metal1 +92400 105000 96600 109200 metal1 +92400 105000 96600 113400 metal2 +92400 109200 96600 113400 metal1 +138600 75600 142800 79800 metal1 +138600 75600 142800 84000 metal2 138600 79800 142800 84000 metal1 -109200 88200 113400 96600 metal2 +113400 134400 138600 138600 metal1 +92400 109200 113400 113400 metal1 +109200 109200 113400 113400 metal1 +109200 100800 113400 113400 metal2 +109200 100800 113400 105000 metal1 +138600 63000 142800 79800 metal2 +138600 63000 142800 67200 metal1 +138600 63000 155400 67200 metal1 +151200 63000 155400 67200 metal1 +151200 63000 155400 71400 metal2 +151200 67200 155400 71400 metal1 +151200 67200 159600 71400 metal1 +155400 67200 159600 71400 metal1 +155400 67200 159600 75600 metal2 +155400 71400 159600 75600 metal1 +155400 71400 168000 75600 metal1 +163800 71400 168000 75600 metal1 +163800 71400 168000 100800 metal2 +163800 96600 168000 100800 metal2 +163800 96600 172200 100800 metal3 +168000 96600 172200 100800 metal2 +168000 96600 172200 105000 metal2 +168000 100800 172200 105000 metal1 +163800 100800 172200 105000 metal1 +163800 100800 168000 105000 metal1 +163800 100800 168000 117600 metal2 +163800 113400 168000 117600 metal1 +142800 151200 155400 155400 metal1 +151200 151200 155400 155400 metal1 +151200 147000 155400 155400 metal2 +151200 147000 155400 151200 metal2 +151200 147000 180600 151200 metal3 +176400 147000 180600 151200 metal2 +176400 121800 180600 151200 metal2 +176400 121800 180600 126000 metal1 +172200 121800 180600 126000 metal1 +172200 121800 176400 126000 metal1 +172200 117600 176400 126000 metal2 +172200 117600 176400 121800 metal1 +168000 117600 176400 121800 metal1 +168000 117600 172200 121800 metal1 +168000 113400 172200 121800 metal2 +168000 113400 172200 117600 metal1 +163800 113400 172200 117600 metal1 +138600 79800 142800 88200 metal2 +138600 84000 142800 88200 metal1 +113400 84000 142800 88200 metal1 +92400 113400 96600 117600 metal1 +92400 109200 96600 117600 metal2 +88200 134400 92400 138600 metal1 +88200 134400 92400 151200 metal2 +88200 147000 92400 151200 metal2 +88200 147000 96600 151200 metal3 +92400 147000 96600 151200 metal2 +92400 147000 96600 155400 metal2 +92400 151200 96600 155400 metal1 +92400 151200 100800 155400 metal1 +96600 151200 100800 155400 metal1 +96600 151200 100800 168000 metal2 +96600 163800 100800 168000 metal2 +96600 163800 121800 168000 metal3 +117600 163800 121800 168000 metal2 +117600 159600 121800 168000 metal2 +117600 159600 121800 163800 metal2 +117600 159600 147000 163800 metal3 +142800 159600 147000 163800 metal2 +142800 151200 147000 163800 metal2 +142800 151200 147000 155400 metal1 +134400 134400 138600 138600 metal1 +134400 130200 138600 138600 metal2 +134400 130200 138600 134400 metal2 +134400 130200 147000 134400 metal3 +142800 130200 147000 134400 metal2 +142800 130200 147000 138600 metal2 +142800 134400 147000 138600 metal1 +147000 117600 151200 121800 metal1 +147000 117600 151200 121800 metal2 +147000 117600 155400 121800 metal3 +151200 117600 155400 121800 metal2 +151200 113400 155400 121800 metal2 +151200 113400 155400 117600 metal1 +151200 113400 168000 117600 metal1 +109200 88200 113400 105000 metal2 109200 88200 113400 92400 metal1 109200 88200 117600 92400 metal1 -134400 75600 138600 84000 metal2 -134400 75600 138600 79800 metal1 -147000 117600 151200 121800 metal1 -147000 117600 151200 138600 metal2 -88200 134400 92400 138600 metal1 -88200 134400 92400 147000 metal2 -88200 142800 92400 147000 metal1 113400 88200 117600 92400 metal1 -113400 88200 117600 92400 metal2 -113400 88200 130200 92400 metal3 -126000 88200 130200 92400 metal2 -126000 84000 130200 92400 metal2 -126000 84000 130200 88200 metal2 -126000 84000 138600 88200 metal3 -134400 84000 138600 88200 metal2 -134400 79800 138600 88200 metal2 -134400 75600 142800 79800 metal1 -92400 105000 100800 109200 metal1 -96600 105000 100800 109200 metal1 -96600 92400 100800 109200 metal2 -96600 92400 100800 96600 metal2 -96600 92400 113400 96600 metal3 -109200 92400 113400 96600 metal2 -134400 71400 138600 79800 metal2 -134400 71400 138600 75600 metal2 -134400 71400 180600 75600 metal3 -176400 71400 180600 75600 metal2 -176400 71400 180600 79800 metal2 -176400 75600 180600 79800 metal2 -176400 75600 184800 79800 metal3 -180600 75600 184800 79800 metal2 -180600 75600 184800 92400 metal2 -180600 88200 184800 92400 metal2 -176400 88200 184800 92400 metal3 -176400 88200 180600 92400 metal2 -176400 88200 180600 100800 metal2 -176400 96600 180600 100800 metal2 -176400 96600 189000 100800 metal3 -184800 96600 189000 100800 metal2 -184800 96600 189000 117600 metal2 -184800 113400 189000 117600 metal1 -180600 113400 189000 117600 metal1 -180600 113400 184800 117600 metal1 -180600 113400 184800 126000 metal2 -180600 121800 184800 126000 metal2 -180600 121800 189000 126000 metal3 -184800 121800 189000 126000 metal2 -184800 121800 189000 147000 metal2 -184800 142800 189000 147000 metal2 -168000 142800 189000 147000 metal3 -168000 142800 172200 147000 metal2 -168000 142800 172200 151200 metal2 -168000 147000 172200 151200 metal2 -163800 147000 172200 151200 metal3 -163800 147000 168000 151200 metal2 -163800 142800 168000 151200 metal2 -163800 142800 168000 147000 metal2 -151200 142800 168000 147000 metal3 -151200 142800 155400 147000 metal2 -88200 142800 92400 155400 metal2 -88200 151200 92400 155400 metal2 -88200 151200 96600 155400 metal3 -92400 151200 96600 155400 metal2 -92400 151200 96600 176400 metal2 -92400 172200 96600 176400 metal2 -92400 172200 109200 176400 metal3 -105000 172200 109200 176400 metal2 -105000 172200 109200 184800 metal2 -105000 180600 109200 184800 metal1 -105000 180600 126000 184800 metal1 -121800 180600 126000 184800 metal1 -121800 176400 126000 184800 metal2 -121800 176400 126000 180600 metal2 -121800 176400 151200 180600 metal3 -147000 176400 151200 180600 metal2 -147000 172200 151200 180600 metal2 -147000 172200 151200 176400 metal1 -147000 172200 155400 176400 metal1 -151200 172200 155400 176400 metal1 -151200 142800 155400 176400 metal2 -92400 105000 96600 109200 metal1 -92400 105000 96600 117600 metal2 -92400 113400 96600 117600 metal1 -142800 134400 147000 138600 metal1 -142800 134400 147000 138600 metal2 -134400 134400 147000 138600 metal3 -134400 134400 138600 138600 metal2 -134400 134400 138600 138600 metal1 -147000 134400 151200 147000 metal2 -147000 142800 151200 147000 metal2 -147000 142800 155400 147000 metal3 -142800 134400 151200 138600 metal3 -147000 134400 151200 138600 metal2 -88200 142800 117600 147000 metal1 -113400 142800 117600 147000 metal1 -113400 134400 117600 147000 metal2 -113400 134400 117600 138600 metal1 -88200 105000 96600 109200 metal1 -109200 92400 113400 105000 metal2 -109200 100800 113400 105000 metal1 113400 84000 117600 92400 metal2 113400 84000 117600 88200 metal1 +142800 134400 147000 155400 metal2 ) _166_ ( -138600 126000 147000 130200 metal1 -142800 126000 147000 130200 metal1 -142800 126000 147000 138600 metal2 +138600 126000 142800 130200 metal1 +138600 126000 142800 134400 metal2 +138600 130200 142800 134400 metal1 +138600 130200 147000 134400 metal1 +142800 130200 147000 134400 metal1 +142800 130200 147000 138600 metal2 142800 134400 147000 138600 metal1 ) _167_ ( -100800 84000 105000 88200 metal1 -100800 84000 105000 88200 metal2 -100800 84000 109200 88200 metal3 -105000 84000 109200 88200 metal2 -105000 84000 109200 88200 metal1 +100800 84000 109200 88200 metal1 ) _168_ ( @@ -2159,7 +2124,8 @@ _168_ ) _169_ ( -126000 100800 130200 113400 metal2 +130200 96600 134400 109200 metal2 +130200 96600 134400 100800 metal1 121800 100800 126000 105000 metal1 121800 100800 126000 105000 metal2 121800 100800 130200 105000 metal3 @@ -2169,13 +2135,12 @@ _169_ 130200 105000 138600 109200 metal3 134400 105000 138600 109200 metal2 134400 105000 138600 109200 metal1 +126000 100800 130200 113400 metal2 126000 109200 130200 113400 metal1 126000 109200 130200 113400 metal2 126000 109200 134400 113400 metal3 130200 109200 134400 113400 metal2 130200 105000 134400 113400 metal2 -130200 96600 134400 100800 metal1 -130200 96600 134400 109200 metal2 ) _170_ ( @@ -2187,20 +2152,18 @@ _170_ ) _171_ ( -130200 100800 134400 105000 metal1 +113400 100800 117600 105000 metal1 +113400 100800 117600 105000 metal2 +113400 100800 134400 105000 metal3 130200 100800 134400 105000 metal2 +130200 100800 134400 105000 metal1 +113400 100800 117600 113400 metal2 +113400 109200 117600 113400 metal1 130200 100800 142800 105000 metal3 138600 100800 142800 105000 metal2 138600 100800 142800 105000 metal1 -113400 100800 117600 105000 metal1 -113400 100800 117600 113400 metal2 -113400 109200 117600 113400 metal1 -113400 96600 117600 105000 metal2 -113400 96600 117600 100800 metal2 -113400 96600 134400 100800 metal3 -130200 96600 134400 100800 metal2 -130200 96600 134400 100800 metal1 130200 96600 134400 105000 metal2 +130200 96600 134400 100800 metal1 ) _172_ ( @@ -2216,18 +2179,14 @@ _173_ ( 105000 126000 109200 130200 metal1 105000 126000 109200 130200 metal2 -105000 126000 113400 130200 metal3 -109200 126000 113400 130200 metal2 -109200 130200 113400 134400 metal2 -109200 130200 117600 134400 metal3 -113400 130200 117600 134400 metal2 -113400 130200 117600 134400 metal1 -109200 126000 117600 130200 metal3 +105000 126000 117600 130200 metal3 113400 126000 117600 130200 metal2 113400 126000 117600 130200 metal1 -109200 130200 113400 138600 metal2 -109200 134400 113400 138600 metal1 -109200 126000 113400 134400 metal2 +109200 134400 117600 138600 metal1 +113400 134400 117600 138600 metal1 +113400 130200 117600 138600 metal2 +113400 130200 117600 134400 metal1 +113400 126000 117600 134400 metal2 ) _174_ ( @@ -2236,13 +2195,14 @@ _174_ 105000 113400 109200 117600 metal2 105000 113400 113400 117600 metal3 109200 113400 113400 117600 metal2 -109200 113400 113400 117600 metal1 100800 100800 109200 105000 metal1 109200 126000 117600 130200 metal1 109200 126000 113400 130200 metal1 109200 113400 113400 130200 metal2 105000 100800 113400 105000 metal1 -109200 113400 117600 117600 metal1 +109200 113400 117600 117600 metal3 +113400 113400 117600 117600 metal2 +113400 113400 117600 117600 metal1 ) _175_ ( @@ -2259,12 +2219,12 @@ _175_ 142800 96600 151200 100800 metal3 147000 96600 151200 100800 metal2 147000 96600 151200 100800 metal1 -142800 92400 147000 100800 metal2 147000 96600 151200 105000 metal2 147000 100800 151200 105000 metal2 147000 100800 155400 105000 metal3 151200 100800 155400 105000 metal2 151200 100800 155400 105000 metal1 +142800 92400 147000 100800 metal2 ) _176_ ( @@ -2279,32 +2239,36 @@ _176_ _177_ ( 109200 100800 117600 105000 metal1 -117600 109200 121800 113400 metal1 +117600 100800 121800 105000 metal1 117600 100800 121800 113400 metal2 -113400 100800 117600 105000 metal1 -113400 100800 117600 105000 metal2 -113400 100800 121800 105000 metal3 -117600 100800 121800 105000 metal2 -138600 92400 142800 100800 metal2 -138600 92400 142800 96600 metal1 +117600 109200 121800 113400 metal1 +113400 100800 121800 105000 metal1 +134400 92400 138600 100800 metal2 +117600 100800 126000 105000 metal1 +121800 100800 126000 105000 metal1 +121800 96600 126000 105000 metal2 +121800 96600 126000 100800 metal1 +121800 96600 130200 100800 metal1 +126000 96600 130200 100800 metal1 +126000 92400 130200 100800 metal2 +126000 92400 130200 96600 metal2 +126000 92400 138600 96600 metal3 +134400 92400 138600 96600 metal2 +134400 92400 138600 96600 metal1 134400 96600 138600 100800 metal1 134400 96600 138600 100800 metal2 134400 96600 142800 100800 metal3 138600 96600 142800 100800 metal2 138600 96600 142800 100800 metal1 -117600 100800 126000 105000 metal3 -121800 100800 126000 105000 metal2 -121800 96600 126000 105000 metal2 -121800 96600 126000 100800 metal2 -121800 96600 138600 100800 metal3 +134400 92400 142800 96600 metal1 ) _178_ ( 105000 113400 109200 117600 metal1 -105000 105000 109200 117600 metal2 -105000 105000 109200 109200 metal2 -105000 105000 113400 109200 metal3 -109200 105000 113400 109200 metal2 +105000 113400 109200 117600 metal2 +105000 113400 113400 117600 metal3 +109200 113400 113400 117600 metal2 +109200 105000 113400 117600 metal2 109200 105000 113400 109200 metal1 ) _179_ @@ -2314,12 +2278,7 @@ _179_ 92400 113400 105000 117600 metal3 100800 113400 105000 117600 metal2 100800 113400 105000 117600 metal1 -100800 109200 105000 117600 metal2 -100800 109200 105000 113400 metal2 -100800 109200 109200 113400 metal3 -105000 109200 109200 113400 metal2 -105000 109200 109200 117600 metal2 -105000 113400 109200 117600 metal1 +100800 113400 109200 117600 metal1 ) _180_ ( @@ -2430,14 +2389,14 @@ _192_ ) _193_ ( -121800 96600 126000 100800 metal1 121800 96600 126000 105000 metal2 121800 100800 126000 105000 metal1 117600 92400 121800 96600 metal1 -117600 92400 121800 96600 metal2 -117600 92400 126000 96600 metal3 -121800 92400 126000 96600 metal2 -121800 92400 126000 100800 metal2 +117600 92400 121800 100800 metal2 +117600 96600 121800 100800 metal2 +117600 96600 126000 100800 metal3 +121800 96600 126000 100800 metal2 +121800 96600 126000 100800 metal1 ) _194_ ( @@ -2478,24 +2437,23 @@ _199_ ( 105000 96600 109200 100800 metal1 105000 96600 109200 100800 metal2 -105000 96600 113400 100800 metal3 -109200 96600 113400 100800 metal2 -109200 96600 113400 109200 metal2 -109200 105000 113400 109200 metal1 -109200 105000 117600 109200 metal1 +105000 96600 117600 100800 metal3 +113400 96600 117600 100800 metal2 +113400 96600 117600 109200 metal2 +113400 105000 117600 109200 metal1 ) _200_ ( -75600 67200 79800 71400 metal1 -75600 67200 79800 71400 metal2 -75600 67200 84000 71400 metal3 -79800 67200 84000 71400 metal2 +75600 67200 84000 71400 metal1 +79800 67200 84000 71400 metal1 79800 67200 84000 75600 metal2 79800 71400 84000 75600 metal1 71400 71400 75600 75600 metal1 71400 67200 75600 75600 metal2 71400 67200 75600 71400 metal2 71400 67200 79800 71400 metal3 +75600 67200 79800 71400 metal2 +75600 67200 79800 71400 metal1 79800 71400 84000 79800 metal2 79800 75600 84000 79800 metal1 ) @@ -2531,17 +2489,16 @@ _202_ ) _203_ ( -75600 84000 79800 88200 metal1 -75600 84000 79800 88200 metal2 -75600 84000 84000 88200 metal3 -79800 84000 84000 88200 metal2 -79800 84000 84000 88200 metal1 -71400 79800 75600 88200 metal2 -71400 84000 75600 88200 metal1 +75600 84000 84000 88200 metal1 +67200 79800 71400 88200 metal2 +67200 84000 71400 88200 metal1 +67200 84000 75600 88200 metal1 71400 84000 79800 88200 metal1 63000 79800 67200 84000 metal1 63000 79800 67200 84000 metal2 -63000 79800 75600 84000 metal3 +63000 79800 71400 84000 metal3 +67200 79800 71400 84000 metal2 +67200 79800 75600 84000 metal3 71400 79800 75600 84000 metal2 71400 79800 75600 84000 metal1 ) @@ -2557,55 +2514,52 @@ _204_ 75600 88200 84000 92400 metal3 79800 88200 84000 92400 metal2 79800 84000 84000 92400 metal2 -79800 84000 84000 88200 metal1 75600 88200 79800 96600 metal2 -75600 84000 84000 88200 metal1 +79800 84000 84000 88200 metal1 +79800 84000 84000 88200 metal2 +75600 84000 84000 88200 metal3 +75600 84000 79800 88200 metal2 +75600 84000 79800 88200 metal1 ) _205_ ( -88200 88200 92400 96600 metal2 -88200 92400 92400 96600 metal2 -88200 92400 105000 96600 metal3 -100800 92400 105000 96600 metal2 -100800 92400 105000 100800 metal2 +88200 88200 92400 92400 metal1 +88200 88200 92400 92400 metal2 +88200 88200 105000 92400 metal3 +100800 88200 105000 92400 metal2 +100800 88200 105000 100800 metal2 100800 96600 105000 100800 metal1 -100800 96600 105000 105000 metal2 -100800 100800 105000 105000 metal1 -100800 100800 109200 105000 metal1 +100800 96600 109200 100800 metal1 +105000 96600 109200 100800 metal1 +105000 96600 109200 105000 metal2 +105000 100800 109200 105000 metal1 79800 88200 84000 92400 metal1 79800 88200 84000 92400 metal2 79800 88200 92400 92400 metal3 -88200 88200 92400 92400 metal2 -88200 88200 92400 92400 metal1 ) _206_ ( -84000 50400 92400 54600 metal1 -88200 50400 92400 54600 metal1 -88200 50400 92400 58800 metal2 -88200 54600 92400 58800 metal2 -88200 54600 96600 58800 metal3 +84000 54600 88200 58800 metal2 +84000 54600 96600 58800 metal3 92400 54600 96600 58800 metal2 92400 54600 96600 58800 metal1 +84000 50400 88200 58800 metal2 +84000 50400 88200 54600 metal1 79800 54600 84000 58800 metal1 -79800 50400 84000 58800 metal2 -79800 50400 84000 54600 metal1 -79800 50400 88200 54600 metal1 +79800 54600 84000 58800 metal2 +79800 54600 88200 58800 metal3 ) _207_ ( -88200 58800 92400 67200 metal2 88200 63000 92400 67200 metal1 -92400 58800 96600 63000 metal2 -92400 58800 100800 63000 metal3 -96600 58800 100800 63000 metal2 -96600 58800 100800 71400 metal2 -96600 67200 100800 71400 metal1 -88200 58800 96600 63000 metal3 -88200 58800 92400 63000 metal2 +88200 63000 92400 71400 metal2 +88200 67200 92400 71400 metal1 +88200 67200 100800 71400 metal1 88200 58800 92400 63000 metal1 -92400 54600 96600 63000 metal2 -92400 54600 96600 58800 metal1 +88200 58800 92400 67200 metal2 +88200 54600 92400 63000 metal2 +88200 54600 92400 58800 metal1 +88200 54600 96600 58800 metal1 ) _208_ ( @@ -2622,30 +2576,26 @@ _208_ ) _209_ ( -96600 42000 100800 50400 metal2 +96600 37800 105000 42000 metal1 +92400 42000 96600 46200 metal1 +92400 42000 96600 50400 metal2 +92400 46200 96600 50400 metal2 +92400 46200 100800 50400 metal3 +96600 46200 100800 50400 metal2 96600 46200 100800 50400 metal1 +96600 37800 100800 50400 metal2 96600 37800 100800 42000 metal1 -96600 37800 100800 42000 metal2 -96600 37800 105000 42000 metal3 -100800 37800 105000 42000 metal2 -100800 37800 105000 42000 metal1 -92400 42000 96600 46200 metal1 -92400 42000 96600 46200 metal2 -92400 42000 100800 46200 metal3 -96600 42000 100800 46200 metal2 -96600 37800 100800 46200 metal2 ) _210_ ( -92400 54600 100800 58800 metal1 -92400 54600 96600 58800 metal1 -92400 50400 96600 58800 metal2 +96600 54600 100800 58800 metal1 +96600 50400 100800 58800 metal2 92400 50400 96600 54600 metal1 -92400 46200 96600 54600 metal2 -92400 46200 96600 50400 metal2 -92400 46200 100800 50400 metal3 -96600 46200 100800 50400 metal2 +92400 50400 96600 54600 metal2 +92400 50400 100800 54600 metal3 +96600 50400 100800 54600 metal2 96600 46200 100800 50400 metal1 +96600 46200 100800 54600 metal2 ) _211_ ( @@ -2662,9 +2612,8 @@ _212_ ( 96600 46200 100800 50400 metal1 96600 46200 100800 54600 metal2 -92400 50400 96600 54600 metal1 -92400 50400 96600 54600 metal2 -92400 50400 100800 54600 metal3 +92400 50400 100800 54600 metal1 +96600 50400 100800 54600 metal1 96600 50400 100800 54600 metal2 96600 50400 105000 54600 metal3 100800 50400 105000 54600 metal2 @@ -2676,32 +2625,31 @@ _213_ ( 105000 96600 109200 100800 metal1 105000 88200 109200 100800 metal2 -105000 88200 109200 92400 metal1 92400 84000 100800 88200 metal1 96600 84000 100800 88200 metal1 96600 84000 100800 92400 metal2 -96600 88200 100800 92400 metal1 -96600 88200 109200 92400 metal1 +96600 88200 100800 92400 metal2 +96600 88200 109200 92400 metal3 +105000 88200 109200 92400 metal2 105000 96600 109200 105000 metal2 105000 100800 109200 105000 metal1 -96600 54600 100800 58800 metal1 -96600 54600 100800 63000 metal2 -96600 58800 100800 63000 metal1 -96600 58800 105000 63000 metal1 -100800 58800 105000 63000 metal1 -100800 58800 105000 67200 metal2 -100800 63000 105000 67200 metal1 -100800 63000 109200 67200 metal1 -105000 63000 109200 67200 metal1 -105000 63000 109200 92400 metal2 +96600 54600 109200 58800 metal1 +105000 54600 109200 58800 metal1 +105000 54600 109200 63000 metal2 +105000 58800 109200 63000 metal2 +105000 58800 113400 63000 metal3 +109200 58800 113400 63000 metal2 +109200 58800 113400 92400 metal2 +109200 88200 113400 92400 metal2 +105000 88200 113400 92400 metal3 ) _214_ ( 100800 96600 105000 100800 metal1 -100800 92400 105000 100800 metal2 -100800 92400 105000 96600 metal2 -100800 92400 109200 96600 metal3 -105000 92400 109200 96600 metal2 +100800 96600 105000 100800 metal2 +100800 96600 109200 100800 metal3 +105000 96600 109200 100800 metal2 +105000 92400 109200 100800 metal2 105000 92400 109200 96600 metal1 ) _215_ @@ -2732,14 +2680,15 @@ _217_ ) _218_ ( -67200 75600 71400 84000 metal2 -67200 79800 71400 84000 metal1 -67200 79800 75600 84000 metal1 +67200 75600 71400 79800 metal1 +67200 75600 71400 79800 metal2 +67200 75600 75600 79800 metal3 +71400 75600 75600 79800 metal2 +71400 75600 75600 84000 metal2 +71400 79800 75600 84000 metal1 63000 75600 67200 79800 metal1 63000 75600 67200 79800 metal2 63000 75600 71400 79800 metal3 -67200 75600 71400 79800 metal2 -67200 75600 71400 79800 metal1 ) _219_ ( @@ -2752,33 +2701,42 @@ _219_ ) _220_ ( -75600 75600 96600 79800 metal1 -92400 75600 96600 79800 metal1 -92400 75600 96600 84000 metal2 +75600 75600 84000 79800 metal1 +79800 75600 84000 79800 metal1 +79800 75600 84000 84000 metal2 +79800 79800 84000 84000 metal2 +79800 79800 96600 84000 metal3 +92400 79800 96600 84000 metal2 92400 79800 96600 84000 metal1 ) _221_ ( -92400 67200 96600 71400 metal1 -92400 63000 96600 71400 metal2 -92400 63000 96600 67200 metal1 -92400 63000 117600 67200 metal1 -113400 63000 117600 67200 metal1 -113400 63000 117600 71400 metal2 -113400 67200 117600 71400 metal1 -88200 67200 96600 71400 metal1 -113400 67200 121800 71400 metal1 +92400 63000 96600 67200 metal2 +92400 63000 113400 67200 metal3 +109200 63000 113400 67200 metal2 +109200 63000 113400 71400 metal2 +109200 67200 113400 71400 metal1 +109200 67200 121800 71400 metal1 +88200 67200 92400 71400 metal1 +88200 63000 92400 71400 metal2 +88200 63000 92400 67200 metal2 +88200 63000 96600 67200 metal3 +92400 63000 96600 75600 metal2 92400 71400 96600 75600 metal1 -92400 67200 96600 75600 metal2 -113400 67200 117600 75600 metal2 -113400 71400 117600 75600 metal2 -113400 71400 121800 75600 metal3 -117600 71400 121800 75600 metal2 +117600 67200 121800 71400 metal1 +117600 67200 121800 75600 metal2 117600 71400 121800 75600 metal1 ) _222_ ( -92400 71400 96600 84000 metal2 +92400 71400 96600 79800 metal2 +92400 75600 96600 79800 metal2 +92400 75600 100800 79800 metal3 +96600 75600 100800 79800 metal2 +96600 75600 100800 84000 metal2 +96600 79800 100800 84000 metal2 +92400 79800 100800 84000 metal3 +92400 79800 96600 84000 metal2 92400 79800 96600 84000 metal1 88200 71400 92400 75600 metal1 88200 71400 92400 75600 metal2 @@ -2818,39 +2776,38 @@ _226_ ) _227_ ( +84000 58800 88200 63000 metal1 84000 58800 88200 67200 metal2 84000 63000 88200 67200 metal2 84000 63000 92400 67200 metal3 88200 63000 92400 67200 metal2 -88200 63000 92400 67200 metal1 -79800 54600 84000 58800 metal1 -79800 54600 84000 63000 metal2 -79800 58800 84000 63000 metal2 -79800 58800 88200 63000 metal3 -84000 58800 88200 63000 metal2 -84000 58800 88200 63000 metal1 +88200 63000 92400 67200 metal1 +79800 54600 88200 58800 metal1 +84000 54600 88200 58800 metal1 +84000 54600 88200 63000 metal2 ) _228_ ( -84000 58800 92400 63000 metal1 -84000 58800 88200 63000 metal1 -84000 58800 88200 88200 metal2 -84000 84000 88200 88200 metal2 -84000 84000 96600 88200 metal3 -92400 84000 96600 88200 metal2 -92400 84000 96600 92400 metal2 -92400 88200 96600 92400 metal1 +88200 58800 92400 63000 metal1 +88200 58800 92400 67200 metal2 +88200 63000 92400 67200 metal1 +84000 63000 92400 67200 metal1 +84000 63000 88200 67200 metal1 +84000 63000 88200 92400 metal2 +84000 88200 88200 92400 metal1 +84000 88200 96600 92400 metal1 ) _229_ ( +96600 100800 100800 109200 metal2 +96600 105000 100800 109200 metal1 96600 105000 105000 109200 metal1 92400 100800 96600 105000 metal1 -92400 100800 96600 109200 metal2 -92400 105000 96600 109200 metal1 -92400 105000 100800 109200 metal1 -96600 105000 100800 109200 metal1 -96600 88200 100800 109200 metal2 +92400 100800 96600 105000 metal2 +92400 100800 100800 105000 metal3 +96600 100800 100800 105000 metal2 96600 88200 100800 92400 metal1 +96600 88200 100800 105000 metal2 ) _230_ ( @@ -2899,13 +2856,17 @@ _234_ ) _235_ ( -100800 105000 105000 109200 metal1 -100800 100800 105000 109200 metal2 -92400 100800 96600 105000 metal1 -92400 100800 96600 105000 metal2 -92400 100800 105000 105000 metal3 -100800 100800 105000 105000 metal2 -100800 58800 105000 105000 metal2 +96600 100800 100800 105000 metal1 +96600 100800 100800 109200 metal2 +96600 105000 100800 109200 metal1 +96600 105000 105000 109200 metal1 +92400 100800 100800 105000 metal1 +96600 79800 100800 105000 metal2 +96600 79800 100800 84000 metal1 +96600 75600 100800 84000 metal1 +96600 75600 100800 79800 metal1 +96600 75600 105000 79800 metal2 +100800 58800 105000 79800 metal2 100800 58800 105000 63000 metal1 ) _236_ @@ -2913,23 +2874,19 @@ _236_ 100800 105000 105000 109200 metal1 100800 105000 105000 113400 metal2 100800 109200 105000 113400 metal1 -100800 109200 109200 113400 metal1 -105000 109200 109200 113400 metal1 -105000 109200 109200 117600 metal2 -105000 113400 109200 117600 metal1 -105000 113400 117600 117600 metal1 -113400 113400 117600 117600 metal1 -113400 113400 117600 121800 metal2 +100800 109200 117600 113400 metal1 +113400 109200 117600 113400 metal1 +113400 109200 117600 121800 metal2 113400 117600 117600 121800 metal1 113400 117600 126000 121800 metal1 121800 117600 126000 121800 metal1 121800 117600 126000 126000 metal2 121800 121800 126000 126000 metal2 -121800 121800 138600 126000 metal3 -134400 121800 138600 126000 metal2 -134400 121800 138600 130200 metal2 -134400 126000 138600 130200 metal1 -134400 126000 147000 130200 metal1 +121800 121800 134400 126000 metal3 +130200 121800 134400 126000 metal2 +130200 121800 134400 130200 metal2 +130200 126000 134400 130200 metal1 +130200 126000 147000 130200 metal1 ) _237_ ( @@ -2952,16 +2909,18 @@ _238_ ) _239_ ( -100800 117600 105000 121800 metal1 100800 109200 105000 121800 metal2 100800 109200 105000 113400 metal1 -96600 117600 100800 121800 metal1 96600 117600 100800 126000 metal2 96600 121800 100800 126000 metal2 96600 121800 105000 126000 metal3 100800 121800 105000 126000 metal2 100800 121800 105000 126000 metal1 -96600 117600 105000 121800 metal1 +96600 117600 100800 121800 metal1 +96600 117600 100800 121800 metal2 +96600 117600 105000 121800 metal3 +100800 117600 105000 121800 metal2 +100800 117600 105000 121800 metal1 ) _240_ ( @@ -2990,10 +2949,10 @@ _242_ _243_ ( 84000 96600 88200 100800 metal1 -84000 96600 88200 105000 metal2 -84000 100800 88200 105000 metal2 -84000 100800 92400 105000 metal3 -88200 100800 92400 105000 metal2 +84000 96600 88200 100800 metal2 +84000 96600 92400 100800 metal3 +88200 96600 92400 100800 metal2 +88200 96600 92400 105000 metal2 88200 100800 92400 105000 metal1 ) _244_ @@ -3003,115 +2962,55 @@ _244_ 88200 96600 105000 100800 metal3 100800 96600 105000 100800 metal2 100800 96600 105000 100800 metal1 -71400 92400 88200 96600 metal1 +71400 88200 84000 92400 metal1 +79800 88200 84000 92400 metal1 +79800 88200 88200 92400 metal2 +84000 88200 88200 96600 metal2 84000 92400 88200 96600 metal1 -84000 92400 92400 96600 metal2 -88200 92400 92400 100800 metal2 -63000 92400 75600 96600 metal1 -96600 33600 105000 37800 metal1 -100800 33600 105000 37800 metal1 -100800 33600 109200 37800 metal2 -105000 33600 109200 46200 metal2 -105000 42000 109200 46200 metal1 -50400 46200 54600 50400 metal2 -46200 46200 54600 50400 metal3 -46200 46200 50400 50400 metal2 -46200 46200 50400 71400 metal2 -46200 67200 50400 71400 metal2 -42000 67200 50400 71400 metal3 -42000 67200 46200 71400 metal2 -42000 67200 46200 79800 metal2 -42000 75600 46200 79800 metal1 -42000 75600 46200 84000 metal1 -42000 79800 46200 84000 metal1 -42000 79800 50400 84000 metal2 -46200 79800 50400 92400 metal2 -46200 88200 50400 92400 metal2 -46200 88200 50400 96600 metal3 -46200 92400 67200 96600 metal3 -63000 92400 67200 96600 metal2 -63000 92400 67200 96600 metal1 -63000 46200 67200 50400 metal2 -63000 46200 71400 50400 metal3 -67200 46200 71400 50400 metal2 -67200 46200 71400 50400 metal1 -88200 37800 92400 42000 metal1 -88200 37800 92400 42000 metal2 -88200 37800 100800 42000 metal3 -96600 37800 100800 42000 metal2 -96600 33600 100800 42000 metal2 -96600 33600 100800 37800 metal1 -63000 46200 67200 63000 metal2 +84000 92400 88200 100800 metal1 +84000 96600 92400 100800 metal1 +67200 84000 71400 88200 metal1 +67200 84000 71400 92400 metal2 +67200 88200 71400 92400 metal1 +67200 88200 75600 92400 metal1 63000 58800 67200 63000 metal1 -50400 21000 54600 50400 metal2 -50400 21000 54600 25200 metal1 -50400 21000 71400 25200 metal1 -67200 21000 71400 25200 metal1 -67200 21000 71400 29400 metal2 -67200 25200 71400 29400 metal2 -67200 25200 100800 29400 metal3 -96600 25200 100800 29400 metal2 -96600 25200 100800 37800 metal2 -63000 84000 67200 96600 metal2 -63000 84000 67200 88200 metal1 -50400 46200 67200 50400 metal3 -71400 92400 75600 96600 metal1 -71400 92400 75600 100800 metal2 +63000 58800 67200 75600 metal2 +63000 71400 67200 75600 metal1 +63000 71400 71400 75600 metal1 +67200 71400 71400 75600 metal1 +67200 71400 71400 88200 metal2 +88200 42000 109200 46200 metal1 +88200 42000 92400 46200 metal1 +88200 37800 92400 46200 metal2 +88200 37800 92400 42000 metal1 +67200 46200 71400 50400 metal1 +67200 46200 71400 50400 metal2 +67200 46200 88200 50400 metal3 +84000 46200 88200 50400 metal2 +84000 42000 88200 50400 metal2 +84000 42000 88200 46200 metal1 +84000 42000 92400 46200 metal1 +63000 58800 71400 63000 metal1 +67200 58800 71400 63000 metal1 +67200 46200 71400 63000 metal2 +63000 84000 71400 88200 metal1 +71400 88200 75600 92400 metal1 +71400 88200 75600 100800 metal2 71400 96600 75600 100800 metal1 ) _245_ ( -96600 134400 105000 138600 metal1 -96600 134400 100800 138600 metal1 -96600 134400 100800 151200 metal2 -96600 147000 100800 151200 metal2 -96600 147000 109200 151200 metal3 -105000 147000 109200 151200 metal2 -105000 147000 109200 193200 metal2 -105000 189000 109200 193200 metal2 -105000 189000 121800 193200 metal3 -117600 189000 121800 193200 metal2 -117600 189000 121800 197400 metal2 -117600 193200 121800 197400 metal2 -117600 193200 147000 197400 metal3 -142800 193200 147000 197400 metal2 -142800 184800 147000 197400 metal2 -142800 184800 147000 189000 metal1 -142800 184800 155400 189000 metal1 -151200 184800 155400 189000 metal1 -151200 172200 155400 189000 metal2 -151200 172200 155400 176400 metal1 -151200 172200 159600 176400 metal1 -155400 172200 159600 176400 metal1 -155400 168000 159600 176400 metal2 -155400 168000 159600 172200 metal2 -155400 168000 163800 172200 metal3 -159600 168000 163800 172200 metal2 -159600 159600 163800 172200 metal2 -159600 159600 163800 163800 metal2 -159600 159600 176400 163800 metal3 -172200 159600 176400 163800 metal2 -172200 147000 176400 163800 metal2 -172200 147000 176400 151200 metal2 -172200 147000 180600 151200 metal3 -176400 147000 180600 151200 metal2 -176400 130200 180600 151200 metal2 -126000 113400 138600 117600 metal1 -134400 113400 138600 117600 metal1 134400 113400 138600 130200 metal2 134400 126000 138600 130200 metal1 -100800 134400 105000 138600 metal1 -100800 126000 105000 138600 metal2 -100800 126000 105000 130200 metal1 -134400 126000 142800 130200 metal1 -109200 84000 113400 88200 metal1 -109200 84000 113400 92400 metal2 -109200 88200 113400 92400 metal1 -100800 88200 113400 92400 metal1 -100800 88200 105000 92400 metal1 -100800 88200 105000 100800 metal2 100800 96600 105000 100800 metal1 -142800 75600 147000 84000 metal1 +100800 88200 105000 100800 metal2 +100800 88200 105000 92400 metal1 +100800 88200 113400 92400 metal1 +109200 88200 113400 92400 metal1 +109200 84000 113400 92400 metal2 +109200 84000 113400 88200 metal1 +134400 126000 142800 130200 metal1 +134400 126000 138600 138600 metal2 113400 79800 117600 84000 metal1 113400 79800 117600 84000 metal2 113400 79800 126000 84000 metal3 @@ -3121,48 +3020,65 @@ _245_ 121800 75600 134400 79800 metal3 130200 75600 134400 79800 metal2 130200 75600 134400 79800 metal1 -130200 75600 134400 84000 metal1 -142800 75600 147000 79800 metal1 -142800 75600 147000 79800 metal2 -142800 75600 180600 79800 metal3 -176400 75600 180600 79800 metal2 -176400 75600 180600 134400 metal2 -147000 113400 151200 126000 metal2 -147000 113400 151200 117600 metal1 -109200 79800 113400 88200 metal2 -109200 79800 113400 84000 metal2 -109200 79800 117600 84000 metal3 -130200 71400 134400 79800 metal2 -130200 71400 134400 75600 metal1 -130200 71400 147000 75600 metal1 -142800 71400 147000 75600 metal1 -142800 71400 147000 79800 metal2 -147000 121800 151200 130200 metal2 -147000 126000 151200 130200 metal1 -147000 126000 168000 130200 metal1 -163800 126000 168000 130200 metal1 -163800 126000 168000 134400 metal2 -163800 130200 168000 134400 metal2 -163800 130200 180600 134400 metal3 -176400 130200 180600 134400 metal2 130200 134400 134400 138600 metal1 130200 134400 134400 138600 metal2 130200 134400 138600 138600 metal3 134400 134400 138600 138600 metal2 -134400 126000 138600 138600 metal2 -138600 126000 142800 130200 metal1 -138600 121800 142800 130200 metal2 -138600 121800 142800 126000 metal2 -138600 121800 151200 126000 metal3 -147000 121800 151200 126000 metal2 +130200 75600 147000 79800 metal3 +142800 75600 147000 79800 metal2 +109200 84000 117600 88200 metal1 +113400 84000 117600 88200 metal1 +113400 79800 117600 88200 metal2 +126000 113400 138600 117600 metal1 +100800 134400 105000 138600 metal1 +100800 126000 105000 138600 metal2 +100800 126000 105000 130200 metal1 +134400 113400 138600 117600 metal1 +134400 113400 138600 117600 metal2 +134400 113400 151200 117600 metal3 +147000 113400 151200 117600 metal2 +147000 113400 151200 117600 metal1 +100800 134400 105000 151200 metal2 +100800 147000 105000 151200 metal1 +100800 147000 109200 151200 metal1 +105000 147000 109200 151200 metal1 +105000 147000 109200 155400 metal2 +105000 151200 109200 155400 metal2 +105000 151200 134400 155400 metal3 +130200 151200 134400 155400 metal2 +130200 147000 134400 155400 metal2 +130200 147000 134400 151200 metal2 +130200 147000 138600 151200 metal3 +134400 147000 138600 151200 metal2 +134400 147000 168000 151200 metal3 +163800 147000 168000 151200 metal2 +163800 142800 168000 151200 metal2 +163800 142800 168000 147000 metal2 +163800 142800 176400 147000 metal3 +172200 142800 176400 147000 metal2 +172200 134400 176400 147000 metal2 +172200 134400 176400 138600 metal2 +172200 134400 184800 138600 metal3 +180600 134400 184800 138600 metal2 +180600 130200 184800 138600 metal2 +180600 130200 184800 134400 metal2 +180600 130200 193200 134400 metal3 +189000 130200 193200 134400 metal2 +189000 75600 193200 134400 metal2 +189000 75600 193200 79800 metal2 +142800 75600 193200 79800 metal3 +134400 134400 138600 151200 metal2 +130200 75600 134400 84000 metal1 +142800 79800 147000 84000 metal1 +142800 75600 147000 84000 metal2 ) _246_ ( 138600 126000 142800 130200 metal1 -138600 126000 142800 130200 metal2 -138600 126000 147000 130200 metal3 -142800 126000 147000 130200 metal2 -142800 126000 147000 134400 metal2 +138600 126000 142800 134400 metal2 +138600 130200 142800 134400 metal2 +138600 130200 147000 134400 metal3 +142800 130200 147000 134400 metal2 142800 130200 147000 134400 metal1 ) _247_ @@ -3175,203 +3091,228 @@ _247_ ) _248_ ( -54600 63000 63000 67200 metal1 -29400 92400 33600 96600 metal1 -29400 92400 33600 100800 metal2 -29400 96600 33600 100800 metal2 -29400 96600 33600 105000 metal3 -25200 100800 33600 105000 metal3 -25200 100800 29400 105000 metal2 -25200 100800 29400 130200 metal2 -25200 126000 29400 130200 metal2 -25200 126000 33600 130200 metal3 -29400 126000 33600 130200 metal2 -29400 126000 33600 134400 metal2 -29400 130200 33600 134400 metal2 -29400 130200 42000 134400 metal3 -37800 130200 42000 134400 metal2 -37800 130200 42000 163800 metal2 -37800 159600 42000 163800 metal2 -37800 159600 50400 163800 metal3 -46200 159600 50400 163800 metal2 -46200 159600 50400 172200 metal2 -46200 168000 50400 172200 metal2 -46200 168000 117600 172200 metal3 -113400 163800 117600 172200 metal3 -113400 163800 126000 168000 metal3 -121800 163800 126000 168000 metal2 -121800 147000 126000 168000 metal2 -121800 147000 126000 151200 metal1 -121800 142800 126000 151200 metal1 -121800 142800 126000 147000 metal1 -121800 142800 130200 147000 metal2 -126000 117600 130200 147000 metal2 +42000 96600 46200 100800 metal2 +37800 96600 46200 100800 metal3 +37800 96600 42000 100800 metal2 +37800 96600 42000 155400 metal2 +37800 151200 42000 155400 metal2 +37800 151200 50400 155400 metal3 +46200 151200 50400 155400 metal2 +46200 151200 50400 189000 metal2 +46200 184800 50400 189000 metal2 +46200 184800 121800 189000 metal3 +117600 184800 121800 189000 metal2 +117600 184800 121800 193200 metal2 +117600 189000 121800 193200 metal2 +117600 189000 130200 193200 metal3 +126000 189000 130200 193200 metal2 +126000 117600 130200 193200 metal2 126000 117600 130200 121800 metal1 -92400 16800 96600 21000 metal2 -92400 16800 121800 21000 metal3 -117600 16800 121800 21000 metal2 -117600 16800 121800 25200 metal2 -117600 21000 121800 25200 metal1 -117600 21000 126000 25200 metal1 -121800 21000 126000 25200 metal1 -121800 21000 126000 46200 metal2 -121800 42000 126000 46200 metal2 -121800 42000 134400 46200 metal3 -130200 42000 134400 46200 metal2 -130200 42000 138600 46200 metal2 -134400 42000 138600 58800 metal2 -134400 54600 138600 58800 metal1 -134400 54600 138600 63000 metal1 -134400 58800 138600 63000 metal1 -130200 58800 138600 63000 metal2 -130200 58800 134400 75600 metal2 -130200 71400 134400 75600 metal1 -58800 63000 67200 67200 metal1 -58800 92400 67200 96600 metal1 -63000 92400 67200 96600 metal1 -63000 92400 67200 100800 metal2 -63000 96600 67200 100800 metal1 -63000 96600 71400 100800 metal1 -67200 96600 71400 100800 metal1 -67200 96600 71400 105000 metal2 -67200 100800 71400 105000 metal1 -67200 100800 79800 105000 metal1 -92400 16800 96600 29400 metal2 -92400 25200 96600 29400 metal1 -92400 25200 96600 33600 metal1 +88200 29400 96600 33600 metal1 92400 29400 96600 33600 metal1 -88200 29400 96600 33600 metal2 -88200 29400 92400 37800 metal2 -88200 33600 92400 37800 metal1 -54600 37800 58800 42000 metal1 -54600 37800 58800 67200 metal2 -54600 63000 58800 67200 metal1 +92400 25200 96600 33600 metal2 +92400 25200 96600 29400 metal1 +92400 25200 100800 29400 metal1 +96600 25200 100800 29400 metal1 +96600 21000 100800 29400 metal2 +96600 21000 100800 25200 metal1 +96600 21000 109200 25200 metal1 +105000 21000 109200 25200 metal1 +105000 0 109200 25200 metal2 +105000 0 109200 4200 metal2 +105000 0 126000 4200 metal3 +121800 0 126000 4200 metal2 +121800 0 126000 42000 metal2 +121800 37800 126000 42000 metal1 +121800 37800 130200 42000 metal1 +126000 37800 130200 42000 metal1 +126000 37800 130200 46200 metal2 +37800 54600 42000 67200 metal2 +37800 54600 42000 58800 metal1 +37800 54600 46200 58800 metal1 +42000 54600 46200 58800 metal1 +42000 37800 46200 58800 metal2 +42000 37800 46200 42000 metal2 +42000 37800 50400 42000 metal3 +46200 37800 50400 42000 metal2 +58800 63000 63000 79800 metal2 +58800 75600 63000 79800 metal1 121800 75600 126000 79800 metal1 121800 71400 126000 79800 metal2 -121800 71400 126000 75600 metal1 -121800 71400 134400 75600 metal1 -50400 37800 58800 42000 metal1 -50400 37800 54600 42000 metal1 -50400 12600 54600 42000 metal2 -50400 12600 54600 16800 metal2 -50400 12600 67200 16800 metal3 -63000 12600 67200 16800 metal2 -63000 12600 67200 21000 metal2 -63000 16800 67200 21000 metal1 -63000 16800 71400 21000 metal1 -67200 16800 71400 21000 metal1 -67200 12600 71400 21000 metal2 -67200 12600 71400 16800 metal2 -67200 12600 79800 16800 metal3 -75600 12600 79800 16800 metal2 -75600 12600 79800 21000 metal2 -75600 16800 79800 21000 metal2 -75600 16800 96600 21000 metal3 -109200 46200 113400 50400 metal1 -109200 46200 113400 50400 metal2 -109200 46200 126000 50400 metal3 -121800 46200 126000 50400 metal2 -121800 42000 126000 50400 metal2 -29400 92400 63000 96600 metal1 -29400 88200 33600 96600 metal2 -29400 88200 33600 92400 metal2 -25200 88200 33600 92400 metal3 -25200 88200 29400 92400 metal2 -25200 67200 29400 92400 metal2 -25200 67200 29400 71400 metal2 -25200 67200 46200 71400 metal3 -42000 67200 46200 71400 metal2 -42000 63000 46200 71400 metal2 -42000 63000 46200 67200 metal1 -42000 63000 58800 67200 metal1 -54600 37800 67200 42000 metal1 -63000 37800 67200 42000 metal1 -63000 37800 71400 42000 metal2 -67200 37800 71400 46200 metal2 +121800 71400 126000 75600 metal2 +121800 71400 134400 75600 metal3 +130200 71400 134400 75600 metal2 +130200 71400 134400 75600 metal1 +88200 33600 92400 37800 metal1 +88200 29400 92400 37800 metal2 +88200 29400 92400 33600 metal1 +37800 63000 42000 67200 metal2 +33600 63000 42000 67200 metal3 +33600 63000 37800 67200 metal2 +33600 63000 37800 84000 metal2 +33600 79800 37800 84000 metal2 +33600 79800 37800 88200 metal3 +33600 84000 42000 88200 metal3 +37800 84000 42000 92400 metal3 +37800 88200 42000 92400 metal2 +37800 88200 46200 92400 metal2 +42000 88200 46200 100800 metal2 +126000 42000 130200 46200 metal2 +126000 42000 142800 46200 metal3 +138600 42000 142800 46200 metal2 +138600 42000 142800 58800 metal2 +138600 54600 142800 58800 metal1 +138600 54600 142800 63000 metal1 +134400 58800 142800 63000 metal1 +134400 58800 138600 63000 metal1 +130200 58800 138600 63000 metal2 +130200 58800 134400 75600 metal2 +46200 29400 50400 42000 metal2 +46200 29400 50400 33600 metal2 +46200 29400 54600 33600 metal3 +50400 29400 54600 33600 metal2 +50400 25200 54600 33600 metal2 +50400 25200 54600 29400 metal2 +50400 25200 92400 29400 metal3 +88200 25200 92400 29400 metal2 +88200 25200 92400 33600 metal2 +109200 46200 121800 50400 metal1 +117600 46200 121800 50400 metal1 +117600 42000 121800 50400 metal2 +117600 42000 121800 46200 metal2 +117600 42000 130200 46200 metal3 +58800 92400 63000 100800 metal2 +58800 96600 63000 100800 metal1 +58800 96600 75600 100800 metal1 +71400 96600 75600 100800 metal1 +71400 96600 75600 105000 metal2 +71400 100800 75600 105000 metal1 +71400 100800 79800 105000 metal1 +58800 63000 63000 67200 metal2 +58800 63000 67200 67200 metal3 +63000 63000 67200 67200 metal2 +63000 63000 67200 67200 metal1 +46200 37800 50400 46200 metal2 +46200 42000 50400 46200 metal2 +46200 42000 71400 46200 metal3 +67200 42000 71400 46200 metal2 67200 42000 71400 46200 metal1 -58800 63000 63000 67200 metal1 -58800 63000 63000 79800 metal2 -58800 75600 63000 79800 metal1 +37800 63000 63000 67200 metal3 +42000 96600 54600 100800 metal3 +50400 96600 54600 100800 metal2 +50400 92400 54600 100800 metal2 +50400 92400 54600 96600 metal2 +50400 92400 63000 96600 metal3 +58800 92400 63000 96600 metal2 +58800 92400 63000 96600 metal1 ) _249_ ( -142800 63000 147000 75600 metal2 -142800 63000 147000 67200 metal2 -142800 63000 155400 67200 metal3 -151200 63000 155400 67200 metal2 -151200 63000 155400 71400 metal2 -151200 67200 155400 71400 metal2 -151200 67200 172200 71400 metal3 -168000 67200 172200 71400 metal2 -168000 67200 172200 88200 metal2 -168000 84000 172200 88200 metal2 -163800 84000 172200 88200 metal3 -163800 84000 168000 88200 metal2 -163800 84000 168000 96600 metal2 -163800 92400 168000 96600 metal2 -159600 92400 168000 96600 metal3 -159600 92400 163800 96600 metal2 -159600 92400 163800 117600 metal2 +142800 130200 147000 134400 metal1 +142800 130200 147000 134400 metal2 +142800 130200 155400 134400 metal3 +151200 130200 155400 134400 metal2 +151200 130200 155400 147000 metal2 92400 130200 96600 134400 metal1 92400 130200 96600 142800 metal2 -92400 138600 96600 142800 metal1 -92400 138600 100800 142800 metal1 -96600 138600 100800 142800 metal1 -96600 138600 100800 155400 metal2 -96600 151200 100800 155400 metal2 -96600 151200 130200 155400 metal3 -126000 151200 130200 155400 metal2 -126000 151200 159600 155400 metal3 -155400 151200 159600 155400 metal2 -155400 138600 159600 155400 metal2 -121800 71400 126000 75600 metal1 -121800 71400 126000 75600 metal2 -121800 71400 147000 75600 metal3 -142800 71400 147000 75600 metal2 -147000 113400 151200 117600 metal1 -147000 113400 151200 117600 metal2 -147000 113400 163800 117600 metal3 -159600 113400 163800 117600 metal2 +92400 138600 96600 151200 metal2 +92400 147000 96600 151200 metal2 +92400 147000 100800 151200 metal3 +96600 147000 100800 151200 metal2 +96600 147000 100800 163800 metal2 +96600 159600 100800 163800 metal2 +96600 159600 109200 163800 metal3 +105000 159600 109200 163800 metal2 +105000 159600 109200 168000 metal2 +105000 163800 109200 168000 metal2 +105000 163800 121800 168000 metal3 +117600 163800 121800 168000 metal2 +117600 163800 121800 172200 metal2 +117600 168000 121800 172200 metal2 +117600 168000 138600 172200 metal3 +134400 168000 138600 172200 metal2 +134400 142800 138600 172200 metal2 +126000 138600 130200 142800 metal1 +126000 138600 130200 142800 metal2 +126000 138600 134400 142800 metal3 +130200 138600 134400 142800 metal2 +130200 138600 134400 147000 metal2 +130200 142800 134400 147000 metal2 +130200 142800 138600 147000 metal3 +134400 142800 138600 147000 metal2 117600 75600 121800 79800 metal1 117600 75600 121800 79800 metal2 117600 75600 126000 79800 metal3 121800 75600 126000 79800 metal2 121800 75600 126000 79800 metal1 -105000 79800 109200 84000 metal1 -105000 79800 109200 84000 metal2 -105000 79800 117600 84000 metal3 -113400 79800 117600 84000 metal2 -113400 75600 117600 84000 metal2 -113400 75600 117600 79800 metal2 -113400 75600 121800 79800 metal3 +147000 113400 151200 117600 metal1 +147000 113400 151200 117600 metal2 +147000 113400 172200 117600 metal3 +168000 113400 172200 117600 metal2 121800 71400 126000 79800 metal2 +117600 71400 121800 75600 metal1 +117600 71400 121800 75600 metal2 +117600 71400 126000 75600 metal3 +121800 71400 126000 75600 metal2 +105000 79800 113400 84000 metal1 +109200 79800 113400 84000 metal1 +109200 75600 113400 84000 metal2 +109200 75600 113400 79800 metal2 +109200 75600 121800 79800 metal3 100800 84000 109200 88200 metal1 105000 84000 109200 88200 metal1 105000 79800 109200 88200 metal2 -155400 138600 159600 142800 metal2 -155400 138600 163800 142800 metal3 +105000 79800 109200 84000 metal1 +134400 142800 155400 147000 metal3 +151200 142800 155400 147000 metal2 +151200 142800 163800 147000 metal3 +159600 142800 163800 147000 metal2 +159600 138600 163800 147000 metal2 159600 138600 163800 142800 metal2 -159600 113400 163800 142800 metal2 -96600 138600 105000 142800 metal1 -126000 138600 130200 142800 metal1 -126000 138600 130200 155400 metal2 +159600 138600 168000 142800 metal3 +163800 138600 168000 142800 metal2 +163800 126000 168000 142800 metal2 +163800 126000 168000 130200 metal1 +163800 126000 176400 130200 metal1 +172200 126000 176400 130200 metal1 +172200 113400 176400 130200 metal2 +172200 113400 176400 117600 metal2 +168000 113400 176400 117600 metal3 +92400 138600 96600 142800 metal2 +92400 138600 105000 142800 metal3 +100800 138600 105000 142800 metal2 +100800 138600 105000 142800 metal1 +121800 67200 126000 75600 metal2 +121800 67200 126000 71400 metal2 +121800 67200 147000 71400 metal3 +142800 67200 147000 71400 metal2 142800 75600 147000 79800 metal1 -142800 71400 147000 79800 metal2 -142800 130200 155400 134400 metal1 -151200 130200 155400 134400 metal1 -151200 130200 155400 142800 metal2 -151200 138600 155400 142800 metal2 -151200 138600 159600 142800 metal3 -117600 71400 126000 75600 metal1 +142800 67200 147000 79800 metal2 +142800 67200 168000 71400 metal3 +163800 67200 168000 71400 metal2 +163800 67200 168000 88200 metal2 +163800 84000 168000 88200 metal2 +163800 84000 176400 88200 metal3 +172200 84000 176400 88200 metal2 +172200 84000 176400 92400 metal2 +172200 88200 176400 92400 metal1 +172200 88200 180600 92400 metal1 +176400 88200 180600 92400 metal1 +176400 88200 180600 109200 metal2 +176400 105000 180600 109200 metal2 +172200 105000 180600 109200 metal3 +172200 105000 176400 109200 metal2 +172200 105000 176400 113400 metal2 +172200 109200 176400 113400 metal2 +168000 109200 176400 113400 metal3 +168000 109200 172200 113400 metal2 +168000 109200 172200 117600 metal2 ) _250_ ( -100800 126000 105000 130200 metal1 -100800 121800 105000 130200 metal2 -100800 121800 105000 126000 metal1 -100800 121800 109200 126000 metal1 -105000 121800 109200 126000 metal1 -105000 117600 109200 126000 metal2 +100800 126000 109200 130200 metal1 +105000 126000 109200 130200 metal1 +105000 117600 109200 130200 metal2 105000 117600 109200 121800 metal1 105000 117600 113400 121800 metal1 109200 117600 113400 121800 metal1 @@ -3386,126 +3327,136 @@ _251_ ) _252_ ( -79800 92400 84000 96600 metal1 -79800 92400 84000 96600 metal2 -79800 92400 96600 96600 metal3 -92400 92400 96600 96600 metal2 -92400 92400 96600 100800 metal2 +84000 92400 92400 96600 metal2 +88200 92400 92400 100800 metal2 +88200 96600 96600 100800 metal2 92400 96600 96600 100800 metal1 75600 79800 84000 84000 metal1 79800 79800 84000 84000 metal1 -79800 79800 84000 96600 metal2 -67200 67200 75600 71400 metal1 -92400 25200 96600 37800 metal2 -92400 25200 96600 29400 metal2 -92400 25200 100800 29400 metal3 -96600 25200 100800 29400 metal2 -96600 21000 100800 29400 metal2 -96600 21000 100800 25200 metal2 -96600 21000 105000 25200 metal3 -100800 21000 105000 25200 metal2 -100800 21000 105000 29400 metal2 -100800 25200 105000 29400 metal1 -100800 25200 109200 29400 metal1 -105000 25200 109200 29400 metal1 -105000 25200 109200 50400 metal2 +79800 79800 84000 88200 metal2 +79800 84000 84000 88200 metal2 +79800 84000 88200 88200 metal3 +84000 84000 88200 88200 metal2 +84000 84000 88200 96600 metal2 +67200 67200 71400 71400 metal1 +67200 67200 71400 71400 metal2 +67200 67200 75600 71400 metal3 +71400 67200 75600 71400 metal2 +92400 29400 96600 37800 metal2 +92400 29400 96600 33600 metal1 +92400 29400 105000 33600 metal1 +100800 29400 105000 33600 metal1 +100800 29400 105000 37800 metal2 +100800 33600 105000 37800 metal1 +100800 33600 109200 37800 metal1 +105000 33600 109200 37800 metal1 +105000 33600 109200 50400 metal2 105000 46200 109200 50400 metal1 100800 46200 109200 50400 metal1 -71400 67200 75600 71400 metal1 -71400 42000 75600 71400 metal2 -71400 42000 75600 46200 metal1 -71400 42000 79800 46200 metal1 +71400 58800 75600 71400 metal2 +71400 58800 75600 63000 metal2 +71400 58800 79800 63000 metal3 +75600 58800 79800 63000 metal2 +75600 42000 79800 63000 metal2 +75600 42000 79800 46200 metal1 71400 67200 79800 71400 metal2 75600 67200 79800 84000 metal2 75600 79800 79800 84000 metal1 -75600 42000 79800 46200 metal1 -75600 33600 79800 46200 metal2 -75600 33600 79800 37800 metal2 -75600 33600 96600 37800 metal3 +75600 37800 79800 46200 metal2 +75600 37800 79800 42000 metal1 +75600 37800 84000 42000 metal1 +79800 37800 84000 42000 metal1 +79800 33600 84000 42000 metal2 +79800 33600 84000 37800 metal2 +79800 33600 96600 37800 metal3 92400 33600 96600 37800 metal2 92400 33600 96600 37800 metal1 +79800 92400 84000 96600 metal1 +79800 92400 84000 96600 metal2 +79800 92400 88200 96600 metal3 +84000 92400 88200 96600 metal2 ) _253_ ( -96600 130200 100800 134400 metal1 -96600 130200 100800 180600 metal2 -96600 176400 100800 180600 metal2 -96600 176400 142800 180600 metal3 -138600 176400 142800 180600 metal2 -138600 159600 142800 180600 metal2 -138600 159600 142800 163800 metal1 -138600 159600 147000 163800 metal1 -142800 159600 147000 163800 metal1 -142800 155400 147000 163800 metal2 -142800 155400 147000 159600 metal1 -142800 155400 151200 159600 metal1 -147000 155400 151200 159600 metal1 -147000 151200 151200 159600 metal2 -126000 117600 130200 121800 metal1 -126000 117600 130200 126000 metal2 -126000 121800 130200 126000 metal1 -126000 121800 134400 126000 metal1 -130200 121800 134400 126000 metal1 -130200 121800 134400 134400 metal2 130200 130200 134400 134400 metal1 -147000 151200 151200 155400 metal2 -147000 151200 180600 155400 metal3 -176400 151200 180600 155400 metal2 -176400 130200 180600 155400 metal2 -176400 130200 180600 134400 metal1 -172200 130200 180600 134400 metal1 -172200 130200 176400 134400 metal1 -172200 113400 176400 134400 metal2 -172200 113400 176400 117600 metal2 -163800 113400 176400 117600 metal3 -163800 113400 168000 117600 metal2 -163800 109200 168000 117600 metal2 -96600 130200 105000 134400 metal1 -130200 130200 134400 147000 metal2 -130200 142800 134400 147000 metal2 -130200 142800 151200 147000 metal3 -147000 142800 151200 147000 metal2 -147000 142800 151200 155400 metal2 -138600 79800 142800 88200 metal1 +130200 130200 134400 134400 metal2 +130200 130200 172200 134400 metal3 +168000 130200 172200 134400 metal2 +117600 75600 121800 79800 metal1 +117600 75600 121800 79800 metal2 +96600 75600 121800 79800 metal3 +96600 75600 100800 79800 metal2 +96600 75600 100800 79800 metal1 +75600 126000 79800 130200 metal2 +71400 126000 79800 130200 metal3 +71400 126000 75600 130200 metal2 +71400 126000 75600 142800 metal2 +71400 138600 75600 142800 metal1 +67200 138600 75600 142800 metal1 +67200 138600 71400 142800 metal1 +67200 138600 71400 151200 metal2 +67200 147000 71400 151200 metal2 +67200 147000 79800 151200 metal3 +75600 147000 79800 151200 metal2 +75600 147000 79800 159600 metal2 +75600 155400 79800 159600 metal2 +75600 155400 92400 159600 metal3 +88200 155400 92400 159600 metal2 +88200 155400 92400 180600 metal2 +88200 176400 92400 180600 metal2 +88200 176400 96600 180600 metal3 +92400 176400 96600 180600 metal2 +92400 176400 96600 184800 metal2 +92400 180600 96600 184800 metal2 +92400 180600 155400 184800 metal3 +151200 180600 155400 184800 metal2 +151200 172200 155400 184800 metal2 +151200 172200 155400 176400 metal1 +151200 172200 168000 176400 metal1 +163800 172200 168000 176400 metal1 +163800 168000 168000 176400 metal2 +163800 168000 168000 172200 metal2 +163800 168000 172200 172200 metal3 +168000 168000 172200 172200 metal2 +168000 130200 172200 172200 metal2 +117600 75600 134400 79800 metal1 +126000 117600 134400 121800 metal1 +130200 117600 134400 121800 metal1 +130200 117600 134400 134400 metal2 +75600 126000 88200 130200 metal3 +84000 126000 88200 130200 metal2 +84000 126000 92400 130200 metal2 +88200 126000 92400 130200 metal1 +88200 126000 92400 134400 metal1 +88200 130200 100800 134400 metal1 147000 109200 151200 113400 metal1 147000 109200 151200 113400 metal2 -147000 109200 168000 113400 metal3 -163800 109200 168000 113400 metal2 +147000 109200 172200 113400 metal3 +168000 109200 172200 113400 metal2 +130200 75600 134400 84000 metal1 +130200 75600 138600 79800 metal1 75600 96600 79800 100800 metal1 -75600 96600 79800 100800 metal2 -75600 96600 84000 100800 metal3 -79800 96600 84000 100800 metal2 +75600 96600 79800 130200 metal2 +168000 109200 172200 134400 metal2 +134400 79800 142800 84000 metal1 +134400 79800 138600 84000 metal1 +134400 75600 138600 84000 metal2 +134400 75600 138600 79800 metal1 +96600 130200 100800 134400 metal1 +96600 130200 100800 134400 metal2 +96600 130200 105000 134400 metal3 +100800 130200 105000 134400 metal2 +100800 130200 105000 134400 metal1 +75600 96600 84000 100800 metal1 +79800 96600 84000 100800 metal1 79800 92400 84000 100800 metal2 79800 92400 84000 96600 metal1 -79800 84000 84000 96600 metal2 -79800 84000 84000 88200 metal2 -79800 84000 96600 88200 metal3 -92400 84000 96600 88200 metal2 -92400 79800 96600 88200 metal2 -92400 79800 96600 84000 metal2 -92400 79800 100800 84000 metal3 -96600 79800 100800 84000 metal2 -130200 79800 134400 84000 metal1 -130200 79800 134400 88200 metal2 -130200 84000 134400 88200 metal1 -130200 84000 142800 88200 metal1 -117600 79800 134400 84000 metal1 -138600 84000 142800 88200 metal1 -138600 84000 142800 88200 metal2 -138600 84000 163800 88200 metal3 -159600 84000 163800 88200 metal2 -159600 84000 163800 92400 metal2 -159600 88200 163800 92400 metal2 -159600 88200 172200 92400 metal3 -168000 88200 172200 92400 metal2 -168000 88200 172200 113400 metal2 -168000 109200 172200 113400 metal2 -163800 109200 172200 113400 metal3 -96600 75600 100800 84000 metal2 -96600 75600 100800 79800 metal1 -96600 79800 121800 84000 metal3 -117600 79800 121800 84000 metal2 -117600 79800 121800 84000 metal1 +117600 75600 121800 84000 metal1 +134400 54600 138600 79800 metal2 +134400 54600 138600 58800 metal2 +134400 54600 172200 58800 metal3 +168000 54600 172200 58800 metal2 +168000 54600 172200 113400 metal2 ) _254_ ( @@ -3534,26 +3485,29 @@ _256_ _257_ ( 88200 138600 92400 142800 metal1 -88200 138600 92400 142800 metal2 -88200 138600 105000 142800 metal3 -100800 138600 105000 142800 metal2 -100800 134400 105000 142800 metal2 +88200 138600 92400 147000 metal2 +88200 142800 92400 147000 metal2 +88200 142800 100800 147000 metal3 +96600 142800 100800 147000 metal2 +96600 134400 100800 147000 metal2 +96600 134400 100800 138600 metal2 +96600 134400 105000 138600 metal3 +100800 134400 105000 138600 metal2 100800 134400 105000 138600 metal1 ) _258_ ( -105000 130200 109200 134400 metal1 +100800 121800 105000 134400 metal2 +100800 130200 105000 134400 metal2 +100800 130200 109200 134400 metal3 105000 130200 109200 134400 metal2 -105000 130200 113400 134400 metal3 -109200 130200 113400 134400 metal2 -109200 126000 113400 134400 metal2 +105000 130200 109200 134400 metal1 +100800 121800 105000 126000 metal2 +100800 121800 113400 126000 metal3 +109200 121800 113400 126000 metal2 109200 121800 113400 126000 metal1 -109200 121800 113400 130200 metal2 100800 117600 105000 121800 metal1 -100800 117600 105000 130200 metal2 -100800 126000 105000 130200 metal2 -100800 126000 113400 130200 metal3 -109200 126000 113400 130200 metal2 +100800 117600 105000 126000 metal2 ) _259_ ( @@ -3579,12 +3533,15 @@ _262_ ( 109200 121800 113400 126000 metal1 109200 121800 113400 134400 metal2 -109200 130200 113400 134400 metal1 -109200 130200 117600 134400 metal1 -109200 113400 113400 126000 metal2 -109200 113400 113400 117600 metal2 -109200 113400 117600 117600 metal3 -113400 113400 117600 117600 metal2 +109200 130200 113400 134400 metal2 +109200 130200 117600 134400 metal3 +113400 130200 117600 134400 metal2 +113400 130200 117600 134400 metal1 +109200 117600 113400 126000 metal2 +109200 117600 113400 121800 metal1 +109200 117600 117600 121800 metal1 +113400 117600 117600 121800 metal1 +113400 113400 117600 121800 metal2 113400 113400 117600 117600 metal1 ) _263_ @@ -3651,23 +3608,24 @@ _271_ ) _272_ ( -138600 88200 142800 92400 metal1 138600 84000 142800 92400 metal2 138600 84000 142800 88200 metal1 +134400 96600 138600 100800 metal1 +134400 92400 138600 100800 metal2 134400 96600 142800 100800 metal1 +134400 92400 138600 96600 metal2 +134400 88200 138600 96600 metal3 +134400 88200 142800 92400 metal3 +138600 88200 142800 92400 metal2 +138600 88200 142800 92400 metal1 +117600 113400 121800 117600 metal1 +117600 96600 121800 117600 metal2 +117600 96600 121800 100800 metal1 117600 96600 130200 100800 metal1 126000 96600 130200 100800 metal1 126000 92400 130200 100800 metal2 126000 92400 130200 96600 metal2 126000 92400 138600 96600 metal3 -134400 92400 138600 96600 metal2 -117600 113400 121800 117600 metal1 -117600 96600 121800 117600 metal2 -117600 96600 121800 100800 metal1 -134400 88200 138600 96600 metal2 -134400 88200 142800 92400 metal2 -134400 92400 138600 100800 metal2 -134400 96600 138600 100800 metal1 ) _273_ ( @@ -3785,12 +3743,16 @@ _286_ ) _287_ ( -92400 113400 96600 117600 metal1 -92400 109200 96600 117600 metal2 -92400 109200 96600 113400 metal2 -92400 109200 130200 113400 metal3 -126000 109200 130200 113400 metal2 -126000 109200 130200 117600 metal2 +92400 113400 100800 117600 metal1 +96600 113400 100800 117600 metal1 +96600 109200 100800 117600 metal2 +96600 109200 100800 113400 metal2 +96600 109200 126000 113400 metal3 +121800 109200 126000 113400 metal2 +121800 109200 126000 117600 metal2 +121800 113400 126000 117600 metal2 +121800 113400 130200 117600 metal3 +126000 113400 130200 117600 metal2 126000 113400 130200 117600 metal1 ) _288_ @@ -3870,23 +3832,24 @@ _297_ ) _298_ ( -75600 88200 79800 100800 metal2 +79800 88200 84000 92400 metal1 +79800 88200 84000 100800 metal2 +79800 96600 84000 100800 metal2 +75600 96600 84000 100800 metal3 +75600 96600 79800 100800 metal2 75600 96600 79800 100800 metal1 +75600 88200 79800 92400 metal1 75600 84000 79800 92400 metal2 75600 84000 79800 88200 metal1 -75600 88200 79800 92400 metal1 -75600 88200 79800 92400 metal2 -75600 88200 92400 92400 metal3 -88200 88200 92400 92400 metal2 +79800 88200 92400 92400 metal1 88200 88200 92400 92400 metal1 -88200 88200 113400 92400 metal3 -109200 88200 113400 92400 metal2 -109200 88200 113400 96600 metal2 -109200 92400 113400 96600 metal2 -109200 92400 117600 96600 metal3 +88200 88200 92400 96600 metal2 +88200 92400 92400 96600 metal2 +88200 92400 117600 96600 metal3 113400 92400 117600 96600 metal2 113400 92400 117600 100800 metal2 113400 96600 117600 100800 metal1 +75600 88200 84000 92400 metal1 ) _299_ ( @@ -3915,12 +3878,13 @@ _302_ 75600 88200 79800 92400 metal1 75600 84000 79800 92400 metal2 75600 84000 79800 88200 metal1 -71400 71400 79800 75600 metal1 -75600 71400 79800 75600 metal1 -75600 71400 79800 79800 metal2 -75600 75600 79800 79800 metal1 +71400 71400 75600 75600 metal1 +71400 71400 75600 79800 metal2 +71400 75600 75600 79800 metal1 +71400 75600 79800 79800 metal1 75600 75600 84000 79800 metal1 75600 75600 79800 88200 metal2 +75600 75600 79800 79800 metal1 ) _303_ ( @@ -3954,9 +3918,12 @@ _305_ _306_ ( 63000 84000 67200 88200 metal1 -63000 79800 67200 88200 metal2 -63000 79800 67200 84000 metal1 -63000 79800 79800 84000 metal1 +63000 84000 67200 88200 metal2 +63000 84000 71400 88200 metal3 +67200 84000 71400 88200 metal2 +67200 79800 71400 88200 metal2 +67200 79800 71400 84000 metal1 +67200 79800 79800 84000 metal1 ) _307_ ( @@ -3976,10 +3943,8 @@ _308_ ) _309_ ( -67200 75600 71400 79800 metal1 -67200 75600 71400 79800 metal2 -67200 75600 75600 79800 metal3 -71400 75600 75600 79800 metal2 +67200 75600 75600 79800 metal1 +71400 75600 75600 79800 metal1 71400 75600 75600 84000 metal2 71400 79800 75600 84000 metal1 ) @@ -3998,10 +3963,9 @@ _311_ 71400 75600 84000 79800 metal3 79800 75600 84000 79800 metal2 79800 75600 84000 79800 metal1 -79800 75600 88200 79800 metal3 -84000 75600 88200 79800 metal2 -84000 75600 88200 84000 metal2 -84000 79800 88200 84000 metal1 +79800 75600 84000 84000 metal2 +79800 79800 84000 84000 metal1 +79800 79800 88200 84000 metal1 ) _312_ ( @@ -4037,8 +4001,10 @@ _316_ ) _317_ ( -79800 75600 88200 79800 metal1 -84000 75600 88200 79800 metal1 +79800 75600 84000 79800 metal1 +79800 75600 84000 79800 metal2 +79800 75600 88200 79800 metal3 +84000 75600 88200 79800 metal2 84000 67200 88200 79800 metal2 84000 67200 88200 71400 metal1 84000 67200 96600 71400 metal1 @@ -4114,20 +4080,21 @@ _326_ ) _327_ ( -96600 46200 109200 50400 metal1 +96600 46200 100800 50400 metal1 +96600 46200 100800 50400 metal2 +96600 46200 109200 50400 metal3 +105000 46200 109200 50400 metal2 +105000 46200 109200 50400 metal1 92400 50400 96600 54600 metal1 92400 46200 96600 54600 metal2 -92400 46200 96600 50400 metal1 -92400 46200 100800 50400 metal1 -84000 79800 92400 84000 metal1 -84000 79800 88200 84000 metal1 -84000 58800 88200 84000 metal2 -84000 58800 88200 63000 metal2 -84000 58800 92400 63000 metal3 -88200 58800 92400 63000 metal2 -88200 50400 92400 63000 metal2 -88200 50400 92400 54600 metal1 -88200 50400 96600 54600 metal1 +92400 46200 96600 50400 metal2 +92400 46200 100800 50400 metal3 +88200 79800 92400 84000 metal1 +88200 75600 92400 84000 metal2 +88200 75600 92400 79800 metal1 +88200 75600 96600 79800 metal1 +92400 75600 96600 79800 metal1 +92400 50400 96600 79800 metal2 ) _328_ ( @@ -4146,10 +4113,10 @@ _329_ _330_ ( 105000 42000 109200 46200 metal1 -105000 42000 109200 46200 metal2 -105000 42000 113400 46200 metal3 -109200 42000 113400 46200 metal2 -109200 42000 113400 50400 metal2 +105000 42000 109200 50400 metal2 +105000 46200 109200 50400 metal2 +105000 46200 113400 50400 metal3 +109200 46200 113400 50400 metal2 109200 46200 113400 50400 metal1 ) _331_ @@ -4162,20 +4129,23 @@ _331_ ) _332_ ( -100800 46200 105000 50400 metal1 -100800 46200 105000 58800 metal2 100800 54600 105000 58800 metal1 -96600 42000 105000 46200 metal1 -100800 42000 105000 46200 metal1 -100800 42000 105000 50400 metal2 +100800 50400 105000 58800 metal2 +100800 50400 105000 54600 metal1 +96600 42000 100800 46200 metal1 +96600 42000 100800 54600 metal2 +96600 50400 100800 54600 metal1 +96600 50400 105000 54600 metal1 +100800 46200 105000 54600 metal2 +100800 46200 105000 50400 metal1 ) _333_ ( 96600 37800 100800 42000 metal1 -96600 37800 100800 46200 metal2 -96600 42000 100800 46200 metal2 -96600 42000 105000 46200 metal3 -100800 42000 105000 46200 metal2 +96600 37800 100800 42000 metal2 +96600 37800 105000 42000 metal3 +100800 37800 105000 42000 metal2 +100800 37800 105000 46200 metal2 100800 42000 105000 46200 metal1 ) _334_ @@ -4203,19 +4173,13 @@ _336_ ) _337_ ( -88200 50400 92400 54600 metal2 -88200 50400 96600 54600 metal3 -92400 50400 96600 54600 metal2 -92400 50400 96600 54600 metal1 -84000 46200 88200 50400 metal1 -84000 46200 88200 50400 metal2 -79800 46200 88200 50400 metal3 -79800 46200 84000 50400 metal2 -79800 46200 84000 54600 metal2 -79800 50400 84000 54600 metal2 -79800 50400 92400 54600 metal3 -88200 46200 92400 54600 metal2 88200 46200 92400 50400 metal1 +88200 46200 92400 50400 metal2 +88200 46200 96600 50400 metal3 +92400 46200 96600 50400 metal2 +92400 46200 96600 54600 metal2 +92400 50400 96600 54600 metal1 +84000 46200 92400 50400 metal1 ) _338_ ( @@ -4230,10 +4194,8 @@ _338_ ) _339_ ( -88200 46200 92400 50400 metal1 -88200 46200 92400 50400 metal2 -88200 46200 96600 50400 metal3 -92400 46200 96600 50400 metal2 +88200 46200 96600 50400 metal1 +92400 46200 96600 50400 metal1 92400 42000 96600 50400 metal2 92400 42000 96600 46200 metal1 84000 46200 92400 50400 metal1 @@ -4254,10 +4216,11 @@ _341_ ) _342_ ( -67200 46200 71400 50400 metal1 -67200 42000 71400 50400 metal2 -67200 42000 71400 46200 metal2 -67200 42000 79800 46200 metal3 +67200 46200 75600 50400 metal1 +71400 46200 75600 50400 metal1 +71400 42000 75600 50400 metal2 +71400 42000 75600 46200 metal2 +71400 42000 79800 46200 metal3 75600 42000 79800 46200 metal2 75600 42000 79800 46200 metal1 ) @@ -4265,11 +4228,10 @@ _343_ ( 63000 50400 67200 54600 metal1 63000 50400 67200 54600 metal2 -63000 50400 71400 54600 metal3 -67200 50400 71400 54600 metal2 -67200 46200 71400 54600 metal2 -67200 46200 71400 50400 metal1 -67200 46200 75600 50400 metal1 +63000 50400 75600 54600 metal3 +71400 50400 75600 54600 metal2 +71400 46200 75600 54600 metal2 +71400 46200 75600 50400 metal1 ) _344_ ( @@ -4295,13 +4257,14 @@ _346_ 88200 58800 92400 63000 metal1 ) _347_ -( -96600 75600 100800 79800 metal1 -96600 75600 100800 84000 metal2 -96600 79800 100800 84000 metal2 -96600 79800 109200 84000 metal3 -105000 79800 109200 84000 metal2 -105000 79800 109200 84000 metal1 +( +96600 75600 100800 79800 metal1 +96600 75600 100800 79800 metal2 +96600 75600 105000 79800 metal3 +100800 75600 105000 79800 metal2 +100800 75600 105000 84000 metal2 +100800 79800 105000 84000 metal1 +100800 79800 109200 84000 metal1 ) _348_ ( @@ -4310,15 +4273,15 @@ _348_ 109200 92400 113400 96600 metal2 109200 92400 121800 96600 metal3 117600 92400 121800 96600 metal2 -117600 92400 121800 105000 metal2 -117600 100800 121800 105000 metal1 -117600 100800 126000 105000 metal1 -121800 100800 126000 105000 metal1 -121800 100800 126000 134400 metal2 -121800 130200 126000 134400 metal1 -117600 130200 126000 134400 metal1 -117600 130200 121800 134400 metal1 -117600 130200 121800 138600 metal2 +117600 92400 121800 113400 metal2 +117600 109200 121800 113400 metal1 +117600 109200 126000 113400 metal1 +121800 109200 126000 113400 metal1 +121800 109200 126000 130200 metal2 +121800 126000 126000 130200 metal1 +117600 126000 126000 130200 metal1 +117600 126000 121800 130200 metal1 +117600 126000 121800 138600 metal2 117600 134400 121800 138600 metal2 113400 134400 121800 138600 metal3 113400 134400 117600 138600 metal2 @@ -4350,157 +4313,129 @@ _351_ ) _352_ ( -109200 58800 113400 63000 metal1 -109200 54600 113400 63000 metal2 -109200 54600 113400 58800 metal1 -109200 54600 126000 58800 metal1 -121800 54600 126000 58800 metal1 -121800 42000 126000 58800 metal2 -79800 46200 84000 50400 metal1 -79800 25200 84000 50400 metal2 -79800 25200 84000 29400 metal2 -79800 25200 96600 29400 metal3 -92400 25200 96600 29400 metal2 -92400 21000 96600 29400 metal2 -92400 21000 96600 25200 metal2 -92400 21000 121800 25200 metal3 -117600 21000 121800 25200 metal2 -117600 21000 121800 29400 metal2 -117600 25200 121800 29400 metal2 -117600 25200 130200 29400 metal3 -126000 25200 130200 29400 metal2 -126000 25200 130200 46200 metal2 -126000 42000 130200 46200 metal2 -121800 42000 130200 46200 metal3 -121800 42000 126000 46200 metal2 +88200 84000 92400 96600 metal2 +88200 84000 92400 88200 metal2 +88200 84000 96600 88200 metal3 +92400 84000 96600 88200 metal2 +92400 79800 96600 88200 metal2 +92400 79800 96600 84000 metal1 +92400 79800 105000 84000 metal1 +109200 67200 113400 71400 metal1 +109200 67200 113400 84000 metal2 +109200 79800 113400 84000 metal2 +100800 79800 113400 84000 metal3 +100800 79800 105000 84000 metal2 100800 79800 105000 84000 metal1 -100800 75600 105000 84000 metal2 -100800 75600 105000 79800 metal1 -100800 75600 109200 79800 metal1 -105000 75600 109200 79800 metal1 -105000 67200 109200 79800 metal2 -88200 92400 105000 96600 metal1 -100800 92400 105000 96600 metal1 -100800 79800 105000 96600 metal2 -75600 46200 84000 50400 metal1 +79800 50400 84000 54600 metal1 +79800 50400 84000 54600 metal2 +79800 50400 105000 54600 metal3 +100800 50400 105000 54600 metal2 +100800 46200 105000 54600 metal2 +100800 46200 105000 50400 metal1 +100800 46200 109200 50400 metal1 +105000 37800 109200 42000 metal1 +105000 37800 109200 50400 metal2 +105000 46200 109200 50400 metal1 +79800 63000 84000 67200 metal1 +79800 50400 84000 67200 metal2 84000 96600 88200 100800 metal1 84000 92400 88200 100800 metal2 -84000 92400 88200 96600 metal1 -84000 92400 92400 96600 metal1 -105000 67200 109200 71400 metal1 -105000 67200 109200 71400 metal2 -105000 67200 113400 71400 metal3 -109200 67200 113400 71400 metal2 +84000 92400 88200 96600 metal2 +84000 92400 92400 96600 metal3 +88200 92400 92400 96600 metal2 +88200 92400 92400 96600 metal1 +109200 58800 113400 63000 metal1 109200 58800 113400 71400 metal2 -105000 37800 109200 42000 metal1 -105000 37800 109200 42000 metal2 -105000 37800 121800 42000 metal3 -117600 37800 121800 42000 metal2 -117600 37800 121800 46200 metal2 -117600 42000 121800 46200 metal2 -117600 42000 126000 46200 metal3 -79800 46200 84000 54600 metal1 -79800 50400 84000 54600 metal1 -75600 50400 84000 54600 metal2 -75600 50400 79800 63000 metal2 -75600 58800 84000 63000 metal2 -79800 58800 84000 67200 metal2 -79800 63000 84000 67200 metal1 +105000 67200 113400 71400 metal1 +75600 46200 79800 50400 metal1 +75600 46200 79800 54600 metal2 +75600 50400 79800 54600 metal1 +75600 50400 84000 54600 metal1 +105000 46200 113400 50400 metal2 +109200 46200 113400 63000 metal2 ) _353_ ( -113400 142800 121800 147000 metal1 -117600 138600 121800 142800 metal1 -117600 138600 121800 147000 metal2 -117600 142800 121800 147000 metal1 -142800 147000 147000 151200 metal2 -142800 147000 168000 151200 metal3 -163800 147000 168000 151200 metal2 -163800 130200 168000 151200 metal2 -163800 130200 168000 134400 metal1 -159600 130200 168000 134400 metal1 -159600 130200 163800 134400 metal1 -159600 113400 163800 134400 metal2 -159600 113400 163800 117600 metal1 -155400 113400 163800 117600 metal1 -155400 113400 159600 117600 metal1 -155400 109200 159600 117600 metal2 -155400 109200 159600 113400 metal2 -151200 109200 159600 113400 metal3 -151200 109200 155400 113400 metal2 -121800 147000 126000 163800 metal2 -121800 147000 126000 151200 metal1 -117600 147000 126000 151200 metal1 -117600 147000 121800 151200 metal1 -117600 142800 121800 151200 metal2 +138600 117600 142800 121800 metal1 +138600 117600 142800 138600 metal2 138600 134400 142800 138600 metal1 -138600 134400 142800 151200 metal2 -138600 147000 142800 151200 metal2 -138600 147000 147000 151200 metal3 -151200 100800 155400 105000 metal1 -151200 92400 155400 105000 metal2 -151200 92400 155400 96600 metal1 -63000 147000 67200 163800 metal2 -63000 159600 67200 163800 metal2 -63000 159600 126000 163800 metal3 -121800 159600 126000 163800 metal2 -121800 159600 126000 163800 metal1 -63000 142800 67200 151200 metal2 -63000 142800 67200 147000 metal2 -63000 142800 75600 147000 metal3 -71400 142800 75600 147000 metal2 -71400 138600 75600 147000 metal2 -71400 138600 75600 142800 metal2 -71400 138600 79800 142800 metal3 -75600 138600 79800 142800 metal2 -75600 130200 79800 142800 metal2 -75600 130200 79800 134400 metal1 -75600 126000 79800 134400 metal1 -75600 126000 79800 130200 metal1 -75600 126000 84000 130200 metal2 -79800 126000 84000 130200 metal1 -79800 121800 84000 130200 metal1 -79800 121800 88200 126000 metal1 -84000 121800 88200 126000 metal1 -84000 121800 92400 126000 metal2 -88200 117600 92400 126000 metal2 88200 117600 92400 121800 metal1 -54600 92400 58800 100800 metal2 -54600 92400 58800 96600 metal1 -54600 92400 63000 96600 metal1 -58800 92400 63000 96600 metal1 -58800 84000 63000 96600 metal2 -58800 84000 63000 88200 metal1 -151200 100800 155400 113400 metal2 88200 92400 92400 121800 metal2 88200 92400 92400 96600 metal1 +117600 138600 121800 142800 metal1 +117600 138600 121800 147000 metal2 54600 96600 58800 100800 metal1 -54600 96600 58800 100800 metal2 -46200 96600 58800 100800 metal3 -46200 96600 50400 100800 metal2 -46200 96600 50400 151200 metal2 -46200 147000 50400 151200 metal2 -46200 147000 67200 151200 metal3 -63000 147000 67200 151200 metal2 -121800 159600 138600 163800 metal1 -134400 159600 138600 163800 metal1 -134400 159600 142800 163800 metal2 -138600 159600 142800 163800 metal1 -138600 155400 142800 163800 metal1 -138600 155400 142800 159600 metal1 -138600 155400 147000 159600 metal2 -142800 147000 147000 159600 metal2 -138600 117600 142800 121800 metal1 -138600 117600 142800 121800 metal2 -138600 117600 147000 121800 metal3 -142800 117600 147000 121800 metal2 -142800 109200 147000 121800 metal2 -142800 109200 147000 113400 metal2 -142800 109200 155400 113400 metal3 -121800 88200 126000 92400 metal1 -121800 88200 126000 96600 metal2 -121800 92400 126000 96600 metal1 -88200 92400 126000 96600 metal1 +54600 88200 58800 100800 metal2 +54600 88200 58800 92400 metal1 +54600 88200 63000 92400 metal1 +58800 88200 63000 92400 metal1 +58800 84000 63000 92400 metal2 +58800 84000 63000 88200 metal1 +151200 92400 155400 96600 metal1 +151200 92400 155400 105000 metal2 +151200 100800 155400 105000 metal1 +63000 130200 67200 163800 metal2 +63000 159600 67200 163800 metal2 +63000 159600 96600 163800 metal3 +92400 159600 96600 163800 metal2 +92400 155400 96600 163800 metal2 +92400 155400 96600 159600 metal2 +92400 155400 121800 159600 metal3 +117600 155400 121800 159600 metal2 +117600 155400 121800 159600 metal1 +142800 142800 147000 147000 metal1 +142800 142800 147000 147000 metal2 +142800 142800 168000 147000 metal3 +163800 142800 168000 147000 metal2 +163800 100800 168000 147000 metal2 +163800 100800 168000 105000 metal1 +151200 100800 168000 105000 metal1 +121800 88200 138600 92400 metal1 +134400 88200 138600 92400 metal1 +134400 84000 138600 92400 metal2 +134400 84000 138600 88200 metal1 +134400 84000 147000 88200 metal1 +142800 84000 147000 88200 metal1 +142800 84000 147000 92400 metal2 +142800 88200 147000 92400 metal1 +142800 88200 155400 92400 metal1 +151200 88200 155400 92400 metal1 +151200 88200 155400 96600 metal2 +50400 96600 58800 100800 metal1 +50400 96600 54600 100800 metal1 +50400 96600 54600 130200 metal2 +50400 126000 54600 130200 metal2 +50400 126000 67200 130200 metal3 +63000 126000 67200 130200 metal2 +63000 126000 67200 134400 metal2 +138600 134400 142800 147000 metal2 +138600 142800 142800 147000 metal1 +138600 142800 147000 147000 metal1 +63000 130200 67200 134400 metal2 +63000 130200 71400 134400 metal3 +67200 130200 71400 134400 metal2 +67200 126000 71400 134400 metal2 +67200 126000 71400 130200 metal2 +67200 126000 84000 130200 metal3 +79800 126000 84000 130200 metal2 +79800 126000 88200 130200 metal2 +84000 121800 88200 130200 metal2 +84000 121800 88200 126000 metal1 +84000 117600 88200 126000 metal1 +84000 117600 92400 121800 metal1 +113400 142800 117600 147000 metal1 +113400 142800 117600 147000 metal2 +113400 142800 121800 147000 metal3 +117600 142800 121800 147000 metal2 +117600 142800 121800 159600 metal2 +117600 155400 130200 159600 metal1 +126000 155400 130200 159600 metal1 +126000 155400 134400 159600 metal2 +130200 155400 134400 168000 metal2 +130200 163800 134400 168000 metal2 +130200 163800 147000 168000 metal3 +142800 163800 147000 168000 metal2 +142800 142800 147000 168000 metal2 ) _354_ ( @@ -4548,10 +4483,10 @@ _359_ _360_ ( 138600 117600 142800 121800 metal1 -138600 117600 142800 126000 metal2 -138600 121800 142800 126000 metal2 -138600 121800 147000 126000 metal3 -142800 121800 147000 126000 metal2 +138600 117600 142800 121800 metal2 +138600 117600 147000 121800 metal3 +142800 117600 147000 121800 metal2 +142800 117600 147000 126000 metal2 142800 121800 147000 126000 metal1 ) _361_ @@ -4565,13 +4500,10 @@ _361_ ) _362_ ( -54600 75600 58800 79800 metal1 -54600 75600 58800 79800 metal2 -50400 75600 58800 79800 metal3 -50400 75600 54600 79800 metal2 -50400 75600 54600 88200 metal2 -50400 84000 54600 88200 metal1 -50400 84000 63000 88200 metal1 +54600 75600 63000 79800 metal1 +58800 75600 63000 79800 metal1 +58800 75600 63000 88200 metal2 +58800 84000 63000 88200 metal1 ) _363_ ( @@ -4628,21 +4560,25 @@ _369_ ) _370_ ( -54600 63000 88200 67200 metal1 -54600 63000 58800 67200 metal1 -54600 58800 58800 67200 metal2 -54600 58800 58800 63000 metal2 -12600 58800 58800 63000 metal3 -12600 58800 16800 63000 metal2 -12600 58800 16800 151200 metal2 -12600 147000 16800 151200 metal2 -12600 147000 50400 151200 metal3 -46200 147000 50400 151200 metal2 -46200 147000 50400 163800 metal2 -46200 159600 50400 163800 metal2 -46200 159600 63000 163800 metal3 -58800 159600 63000 163800 metal2 -58800 159600 63000 176400 metal2 +79800 63000 88200 67200 metal1 +79800 63000 84000 67200 metal1 +79800 58800 84000 67200 metal2 +79800 58800 84000 63000 metal2 +29400 58800 84000 63000 metal3 +29400 58800 33600 63000 metal2 +29400 58800 33600 84000 metal2 +29400 79800 33600 84000 metal1 +25200 79800 33600 84000 metal1 +25200 79800 29400 84000 metal1 +25200 79800 29400 96600 metal2 +25200 92400 29400 96600 metal2 +25200 92400 33600 96600 metal3 +29400 92400 33600 96600 metal2 +29400 92400 33600 151200 metal2 +29400 147000 33600 151200 metal2 +29400 147000 63000 151200 metal3 +58800 147000 63000 151200 metal2 +58800 147000 63000 176400 metal2 58800 172200 63000 176400 metal2 58800 172200 121800 176400 metal3 117600 172200 121800 176400 metal2 @@ -4654,66 +4590,44 @@ _371_ 105000 25200 109200 29400 metal2 105000 25200 117600 29400 metal3 113400 25200 117600 29400 metal2 -113400 25200 117600 33600 metal2 -113400 29400 117600 33600 metal2 -113400 29400 138600 33600 metal3 -134400 29400 138600 33600 metal2 -134400 29400 138600 46200 metal2 -134400 42000 138600 46200 metal2 -130200 42000 138600 46200 metal3 -130200 42000 134400 46200 metal2 -130200 42000 134400 54600 metal2 -130200 50400 134400 54600 metal2 -126000 50400 134400 54600 metal3 -126000 50400 130200 54600 metal2 -126000 50400 130200 58800 metal2 -126000 54600 130200 58800 metal2 -105000 54600 130200 58800 metal3 -105000 54600 109200 58800 metal2 -105000 54600 109200 67200 metal2 +113400 25200 117600 42000 metal2 +113400 37800 117600 42000 metal1 +113400 37800 121800 42000 metal1 +117600 37800 121800 42000 metal1 +117600 37800 121800 63000 metal2 +117600 58800 121800 63000 metal2 +105000 58800 121800 63000 metal3 +105000 58800 109200 63000 metal2 +105000 58800 109200 67200 metal2 105000 63000 109200 67200 metal1 ) _372_ ( -113400 63000 126000 67200 metal1 -121800 63000 126000 67200 metal1 -121800 58800 126000 67200 metal2 -121800 58800 126000 63000 metal1 -121800 58800 130200 63000 metal1 -126000 58800 130200 63000 metal1 -126000 50400 130200 63000 metal2 -126000 50400 130200 54600 metal2 -126000 50400 142800 54600 metal3 -138600 50400 142800 54600 metal2 -138600 46200 142800 54600 metal2 -138600 46200 142800 50400 metal2 -138600 46200 163800 50400 metal3 -159600 46200 163800 50400 metal2 -159600 46200 163800 58800 metal2 -159600 54600 163800 58800 metal2 -159600 54600 180600 58800 metal3 -176400 54600 180600 58800 metal2 -176400 54600 180600 67200 metal2 -176400 63000 180600 67200 metal2 -176400 63000 184800 67200 metal3 -180600 63000 184800 67200 metal2 -180600 63000 184800 117600 metal2 -180600 113400 184800 117600 metal1 -176400 113400 184800 117600 metal1 -176400 113400 180600 117600 metal1 -176400 113400 180600 126000 metal2 -176400 121800 180600 126000 metal2 -176400 121800 184800 126000 metal3 -180600 121800 184800 126000 metal2 -180600 121800 184800 163800 metal2 -180600 159600 184800 163800 metal2 -172200 159600 184800 163800 metal3 -172200 159600 176400 163800 metal2 -172200 159600 176400 168000 metal2 -172200 163800 176400 168000 metal2 -117600 163800 176400 168000 metal3 -117600 163800 121800 168000 metal2 -117600 163800 121800 168000 metal1 +113400 63000 134400 67200 metal1 +130200 63000 134400 67200 metal1 +130200 58800 134400 67200 metal2 +130200 58800 134400 63000 metal1 +130200 58800 159600 63000 metal1 +155400 58800 159600 63000 metal1 +155400 58800 159600 67200 metal2 +155400 63000 159600 67200 metal2 +155400 63000 189000 67200 metal3 +184800 63000 189000 67200 metal2 +184800 63000 189000 113400 metal2 +184800 109200 189000 113400 metal1 +180600 109200 189000 113400 metal1 +180600 109200 184800 113400 metal1 +180600 109200 184800 168000 metal2 +180600 163800 184800 168000 metal2 +159600 163800 184800 168000 metal3 +159600 163800 163800 168000 metal2 +159600 163800 163800 172200 metal2 +159600 168000 163800 172200 metal2 +121800 168000 163800 172200 metal3 +121800 168000 126000 172200 metal2 +121800 163800 126000 172200 metal2 +121800 163800 126000 168000 metal1 +117600 163800 126000 168000 metal1 ) _373_ ( @@ -4736,22 +4650,28 @@ _375_ ( 21000 84000 25200 88200 metal1 21000 84000 25200 88200 metal2 -21000 84000 33600 88200 metal3 -29400 84000 33600 88200 metal2 -29400 84000 33600 92400 metal2 -29400 88200 33600 92400 metal2 -29400 88200 84000 92400 metal3 -79800 88200 84000 92400 metal2 -79800 84000 84000 92400 metal2 -79800 84000 84000 88200 metal1 -79800 84000 96600 88200 metal1 +21000 84000 29400 88200 metal3 +25200 84000 29400 88200 metal2 +25200 84000 29400 92400 metal2 +25200 88200 29400 92400 metal2 +25200 88200 88200 92400 metal3 +84000 88200 88200 92400 metal2 +84000 84000 88200 92400 metal2 +84000 84000 88200 88200 metal2 +84000 84000 96600 88200 metal3 +92400 84000 96600 88200 metal2 +92400 84000 96600 88200 metal1 ) _376_ ( 142800 134400 147000 138600 metal1 -142800 134400 147000 176400 metal2 -142800 172200 147000 176400 metal2 -142800 172200 155400 176400 metal3 +142800 134400 147000 147000 metal2 +142800 142800 147000 147000 metal2 +142800 142800 151200 147000 metal3 +147000 142800 151200 147000 metal2 +147000 142800 151200 176400 metal2 +147000 172200 151200 176400 metal2 +147000 172200 155400 176400 metal3 151200 172200 155400 176400 metal2 151200 172200 155400 176400 metal1 ) @@ -4759,68 +4679,71 @@ _377_ ( 109200 100800 113400 105000 metal1 109200 92400 113400 105000 metal2 -109200 92400 113400 96600 metal1 -109200 92400 126000 96600 metal1 -121800 92400 126000 96600 metal1 -121800 67200 126000 96600 metal2 -121800 67200 126000 71400 metal2 -121800 67200 142800 71400 metal3 -138600 67200 142800 71400 metal2 -138600 63000 142800 71400 metal2 -138600 63000 142800 67200 metal2 -138600 63000 176400 67200 metal3 -172200 63000 176400 67200 metal2 -172200 63000 176400 96600 metal2 +109200 92400 113400 96600 metal2 +109200 92400 130200 96600 metal3 +126000 92400 130200 96600 metal2 +126000 88200 130200 96600 metal2 +126000 88200 130200 92400 metal1 +126000 88200 138600 92400 metal1 +134400 88200 138600 92400 metal1 +134400 84000 138600 92400 metal2 +134400 84000 138600 88200 metal1 +134400 84000 168000 88200 metal1 +163800 84000 168000 88200 metal1 +163800 84000 168000 96600 metal2 +163800 92400 168000 96600 metal2 +163800 92400 176400 96600 metal3 +172200 92400 176400 96600 metal2 172200 92400 176400 96600 metal1 ) _378_ ( 71400 142800 75600 147000 metal1 -71400 142800 75600 147000 metal2 -71400 142800 96600 147000 metal3 -92400 142800 96600 147000 metal2 -92400 134400 96600 147000 metal2 -92400 134400 96600 138600 metal1 +71400 138600 75600 147000 metal2 +71400 138600 75600 142800 metal2 +71400 138600 92400 142800 metal3 +88200 138600 92400 142800 metal2 +88200 134400 92400 142800 metal2 +88200 134400 92400 138600 metal1 +88200 134400 96600 138600 metal1 ) _379_ ( 134400 134400 138600 138600 metal1 -134400 134400 138600 142800 metal2 -134400 138600 138600 142800 metal1 -134400 138600 142800 142800 metal1 -138600 138600 142800 142800 metal1 -138600 138600 142800 151200 metal2 +134400 134400 138600 147000 metal2 +134400 142800 138600 147000 metal2 +134400 142800 142800 147000 metal3 +138600 142800 142800 147000 metal2 +138600 142800 142800 151200 metal2 138600 147000 142800 151200 metal1 ) _380_ ( -79800 25200 84000 29400 metal1 -79800 25200 84000 29400 metal2 -46200 25200 84000 29400 metal3 -46200 25200 50400 29400 metal2 -46200 25200 50400 33600 metal2 -46200 29400 50400 33600 metal2 -42000 29400 50400 33600 metal3 -42000 29400 46200 33600 metal2 -42000 29400 46200 42000 metal2 -42000 37800 46200 42000 metal2 -33600 37800 46200 42000 metal3 -33600 37800 37800 42000 metal2 -33600 37800 37800 50400 metal2 -33600 46200 37800 50400 metal2 -16800 46200 37800 50400 metal3 -16800 46200 21000 50400 metal2 -16800 46200 21000 100800 metal2 -16800 96600 21000 100800 metal2 -16800 96600 33600 100800 metal3 -29400 96600 33600 100800 metal2 -29400 96600 33600 105000 metal2 -29400 100800 33600 105000 metal2 -29400 100800 42000 105000 metal3 -37800 100800 42000 105000 metal2 -37800 100800 42000 130200 metal2 -37800 126000 42000 130200 metal2 -37800 126000 88200 130200 metal3 +71400 25200 84000 29400 metal1 +71400 25200 75600 29400 metal1 +71400 21000 75600 29400 metal2 +71400 21000 75600 25200 metal2 +33600 21000 75600 25200 metal3 +33600 21000 37800 25200 metal2 +33600 21000 37800 29400 metal2 +33600 25200 37800 29400 metal2 +21000 25200 37800 29400 metal3 +21000 25200 25200 29400 metal2 +21000 25200 25200 37800 metal2 +21000 33600 25200 37800 metal2 +12600 33600 25200 37800 metal3 +12600 33600 16800 37800 metal2 +12600 33600 16800 92400 metal2 +12600 88200 16800 92400 metal1 +12600 88200 21000 92400 metal1 +16800 88200 21000 92400 metal1 +16800 88200 21000 113400 metal2 +16800 109200 21000 113400 metal2 +16800 109200 25200 113400 metal3 +21000 109200 25200 113400 metal2 +21000 109200 25200 130200 metal2 +21000 126000 25200 130200 metal2 +21000 126000 88200 130200 metal3 84000 126000 88200 130200 metal2 84000 113400 88200 130200 metal2 84000 113400 88200 117600 metal1 @@ -4829,35 +4752,23 @@ _380_ _381_ ( 33600 71400 37800 75600 metal1 -33600 46200 37800 75600 metal2 -33600 46200 37800 50400 metal2 -33600 46200 46200 50400 metal3 -42000 46200 46200 50400 metal2 -42000 33600 46200 50400 metal2 -42000 33600 46200 37800 metal2 -42000 33600 58800 37800 metal3 -54600 33600 58800 37800 metal2 -54600 8400 58800 37800 metal2 -54600 8400 58800 12600 metal2 -54600 8400 100800 12600 metal3 -96600 8400 100800 12600 metal2 -96600 4200 100800 12600 metal2 -96600 4200 100800 8400 metal1 -96600 4200 113400 8400 metal1 -109200 4200 113400 8400 metal1 -109200 4200 113400 12600 metal2 -109200 8400 113400 12600 metal1 -109200 8400 117600 12600 metal1 -113400 8400 117600 12600 metal1 -113400 4200 117600 12600 metal2 -113400 4200 117600 8400 metal2 -113400 4200 126000 8400 metal3 -121800 4200 126000 8400 metal2 -121800 4200 126000 12600 metal2 -121800 8400 126000 12600 metal2 -121800 8400 147000 12600 metal3 -142800 8400 147000 12600 metal2 -142800 8400 147000 29400 metal2 +33600 67200 37800 75600 metal2 +33600 67200 37800 71400 metal2 +33600 67200 42000 71400 metal3 +37800 67200 42000 71400 metal2 +37800 25200 42000 71400 metal2 +37800 25200 42000 29400 metal2 +37800 25200 54600 29400 metal3 +50400 25200 54600 29400 metal2 +50400 16800 54600 29400 metal2 +50400 16800 54600 21000 metal2 +50400 16800 67200 21000 metal3 +63000 16800 67200 21000 metal2 +63000 0 67200 21000 metal2 +63000 0 67200 4200 metal2 +63000 0 147000 4200 metal3 +142800 0 147000 4200 metal2 +142800 0 147000 29400 metal2 142800 25200 147000 29400 metal2 142800 25200 151200 29400 metal3 147000 25200 151200 29400 metal2 @@ -4871,10 +4782,11 @@ _381_ _382_ ( 147000 117600 151200 121800 metal1 -147000 117600 151200 121800 metal2 -147000 117600 168000 121800 metal3 -163800 117600 168000 121800 metal2 -163800 117600 168000 126000 metal2 +147000 117600 151200 130200 metal2 +147000 126000 151200 130200 metal2 +147000 126000 168000 130200 metal3 +163800 126000 168000 130200 metal2 +163800 121800 168000 130200 metal2 163800 121800 168000 126000 metal2 163800 121800 176400 126000 metal3 172200 121800 176400 126000 metal2 @@ -4883,88 +4795,68 @@ _382_ _383_ ( 138600 75600 142800 79800 metal1 -138600 67200 142800 79800 metal2 -138600 67200 142800 71400 metal2 -138600 67200 147000 71400 metal3 -142800 67200 147000 71400 metal2 +138600 71400 142800 79800 metal2 +138600 71400 142800 75600 metal2 +138600 71400 147000 75600 metal3 +142800 71400 147000 75600 metal2 +142800 67200 147000 75600 metal2 142800 67200 147000 71400 metal1 ) _384_ ( 84000 172200 88200 176400 metal1 -84000 126000 88200 176400 metal2 -84000 126000 88200 130200 metal1 -84000 126000 92400 130200 metal1 -88200 126000 92400 130200 metal1 -88200 121800 92400 130200 metal2 -88200 121800 92400 126000 metal1 -88200 121800 96600 126000 metal1 -92400 121800 96600 126000 metal1 -92400 113400 96600 126000 metal2 +84000 113400 88200 176400 metal2 +84000 113400 88200 117600 metal2 +84000 113400 96600 117600 metal3 +92400 113400 96600 117600 metal2 92400 113400 96600 117600 metal1 ) _385_ ( -71400 96600 84000 100800 metal1 -71400 96600 75600 100800 metal1 -71400 96600 75600 105000 metal2 -71400 100800 75600 105000 metal1 -58800 100800 75600 105000 metal1 -58800 100800 63000 105000 metal1 -58800 100800 63000 126000 metal2 -58800 121800 63000 126000 metal1 -54600 121800 63000 126000 metal1 -54600 121800 58800 126000 metal1 -54600 121800 58800 151200 metal2 -54600 147000 58800 151200 metal2 -54600 147000 71400 151200 metal3 -67200 147000 71400 151200 metal2 -67200 147000 71400 184800 metal2 -67200 180600 71400 184800 metal2 -67200 180600 88200 184800 metal3 -84000 180600 88200 184800 metal2 -84000 180600 88200 189000 metal2 -84000 184800 88200 189000 metal2 -84000 184800 138600 189000 metal3 -134400 184800 138600 189000 metal2 -134400 180600 138600 189000 metal2 -134400 180600 138600 184800 metal1 -134400 180600 163800 184800 metal1 -159600 180600 163800 184800 metal1 -159600 176400 163800 184800 metal2 -159600 176400 163800 180600 metal1 -159600 176400 168000 180600 metal1 -163800 176400 168000 180600 metal1 -163800 168000 168000 180600 metal2 -163800 168000 168000 172200 metal2 -163800 168000 176400 172200 metal3 -172200 168000 176400 172200 metal2 -172200 163800 176400 172200 metal2 -172200 163800 176400 168000 metal2 -172200 163800 189000 168000 metal3 -184800 163800 189000 168000 metal2 -184800 117600 189000 168000 metal2 -184800 117600 189000 121800 metal2 -180600 117600 189000 121800 metal3 -180600 117600 184800 121800 metal2 -180600 100800 184800 121800 metal2 -180600 100800 184800 105000 metal2 -172200 100800 184800 105000 metal3 -172200 100800 176400 105000 metal2 -172200 96600 176400 105000 metal2 +79800 96600 84000 100800 metal1 +79800 96600 84000 105000 metal2 +79800 100800 84000 105000 metal1 +75600 100800 84000 105000 metal1 +75600 100800 79800 105000 metal1 +75600 100800 79800 109200 metal2 +75600 105000 79800 109200 metal2 +71400 105000 79800 109200 metal3 +71400 105000 75600 109200 metal2 +71400 105000 75600 126000 metal2 +71400 121800 75600 126000 metal1 +67200 121800 75600 126000 metal1 +67200 121800 71400 126000 metal1 +67200 121800 71400 138600 metal2 +67200 134400 71400 138600 metal2 +63000 134400 71400 138600 metal3 +63000 134400 67200 138600 metal2 +63000 134400 67200 172200 metal2 +63000 168000 67200 172200 metal2 +63000 168000 75600 172200 metal3 +71400 168000 75600 172200 metal2 +71400 168000 75600 197400 metal2 +71400 193200 75600 197400 metal2 +71400 193200 163800 197400 metal3 +159600 193200 163800 197400 metal2 +159600 180600 163800 197400 metal2 +159600 180600 163800 184800 metal2 +159600 180600 189000 184800 metal3 +184800 180600 189000 184800 metal2 +184800 96600 189000 184800 metal2 +184800 96600 189000 100800 metal2 +172200 96600 189000 100800 metal3 +172200 96600 176400 100800 metal2 172200 96600 176400 100800 metal1 ) _386_ ( 54600 113400 58800 117600 metal1 54600 113400 58800 117600 metal2 -46200 113400 58800 117600 metal3 -46200 113400 50400 117600 metal2 -46200 84000 50400 117600 metal2 -46200 84000 50400 88200 metal2 -46200 84000 67200 88200 metal3 -63000 84000 67200 88200 metal2 -63000 84000 67200 88200 metal1 +54600 113400 63000 117600 metal3 +58800 113400 63000 117600 metal2 +58800 84000 63000 117600 metal2 +58800 84000 63000 88200 metal1 +58800 84000 67200 88200 metal1 ) _387_ ( @@ -4978,88 +4870,95 @@ _387_ _388_ ( 113400 172200 117600 176400 metal1 -113400 172200 117600 197400 metal2 -113400 193200 117600 197400 metal2 -113400 193200 134400 197400 metal3 -130200 193200 134400 197400 metal2 -130200 189000 134400 197400 metal2 -130200 189000 134400 193200 metal2 -130200 189000 193200 193200 metal3 +113400 172200 117600 193200 metal2 +113400 189000 117600 193200 metal2 +113400 189000 121800 193200 metal3 +117600 189000 121800 193200 metal2 +117600 189000 121800 201600 metal2 +117600 197400 121800 201600 metal2 +117600 197400 147000 201600 metal3 +142800 197400 147000 201600 metal2 +142800 189000 147000 201600 metal2 +142800 189000 147000 193200 metal2 +142800 189000 193200 193200 metal3 189000 189000 193200 193200 metal2 189000 58800 193200 193200 metal2 189000 58800 193200 63000 metal2 -168000 58800 193200 63000 metal3 -168000 58800 172200 63000 metal2 -168000 54600 172200 63000 metal2 -168000 54600 172200 58800 metal2 -138600 54600 172200 58800 metal3 -138600 54600 142800 58800 metal2 -138600 54600 142800 63000 metal2 -138600 58800 142800 63000 metal2 -121800 58800 142800 63000 metal3 -121800 58800 126000 63000 metal2 -121800 58800 126000 67200 metal2 -121800 63000 126000 67200 metal1 -113400 63000 126000 67200 metal1 -113400 63000 117600 67200 metal1 -113400 63000 117600 88200 metal2 +113400 58800 193200 63000 metal3 +113400 58800 117600 63000 metal2 +113400 58800 117600 88200 metal2 113400 84000 117600 88200 metal1 ) _389_ ( 21000 33600 25200 37800 metal1 -21000 33600 25200 37800 metal2 -21000 33600 42000 37800 metal3 -37800 33600 42000 37800 metal2 -37800 33600 42000 46200 metal2 -37800 42000 42000 46200 metal2 -37800 42000 71400 46200 metal3 -67200 42000 71400 46200 metal2 -67200 42000 71400 50400 metal2 -67200 46200 71400 50400 metal1 -67200 46200 88200 50400 metal1 -84000 46200 88200 50400 metal1 +21000 33600 25200 46200 metal2 +21000 42000 25200 46200 metal2 +21000 42000 67200 46200 metal3 +63000 42000 67200 46200 metal2 +63000 42000 67200 50400 metal2 +63000 46200 67200 50400 metal2 +63000 46200 88200 50400 metal3 +84000 46200 88200 50400 metal2 84000 42000 88200 50400 metal2 84000 42000 88200 46200 metal1 ) _390_ ( 84000 29400 88200 33600 metal1 -84000 29400 88200 42000 metal2 +84000 29400 88200 33600 metal2 +79800 29400 88200 33600 metal3 +79800 29400 84000 33600 metal2 +79800 29400 84000 42000 metal2 +79800 37800 84000 42000 metal2 +79800 37800 88200 42000 metal3 +84000 37800 88200 42000 metal2 84000 37800 88200 42000 metal1 ) _391_ ( 113400 147000 117600 151200 metal1 113400 147000 117600 151200 metal2 -113400 147000 142800 151200 metal3 -138600 147000 142800 151200 metal2 -138600 147000 142800 159600 metal2 -138600 155400 142800 159600 metal2 -138600 155400 168000 159600 metal3 -163800 155400 168000 159600 metal2 -163800 151200 168000 159600 metal2 +113400 147000 130200 151200 metal3 +126000 147000 130200 151200 metal2 +126000 147000 130200 155400 metal2 +126000 151200 130200 155400 metal2 +126000 151200 168000 155400 metal3 +163800 151200 168000 155400 metal2 163800 151200 168000 155400 metal1 ) _392_ ( 42000 172200 46200 176400 metal1 -42000 168000 46200 176400 metal2 -42000 168000 46200 172200 metal2 -8400 168000 46200 172200 metal3 +42000 172200 46200 176400 metal2 +16800 172200 46200 176400 metal3 +16800 172200 21000 176400 metal2 +16800 168000 21000 176400 metal2 +16800 168000 21000 172200 metal2 +8400 168000 21000 172200 metal3 8400 168000 12600 172200 metal2 -8400 50400 12600 172200 metal2 -8400 50400 12600 54600 metal2 -8400 50400 67200 54600 metal3 -63000 50400 67200 54600 metal2 -63000 50400 67200 54600 metal1 +8400 109200 12600 172200 metal2 +8400 109200 12600 113400 metal2 +4200 109200 12600 113400 metal3 +4200 109200 8400 113400 metal2 +4200 46200 8400 113400 metal2 +4200 46200 8400 50400 metal2 +4200 46200 63000 50400 metal3 +58800 46200 63000 50400 metal2 +58800 46200 63000 54600 metal2 +58800 50400 63000 54600 metal1 +58800 50400 67200 54600 metal1 ) _393_ ( 113400 134400 117600 138600 metal1 -113400 134400 117600 172200 metal2 -113400 168000 117600 172200 metal2 -113400 168000 121800 172200 metal3 +113400 134400 117600 147000 metal2 +113400 142800 117600 147000 metal1 +109200 142800 117600 147000 metal1 +109200 142800 113400 147000 metal1 +109200 142800 113400 172200 metal2 +109200 168000 113400 172200 metal2 +109200 168000 121800 172200 metal3 117600 168000 121800 172200 metal2 117600 168000 121800 176400 metal2 117600 172200 121800 176400 metal1 @@ -5069,9 +4968,13 @@ _394_ 21000 168000 25200 172200 metal1 21000 163800 25200 172200 metal2 21000 163800 25200 168000 metal2 -21000 163800 121800 168000 metal3 -117600 163800 121800 168000 metal2 -117600 142800 121800 168000 metal2 +21000 163800 96600 168000 metal3 +92400 163800 96600 168000 metal2 +92400 159600 96600 168000 metal2 +92400 159600 96600 163800 metal2 +92400 159600 121800 163800 metal3 +117600 159600 121800 163800 metal2 +117600 142800 121800 163800 metal2 117600 142800 121800 147000 metal1 ) _395_ @@ -5086,11 +4989,15 @@ _395_ _396_ ( 155400 96600 159600 100800 metal1 -155400 84000 159600 100800 metal2 -155400 84000 159600 88200 metal1 -155400 84000 168000 88200 metal1 -163800 84000 168000 88200 metal1 -163800 25200 168000 88200 metal2 +155400 88200 159600 100800 metal2 +155400 88200 159600 92400 metal2 +155400 88200 163800 92400 metal3 +159600 88200 163800 92400 metal2 +159600 46200 163800 92400 metal2 +159600 46200 163800 50400 metal2 +159600 46200 168000 50400 metal3 +163800 46200 168000 50400 metal2 +163800 25200 168000 50400 metal2 163800 25200 168000 29400 metal1 ) _397_ @@ -5099,27 +5006,47 @@ _397_ 21000 63000 25200 67200 metal2 21000 63000 29400 67200 metal3 25200 63000 29400 67200 metal2 -25200 25200 29400 67200 metal2 -25200 25200 29400 29400 metal2 -25200 25200 42000 29400 metal3 -37800 25200 42000 29400 metal2 -37800 4200 42000 29400 metal2 -37800 4200 42000 8400 metal2 -37800 4200 109200 8400 metal3 -105000 4200 109200 8400 metal2 -105000 0 109200 8400 metal2 -105000 0 109200 4200 metal2 -105000 0 117600 4200 metal3 -113400 0 117600 4200 metal2 -113400 0 117600 8400 metal2 -113400 4200 117600 8400 metal2 -113400 4200 130200 8400 metal3 -126000 4200 130200 8400 metal2 -126000 4200 130200 71400 metal2 -126000 67200 130200 71400 metal1 -121800 67200 130200 71400 metal1 -121800 67200 126000 71400 metal1 -121800 67200 126000 84000 metal2 +25200 29400 29400 67200 metal2 +25200 29400 29400 33600 metal2 +25200 29400 50400 33600 metal3 +46200 29400 50400 33600 metal2 +46200 16800 50400 33600 metal2 +46200 16800 50400 21000 metal2 +46200 16800 79800 21000 metal3 +75600 16800 79800 21000 metal2 +75600 16800 79800 25200 metal2 +75600 21000 79800 25200 metal2 +75600 21000 88200 25200 metal3 +84000 21000 88200 25200 metal2 +84000 12600 88200 25200 metal2 +84000 12600 88200 16800 metal2 +84000 12600 96600 16800 metal3 +92400 12600 96600 16800 metal2 +92400 12600 96600 21000 metal2 +92400 16800 96600 21000 metal1 +92400 16800 100800 21000 metal1 +96600 16800 100800 21000 metal1 +96600 12600 100800 21000 metal2 +96600 12600 100800 16800 metal2 +96600 12600 113400 16800 metal3 +109200 12600 113400 16800 metal2 +109200 8400 113400 16800 metal2 +109200 8400 113400 12600 metal2 +109200 8400 130200 12600 metal3 +126000 8400 130200 12600 metal2 +126000 8400 130200 37800 metal2 +126000 33600 130200 37800 metal1 +126000 33600 134400 37800 metal1 +130200 33600 134400 37800 metal1 +130200 33600 134400 50400 metal2 +130200 46200 134400 50400 metal1 +126000 46200 134400 50400 metal1 +126000 46200 130200 50400 metal1 +126000 46200 130200 58800 metal2 +126000 54600 130200 58800 metal2 +121800 54600 130200 58800 metal3 +121800 54600 126000 58800 metal2 +121800 54600 126000 84000 metal2 121800 79800 126000 84000 metal1 117600 79800 126000 84000 metal1 117600 79800 121800 84000 metal1 @@ -5148,99 +5075,92 @@ _400_ ( 21000 75600 25200 79800 metal1 21000 75600 25200 79800 metal2 -21000 75600 33600 79800 metal3 -29400 75600 33600 79800 metal2 -29400 75600 33600 84000 metal2 -29400 79800 33600 84000 metal2 -29400 79800 58800 84000 metal3 -54600 79800 58800 84000 metal2 +21000 75600 58800 79800 metal3 +54600 75600 58800 79800 metal2 +54600 75600 58800 84000 metal2 54600 79800 58800 84000 metal1 ) _401_ ( -109200 25200 113400 29400 metal2 -109200 25200 121800 29400 metal3 -117600 25200 121800 29400 metal2 -117600 25200 121800 33600 metal2 -117600 29400 126000 33600 metal2 -121800 29400 126000 50400 metal2 -121800 46200 126000 50400 metal2 -121800 46200 126000 54600 metal3 -117600 50400 126000 54600 metal3 -117600 50400 121800 54600 metal2 -117600 50400 121800 67200 metal2 -117600 63000 121800 67200 metal2 -113400 63000 121800 67200 metal3 -113400 63000 117600 67200 metal2 -113400 63000 117600 67200 metal1 -54600 71400 58800 84000 metal2 +92400 92400 113400 96600 metal1 54600 79800 58800 84000 metal1 -37800 46200 42000 75600 metal2 -37800 46200 42000 50400 metal2 -37800 46200 50400 50400 metal3 -46200 46200 50400 50400 metal2 -46200 33600 50400 50400 metal2 -46200 33600 50400 37800 metal2 -46200 33600 63000 37800 metal3 -58800 33600 63000 37800 metal2 -58800 29400 63000 37800 metal2 -58800 29400 63000 33600 metal2 -58800 29400 75600 33600 metal3 -71400 29400 75600 33600 metal2 +54600 79800 58800 84000 metal2 +50400 79800 58800 84000 metal3 +50400 79800 54600 84000 metal2 +50400 100800 54600 105000 metal1 +50400 96600 54600 105000 metal2 +50400 96600 54600 100800 metal1 +46200 96600 54600 100800 metal1 +46200 96600 50400 100800 metal1 +46200 79800 50400 100800 metal2 +46200 79800 50400 84000 metal2 +46200 79800 54600 84000 metal3 +105000 63000 113400 67200 metal1 +109200 33600 117600 37800 metal1 +113400 33600 117600 37800 metal1 +113400 29400 117600 37800 metal2 +113400 63000 117600 67200 metal1 +113400 63000 117600 67200 metal2 +109200 63000 117600 67200 metal3 +109200 63000 113400 67200 metal2 +109200 63000 113400 67200 metal1 79800 100800 92400 105000 metal1 88200 100800 92400 105000 metal1 88200 96600 92400 105000 metal2 -88200 96600 92400 100800 metal2 -88200 96600 96600 100800 metal3 -92400 96600 96600 100800 metal2 -37800 71400 42000 100800 metal2 -37800 96600 42000 100800 metal2 -37800 96600 54600 100800 metal3 -50400 96600 54600 100800 metal2 -50400 96600 54600 105000 metal2 -50400 100800 54600 105000 metal1 -92400 84000 96600 100800 metal2 +88200 96600 92400 100800 metal1 +88200 96600 96600 100800 metal1 +92400 96600 96600 100800 metal1 +92400 92400 96600 100800 metal2 +92400 92400 96600 96600 metal1 +109200 63000 113400 96600 metal2 +109200 92400 113400 96600 metal1 +71400 37800 75600 42000 metal1 +71400 37800 75600 58800 metal2 +71400 54600 75600 58800 metal2 +71400 54600 79800 58800 metal3 +75600 54600 79800 58800 metal2 +75600 54600 79800 63000 metal2 +75600 58800 79800 63000 metal1 +75600 58800 84000 63000 metal1 +79800 58800 84000 63000 metal1 +79800 58800 84000 67200 metal2 +79800 63000 84000 67200 metal1 +92400 84000 96600 96600 metal2 92400 84000 96600 88200 metal1 -92400 96600 113400 100800 metal3 -109200 96600 113400 100800 metal2 -109200 96600 113400 100800 metal1 -54600 100800 58800 105000 metal1 -54600 100800 58800 105000 metal2 -54600 100800 84000 105000 metal3 -79800 100800 84000 105000 metal2 -79800 100800 84000 105000 metal1 -71400 21000 75600 33600 metal2 +109200 92400 113400 100800 metal1 +113400 63000 121800 67200 metal1 +117600 63000 121800 67200 metal1 +117600 58800 121800 67200 metal2 +117600 58800 121800 63000 metal2 +117600 58800 126000 63000 metal3 +121800 58800 126000 63000 metal2 +121800 29400 126000 63000 metal2 +121800 29400 126000 33600 metal2 +113400 29400 126000 33600 metal3 +113400 29400 117600 33600 metal2 +71400 21000 75600 42000 metal2 71400 21000 75600 25200 metal2 -71400 21000 79800 25200 metal3 -75600 21000 79800 25200 metal2 -75600 16800 79800 25200 metal2 -75600 16800 79800 21000 metal2 -75600 16800 88200 21000 metal3 -84000 16800 88200 21000 metal2 -84000 12600 88200 21000 metal2 -84000 12600 88200 16800 metal2 -84000 12600 100800 16800 metal3 -96600 12600 100800 16800 metal2 -96600 12600 100800 21000 metal2 -96600 16800 100800 21000 metal2 -96600 16800 113400 21000 metal3 -109200 16800 113400 21000 metal2 -109200 16800 113400 29400 metal2 -71400 37800 75600 42000 metal1 -71400 29400 75600 42000 metal2 -109200 25200 113400 37800 metal2 -109200 33600 113400 37800 metal1 -105000 63000 117600 67200 metal1 -67200 63000 84000 67200 metal1 -67200 63000 71400 67200 metal1 -67200 63000 71400 75600 metal2 -67200 71400 71400 75600 metal1 -54600 71400 71400 75600 metal1 -37800 71400 42000 75600 metal2 -37800 71400 58800 75600 metal3 -54600 71400 58800 75600 metal2 -54600 71400 58800 75600 metal1 +71400 21000 84000 25200 metal3 +79800 21000 84000 25200 metal2 +79800 16800 84000 25200 metal2 +79800 16800 84000 21000 metal2 +79800 16800 109200 21000 metal3 +105000 16800 109200 21000 metal2 +105000 16800 109200 25200 metal2 +105000 21000 109200 25200 metal1 +105000 21000 113400 25200 metal1 +109200 21000 113400 25200 metal1 +109200 21000 113400 33600 metal2 +109200 29400 113400 33600 metal2 +109200 29400 117600 33600 metal3 50400 100800 58800 105000 metal1 +50400 33600 54600 84000 metal2 +50400 33600 54600 37800 metal1 +50400 33600 58800 37800 metal1 +54600 33600 58800 37800 metal1 +54600 21000 58800 37800 metal2 +54600 21000 58800 25200 metal2 +54600 21000 75600 25200 metal3 ) _402_ ( @@ -5249,9 +5169,13 @@ _402_ 79800 130200 84000 134400 metal2 79800 130200 84000 134400 metal1 67200 113400 71400 117600 metal1 -67200 113400 71400 134400 metal2 -67200 130200 71400 134400 metal2 -67200 130200 79800 134400 metal3 +67200 113400 71400 121800 metal2 +67200 117600 71400 121800 metal1 +67200 117600 75600 121800 metal1 +71400 117600 75600 121800 metal1 +71400 117600 75600 134400 metal2 +71400 130200 75600 134400 metal2 +71400 130200 79800 134400 metal3 75600 121800 79800 134400 metal2 75600 121800 79800 126000 metal1 ) @@ -5266,24 +5190,32 @@ _403_ 71400 113400 75600 117600 metal2 71400 113400 75600 117600 metal1 54600 109200 58800 113400 metal1 -54600 109200 58800 117600 metal2 -54600 113400 58800 117600 metal2 -54600 113400 67200 117600 metal3 +54600 109200 58800 113400 metal2 +54600 109200 63000 113400 metal3 +58800 109200 63000 113400 metal2 +58800 109200 63000 117600 metal2 +58800 113400 63000 117600 metal2 +58800 113400 67200 117600 metal3 63000 113400 67200 117600 metal2 63000 113400 67200 117600 metal1 ) _404_ ( -96600 105000 100800 138600 metal2 -96600 105000 100800 109200 metal1 -96600 105000 105000 109200 metal1 +92400 126000 96600 138600 metal2 +92400 126000 96600 130200 metal1 +92400 126000 100800 130200 metal1 +96600 126000 100800 130200 metal1 +96600 113400 100800 130200 metal2 +96600 113400 100800 117600 metal1 +96600 113400 105000 117600 metal1 +100800 113400 105000 117600 metal1 +100800 105000 105000 117600 metal2 100800 105000 105000 109200 metal1 100800 100800 105000 109200 metal2 100800 100800 105000 105000 metal1 -92400 134400 100800 138600 metal1 -96600 134400 100800 138600 metal1 -96600 134400 100800 138600 metal2 -96600 134400 109200 138600 metal3 +92400 134400 96600 138600 metal1 +92400 134400 96600 138600 metal2 +92400 134400 109200 138600 metal3 105000 134400 109200 138600 metal2 105000 134400 109200 138600 metal1 ) @@ -5306,27 +5238,23 @@ _406_ ( 117600 71400 121800 84000 metal2 117600 79800 121800 84000 metal1 -117600 71400 121800 75600 metal1 -117600 71400 121800 75600 metal2 -117600 71400 126000 75600 metal3 -121800 71400 126000 75600 metal2 -121800 67200 126000 75600 metal2 -121800 67200 126000 71400 metal2 -121800 67200 130200 71400 metal3 +117600 67200 121800 75600 metal2 +117600 67200 121800 71400 metal2 +117600 67200 130200 71400 metal3 126000 67200 130200 71400 metal2 126000 67200 130200 71400 metal1 -100800 71400 121800 75600 metal1 +100800 71400 105000 75600 metal1 +100800 71400 105000 75600 metal2 +100800 71400 121800 75600 metal3 +117600 71400 121800 75600 metal2 ) _407_ ( 105000 46200 113400 50400 metal1 109200 46200 113400 50400 metal1 -109200 42000 113400 50400 metal2 -109200 42000 113400 46200 metal1 -109200 42000 117600 46200 metal1 -113400 42000 117600 46200 metal1 -113400 33600 117600 46200 metal2 -113400 33600 117600 37800 metal1 +109200 33600 113400 50400 metal2 +109200 33600 113400 37800 metal1 +109200 33600 117600 37800 metal1 ) _408_ ( @@ -5348,30 +5276,26 @@ _409_ 75600 42000 79800 46200 metal2 75600 42000 84000 46200 metal3 79800 42000 84000 46200 metal2 -79800 21000 84000 46200 metal2 -79800 21000 84000 25200 metal2 -79800 21000 88200 25200 metal3 +79800 42000 84000 46200 metal1 +79800 25200 84000 46200 metal2 +79800 25200 84000 29400 metal2 +79800 25200 88200 29400 metal3 +84000 25200 88200 29400 metal2 +84000 21000 88200 29400 metal2 84000 21000 88200 25200 metal2 -84000 8400 88200 25200 metal2 -84000 8400 88200 12600 metal2 -84000 8400 134400 12600 metal3 -130200 8400 134400 12600 metal2 -130200 8400 134400 16800 metal2 -130200 12600 134400 16800 metal2 -130200 12600 142800 16800 metal3 -138600 12600 142800 16800 metal2 -138600 12600 142800 29400 metal2 -138600 25200 142800 29400 metal2 -138600 25200 147000 29400 metal3 -142800 25200 147000 29400 metal2 -142800 25200 147000 42000 metal2 -142800 37800 147000 42000 metal2 -126000 37800 147000 42000 metal3 -126000 37800 130200 42000 metal2 +84000 21000 113400 25200 metal3 +109200 21000 113400 25200 metal2 +109200 16800 113400 25200 metal2 +109200 16800 113400 21000 metal2 +109200 16800 126000 21000 metal3 +121800 16800 126000 21000 metal2 +121800 16800 126000 25200 metal2 +121800 21000 126000 25200 metal2 +121800 21000 130200 25200 metal3 +126000 21000 130200 25200 metal2 +126000 21000 130200 42000 metal2 126000 37800 130200 42000 metal1 -79800 42000 88200 46200 metal3 -84000 42000 88200 46200 metal2 -84000 42000 88200 46200 metal1 +79800 42000 88200 46200 metal1 ) _410_ ( @@ -5389,55 +5313,53 @@ _410_ ) _411_ ( +96600 130200 100800 134400 metal1 96600 121800 100800 134400 metal2 96600 121800 100800 126000 metal1 96600 121800 105000 126000 metal1 88200 138600 92400 142800 metal1 -88200 130200 92400 142800 metal2 -88200 130200 92400 134400 metal2 -88200 130200 100800 134400 metal3 -96600 130200 100800 134400 metal2 -96600 130200 100800 134400 metal1 +88200 138600 92400 142800 metal2 +88200 138600 100800 142800 metal3 +96600 138600 100800 142800 metal2 +96600 130200 100800 142800 metal2 ) _412_ ( -100800 130200 105000 134400 metal1 -100800 130200 105000 134400 metal2 -100800 130200 109200 134400 metal3 -105000 130200 109200 134400 metal2 -105000 126000 109200 134400 metal2 +100800 126000 105000 130200 metal2 +100800 126000 109200 130200 metal3 +105000 126000 109200 130200 metal2 105000 126000 109200 130200 metal1 79800 130200 84000 134400 metal1 -79800 130200 84000 134400 metal2 -79800 130200 105000 134400 metal3 +79800 126000 84000 134400 metal2 +79800 126000 84000 130200 metal2 +79800 126000 105000 130200 metal3 +100800 126000 105000 134400 metal2 +100800 130200 105000 134400 metal1 ) _413_ ( +130200 126000 134400 134400 metal2 130200 130200 134400 134400 metal1 -130200 130200 134400 134400 metal2 -130200 130200 155400 134400 metal3 -151200 130200 155400 134400 metal2 -151200 121800 155400 134400 metal2 +130200 126000 134400 130200 metal2 +130200 126000 155400 130200 metal3 +151200 126000 155400 130200 metal2 +151200 121800 155400 130200 metal2 151200 121800 155400 126000 metal1 121800 126000 126000 130200 metal1 121800 126000 126000 130200 metal2 121800 126000 134400 130200 metal3 -130200 126000 134400 130200 metal2 -130200 126000 134400 134400 metal2 ) _414_ ( -138600 88200 142800 92400 metal1 -138600 84000 142800 92400 metal2 +134400 79800 138600 88200 metal2 +134400 84000 138600 88200 metal1 +134400 84000 138600 92400 metal1 +134400 88200 142800 92400 metal1 134400 63000 138600 67200 metal1 -134400 63000 138600 67200 metal2 -134400 63000 151200 67200 metal3 -147000 63000 151200 67200 metal2 -147000 63000 151200 88200 metal2 -147000 84000 151200 88200 metal2 -138600 84000 151200 88200 metal3 -138600 84000 142800 88200 metal2 -138600 79800 142800 88200 metal2 +134400 63000 138600 84000 metal2 +134400 79800 138600 84000 metal2 +134400 79800 142800 84000 metal3 +138600 79800 142800 84000 metal2 138600 79800 142800 84000 metal1 ) _415_ @@ -5446,10 +5368,11 @@ _415_ 142800 100800 147000 113400 metal2 142800 100800 147000 105000 metal1 142800 100800 147000 105000 metal2 -142800 100800 163800 105000 metal3 -159600 100800 163800 105000 metal2 -159600 92400 163800 105000 metal2 -159600 92400 163800 96600 metal1 +142800 100800 168000 105000 metal3 +163800 100800 168000 105000 metal2 +163800 92400 168000 105000 metal2 +163800 92400 168000 96600 metal1 +159600 92400 168000 96600 metal1 142800 96600 147000 105000 metal1 ) _416_ @@ -5458,36 +5381,40 @@ _416_ 130200 79800 134400 96600 metal2 130200 79800 134400 84000 metal1 126000 71400 130200 75600 metal1 -126000 71400 130200 84000 metal2 -126000 79800 130200 84000 metal1 -126000 79800 134400 84000 metal1 +126000 71400 130200 75600 metal2 +126000 71400 134400 75600 metal3 +130200 71400 134400 75600 metal2 +130200 71400 134400 84000 metal2 ) _417_ ( 126000 109200 130200 113400 metal1 +126000 109200 130200 113400 metal2 +126000 109200 155400 113400 metal3 +151200 109200 155400 113400 metal2 +151200 109200 155400 117600 metal2 +151200 113400 155400 117600 metal1 +151200 113400 159600 117600 metal1 +155400 113400 159600 117600 metal1 +155400 113400 159600 126000 metal2 +155400 121800 159600 126000 metal1 126000 109200 130200 121800 metal2 126000 117600 130200 121800 metal1 -126000 117600 134400 121800 metal1 -130200 117600 134400 121800 metal1 -130200 117600 134400 130200 metal2 -130200 126000 134400 130200 metal2 -130200 126000 159600 130200 metal3 -155400 126000 159600 130200 metal2 -155400 121800 159600 130200 metal2 -155400 121800 159600 126000 metal1 ) _418_ ( -75600 92400 79800 96600 metal1 -75600 92400 79800 100800 metal2 75600 96600 79800 100800 metal1 +75600 92400 79800 100800 metal2 +75600 92400 79800 96600 metal1 67200 105000 71400 109200 metal1 67200 105000 71400 109200 metal2 67200 105000 75600 109200 metal3 71400 105000 75600 109200 metal2 -71400 96600 75600 109200 metal2 -71400 96600 75600 100800 metal1 -71400 96600 79800 100800 metal1 +71400 100800 75600 109200 metal2 +71400 100800 75600 105000 metal2 +71400 100800 79800 105000 metal3 +75600 100800 79800 105000 metal2 +75600 96600 79800 105000 metal2 ) _419_ ( @@ -5502,262 +5429,241 @@ _420_ 58800 130200 63000 134400 metal2 58800 130200 67200 134400 metal3 63000 130200 67200 134400 metal2 -63000 121800 67200 134400 metal2 +63000 126000 67200 134400 metal2 +63000 126000 67200 130200 metal2 +63000 126000 71400 130200 metal3 +67200 126000 71400 130200 metal2 +67200 117600 71400 130200 metal2 +67200 117600 71400 121800 metal1 +63000 121800 67200 130200 metal2 63000 121800 67200 126000 metal1 -63000 117600 67200 126000 metal2 -63000 117600 67200 121800 metal1 -63000 117600 71400 121800 metal1 ) _421_ ( 67200 117600 71400 121800 metal1 67200 109200 71400 121800 metal2 67200 109200 71400 113400 metal1 -63000 117600 67200 126000 metal2 -63000 117600 67200 121800 metal1 -63000 117600 71400 121800 metal1 63000 121800 67200 126000 metal1 63000 121800 67200 126000 metal2 -50400 121800 67200 126000 metal3 -50400 121800 54600 126000 metal2 -50400 117600 54600 126000 metal2 -50400 117600 54600 121800 metal2 -42000 117600 54600 121800 metal3 -42000 117600 46200 121800 metal2 -42000 109200 46200 121800 metal2 -42000 109200 46200 113400 metal1 -33600 109200 46200 113400 metal1 -33600 109200 37800 113400 metal1 -33600 63000 37800 113400 metal2 -33600 63000 37800 67200 metal1 -33600 63000 46200 67200 metal1 -42000 63000 46200 67200 metal1 -42000 50400 46200 67200 metal2 -42000 50400 46200 54600 metal2 -42000 50400 54600 54600 metal3 -50400 50400 54600 54600 metal2 -50400 50400 54600 58800 metal2 -50400 54600 54600 58800 metal2 -50400 54600 75600 58800 metal3 +12600 121800 67200 126000 metal3 +12600 121800 16800 126000 metal2 +12600 84000 16800 126000 metal2 +12600 84000 16800 88200 metal2 +12600 84000 21000 88200 metal3 +16800 84000 21000 88200 metal2 +16800 54600 21000 88200 metal2 +16800 54600 21000 58800 metal2 +16800 54600 75600 58800 metal3 71400 54600 75600 58800 metal2 71400 54600 75600 58800 metal1 +63000 121800 71400 126000 metal1 +67200 121800 71400 126000 metal1 +67200 117600 71400 126000 metal2 ) clk ( -100800 147000 105000 184800 metal2 -50400 121800 54600 126000 metal2 -50400 117600 54600 126000 metal3 -50400 117600 54600 121800 metal2 -130200 121800 134400 130200 metal1 -63000 96600 71400 100800 metal1 -67200 96600 71400 100800 metal1 -67200 96600 71400 105000 metal2 -42000 71400 46200 88200 metal2 -42000 71400 46200 75600 metal2 -42000 71400 54600 75600 metal3 -50400 71400 54600 75600 metal2 -134400 126000 138600 130200 metal1 -134400 113400 138600 130200 metal2 -134400 113400 138600 117600 metal1 -75600 29400 79800 33600 metal2 -75600 29400 92400 33600 metal3 -88200 29400 92400 33600 metal2 -88200 29400 92400 33600 metal1 -151200 75600 155400 79800 metal1 -151200 75600 155400 88200 metal2 -151200 84000 155400 88200 metal1 -117600 46200 121800 50400 metal1 -117600 46200 121800 50400 metal2 -117600 46200 138600 50400 metal3 -134400 46200 138600 50400 metal2 -50400 121800 54600 155400 metal2 -50400 151200 54600 155400 metal2 -50400 151200 71400 155400 metal3 -67200 151200 71400 155400 metal2 -67200 147000 71400 155400 metal2 -67200 147000 71400 151200 metal2 -67200 147000 84000 151200 metal3 -79800 147000 84000 151200 metal2 -42000 84000 46200 88200 metal2 -42000 84000 54600 88200 metal3 -50400 84000 54600 88200 metal2 -50400 84000 54600 88200 metal1 -134400 46200 138600 67200 metal2 -71400 50400 75600 54600 metal1 -71400 50400 75600 63000 metal2 -130200 147000 134400 159600 metal2 -50400 105000 54600 121800 metal2 -50400 105000 54600 109200 metal2 -50400 105000 58800 109200 metal3 -54600 105000 58800 109200 metal2 -54600 105000 58800 109200 metal1 -151200 71400 155400 79800 metal2 -67200 100800 71400 105000 metal2 -67200 100800 75600 105000 metal3 -71400 100800 75600 105000 metal2 -71400 100800 75600 113400 metal2 +100800 147000 105000 151200 metal1 +100800 147000 105000 155400 metal2 +54600 100800 58800 109200 metal2 +54600 100800 58800 105000 metal2 +54600 100800 67200 105000 metal3 +63000 100800 67200 105000 metal2 +63000 100800 67200 113400 metal2 +63000 109200 67200 113400 metal1 +63000 109200 75600 113400 metal1 71400 109200 75600 113400 metal1 -71400 109200 79800 113400 metal1 -75600 109200 79800 113400 metal1 -75600 109200 79800 117600 metal2 -75600 113400 79800 117600 metal1 -117600 46200 121800 54600 metal2 -117600 50400 121800 54600 metal1 -113400 50400 121800 54600 metal1 -92400 142800 96600 151200 metal2 -92400 142800 96600 147000 metal2 -92400 142800 109200 147000 metal3 -105000 142800 109200 147000 metal2 -105000 142800 109200 147000 metal1 -159600 138600 163800 142800 metal2 -159600 138600 172200 142800 metal3 -168000 138600 172200 142800 metal2 -168000 105000 172200 142800 metal2 -168000 105000 172200 109200 metal2 -163800 105000 172200 109200 metal3 -163800 105000 168000 109200 metal2 -151200 71400 155400 75600 metal2 -151200 71400 163800 75600 metal3 -159600 71400 163800 75600 metal2 -159600 71400 163800 84000 metal2 -159600 79800 163800 84000 metal1 -159600 79800 168000 84000 metal1 -163800 79800 168000 84000 metal1 -163800 79800 168000 109200 metal2 -113400 84000 117600 88200 metal2 -113400 84000 130200 88200 metal3 -126000 84000 130200 88200 metal2 -126000 84000 130200 88200 metal1 -113400 75600 117600 88200 metal2 -113400 75600 117600 79800 metal2 -109200 75600 117600 79800 metal3 -109200 75600 113400 79800 metal2 -109200 75600 113400 79800 metal1 -84000 130200 88200 134400 metal1 -84000 126000 88200 134400 metal2 -84000 126000 88200 130200 metal2 -84000 126000 92400 130200 metal3 -88200 126000 92400 130200 metal2 -88200 121800 92400 130200 metal2 -88200 121800 92400 126000 metal1 -130200 155400 134400 163800 metal2 -130200 159600 134400 163800 metal2 -130200 159600 163800 163800 metal3 -159600 159600 163800 163800 metal2 -159600 138600 163800 163800 metal2 -151200 130200 155400 134400 metal1 -151200 130200 155400 134400 metal2 -151200 130200 159600 134400 metal3 -155400 130200 159600 134400 metal2 -155400 130200 159600 142800 metal2 +71400 109200 75600 117600 metal2 +71400 113400 75600 117600 metal1 +71400 113400 79800 117600 metal1 +100800 151200 105000 180600 metal2 +63000 96600 67200 100800 metal1 +63000 96600 67200 105000 metal2 +121800 134400 130200 138600 metal1 +126000 134400 130200 138600 metal1 +126000 130200 130200 138600 metal2 +126000 130200 130200 134400 metal2 +126000 130200 138600 134400 metal3 +134400 130200 138600 134400 metal2 +134400 130200 138600 134400 metal1 +130200 121800 134400 126000 metal1 +130200 121800 134400 126000 metal2 +130200 121800 138600 126000 metal3 +134400 121800 138600 126000 metal2 +138600 159600 142800 163800 metal2 +138600 159600 159600 163800 metal3 +155400 159600 159600 163800 metal2 +155400 138600 159600 163800 metal2 155400 138600 159600 142800 metal2 -155400 138600 163800 142800 metal3 -134400 46200 155400 50400 metal3 -151200 46200 155400 50400 metal2 -151200 46200 155400 75600 metal2 -130200 126000 138600 130200 metal1 +151200 138600 159600 142800 metal3 +151200 138600 155400 142800 metal2 +151200 130200 155400 142800 metal2 +151200 130200 155400 134400 metal1 +100800 176400 105000 180600 metal2 +100800 176400 134400 180600 metal3 +130200 176400 134400 180600 metal2 +130200 172200 134400 180600 metal2 +130200 172200 134400 176400 metal2 +130200 172200 142800 176400 metal3 +138600 172200 142800 176400 metal2 +138600 159600 142800 176400 metal2 +105000 142800 109200 147000 metal1 +105000 142800 109200 151200 metal2 +105000 147000 109200 151200 metal1 +100800 147000 109200 151200 metal1 +54600 58800 58800 67200 metal2 +75600 29400 79800 37800 metal2 +75600 33600 79800 37800 metal1 121800 63000 126000 67200 metal1 121800 63000 126000 67200 metal2 121800 63000 138600 67200 metal3 134400 63000 138600 67200 metal2 -50400 58800 54600 75600 metal2 -155400 105000 159600 109200 metal1 -155400 105000 159600 109200 metal2 -155400 105000 168000 109200 metal3 -134400 130200 138600 134400 metal1 -134400 126000 138600 134400 metal2 -109200 88200 113400 92400 metal1 -109200 84000 113400 92400 metal2 -109200 84000 113400 88200 metal2 -109200 84000 117600 88200 metal3 -105000 75600 113400 79800 metal1 +134400 63000 138600 67200 metal1 151200 117600 155400 121800 metal1 151200 117600 155400 134400 metal2 -50400 117600 58800 121800 metal3 -54600 117600 58800 121800 metal2 -54600 117600 58800 121800 metal1 -54600 105000 63000 109200 metal3 -58800 105000 63000 109200 metal2 -58800 100800 63000 109200 metal2 -58800 100800 63000 105000 metal2 -58800 100800 71400 105000 metal3 -50400 58800 54600 63000 metal2 -50400 58800 63000 63000 metal3 -58800 58800 63000 63000 metal2 -100800 180600 105000 184800 metal2 -100800 180600 130200 184800 metal3 -126000 180600 130200 184800 metal2 -126000 155400 130200 184800 metal2 -126000 155400 130200 159600 metal2 -126000 155400 134400 159600 metal3 -130200 155400 134400 159600 metal2 -63000 29400 79800 33600 metal3 -63000 29400 67200 33600 metal2 -63000 29400 67200 37800 metal2 -63000 33600 67200 37800 metal2 -54600 33600 67200 37800 metal3 -54600 33600 58800 37800 metal2 -54600 33600 58800 42000 metal2 -54600 37800 58800 42000 metal2 -50400 37800 58800 42000 metal3 -50400 37800 54600 42000 metal2 -50400 37800 54600 63000 metal2 -109200 67200 113400 71400 metal1 -109200 67200 113400 71400 metal2 -109200 67200 121800 71400 metal3 -117600 67200 121800 71400 metal2 -117600 63000 121800 71400 metal2 -117600 63000 121800 67200 metal2 -117600 63000 126000 67200 metal3 -58800 58800 75600 63000 metal3 +88200 29400 92400 33600 metal1 +88200 29400 92400 33600 metal2 +88200 29400 96600 33600 metal3 +92400 29400 96600 33600 metal2 +92400 25200 96600 33600 metal2 +92400 25200 96600 29400 metal2 +92400 25200 105000 29400 metal3 +100800 25200 105000 29400 metal2 +113400 50400 117600 54600 metal1 +113400 46200 117600 54600 metal2 +113400 46200 117600 50400 metal1 +113400 46200 121800 50400 metal1 +134400 63000 138600 71400 metal1 +138600 147000 142800 163800 metal2 +138600 147000 142800 151200 metal1 +130200 147000 142800 151200 metal1 +79800 121800 84000 134400 metal2 +79800 121800 84000 126000 metal2 +79800 121800 92400 126000 metal3 +88200 121800 92400 126000 metal2 +88200 121800 92400 126000 metal1 +79800 130200 84000 155400 metal2 +130200 147000 134400 151200 metal1 +130200 147000 134400 151200 metal2 +121800 147000 134400 151200 metal3 +121800 147000 126000 151200 metal2 +121800 134400 126000 151200 metal2 +121800 134400 126000 138600 metal1 +54600 29400 58800 63000 metal2 +54600 29400 58800 33600 metal2 +54600 29400 79800 33600 metal3 +75600 29400 79800 33600 metal2 +75600 29400 92400 33600 metal3 +134400 63000 142800 67200 metal3 +138600 63000 142800 67200 metal2 +138600 54600 142800 67200 metal2 +138600 54600 142800 58800 metal2 +138600 54600 155400 58800 metal3 +151200 54600 155400 58800 metal2 +37800 84000 42000 109200 metal2 +37800 105000 42000 109200 metal2 +37800 105000 50400 109200 metal3 +46200 105000 50400 109200 metal2 +46200 105000 50400 113400 metal2 +46200 109200 54600 113400 metal2 +50400 105000 54600 113400 metal2 +50400 105000 54600 109200 metal2 +50400 105000 58800 109200 metal3 +54600 105000 58800 109200 metal2 +54600 105000 58800 109200 metal1 +71400 50400 75600 54600 metal1 +71400 50400 75600 63000 metal2 +54600 63000 58800 75600 metal2 +54600 71400 58800 75600 metal1 +134400 67200 138600 71400 metal1 +134400 67200 138600 88200 metal2 +134400 84000 138600 88200 metal2 +126000 84000 138600 88200 metal3 +126000 84000 130200 88200 metal2 +126000 84000 130200 88200 metal1 +54600 58800 58800 63000 metal2 +54600 58800 75600 63000 metal3 71400 58800 75600 63000 metal2 71400 58800 75600 63000 metal1 -58800 58800 63000 67200 metal2 +151200 46200 155400 58800 metal2 +151200 75600 155400 79800 metal1 +151200 75600 155400 88200 metal2 +151200 84000 155400 88200 metal1 +134400 113400 138600 117600 metal1 +134400 113400 138600 126000 metal2 +54600 63000 58800 67200 metal2 +54600 63000 63000 67200 metal3 +58800 63000 63000 67200 metal2 58800 63000 63000 67200 metal1 -109200 67200 113400 79800 metal2 -92400 147000 96600 151200 metal2 -92400 147000 105000 151200 metal3 -100800 147000 105000 151200 metal2 -100800 147000 105000 151200 metal1 +105000 75600 109200 79800 metal1 +105000 71400 109200 79800 metal2 +105000 71400 109200 75600 metal1 +105000 71400 113400 75600 metal1 +109200 71400 113400 75600 metal1 +109200 67200 113400 75600 metal2 +109200 67200 113400 71400 metal1 +151200 54600 155400 79800 metal2 +79800 130200 84000 134400 metal2 +79800 130200 88200 134400 metal3 +84000 130200 88200 134400 metal2 +84000 130200 88200 134400 metal1 +117600 46200 121800 50400 metal1 +117600 46200 121800 50400 metal2 +117600 46200 155400 50400 metal3 +151200 46200 155400 50400 metal2 +109200 67200 117600 71400 metal1 +113400 67200 117600 71400 metal1 +113400 63000 117600 71400 metal2 +113400 63000 117600 67200 metal2 +113400 63000 126000 67200 metal3 +46200 117600 50400 155400 metal2 +46200 151200 50400 155400 metal2 +46200 151200 84000 155400 metal3 +79800 151200 84000 155400 metal2 92400 197400 96600 201600 metal3 92400 197400 96600 201600 metal4 92400 197400 96600 201600 metal5 92400 197400 96600 201600 metal6 -92400 197400 100800 201600 metal3 -96600 197400 100800 201600 metal2 -96600 180600 100800 201600 metal2 -96600 180600 100800 184800 metal2 -96600 180600 105000 184800 metal3 -134400 63000 138600 71400 metal2 -134400 67200 138600 71400 metal1 -79800 147000 96600 151200 metal3 -121800 134400 126000 138600 metal1 -121800 134400 126000 151200 metal2 -121800 147000 126000 151200 metal2 -121800 147000 134400 151200 metal3 -130200 147000 134400 151200 metal2 -130200 147000 134400 151200 metal1 -88200 29400 105000 33600 metal3 -100800 29400 105000 33600 metal2 +92400 197400 105000 201600 metal3 +100800 197400 105000 201600 metal2 +100800 176400 105000 201600 metal2 +109200 88200 113400 92400 metal1 +109200 88200 113400 92400 metal2 +109200 88200 130200 92400 metal3 +126000 88200 130200 92400 metal2 +126000 84000 130200 92400 metal2 +46200 117600 50400 121800 metal2 +46200 117600 58800 121800 metal3 +54600 117600 58800 121800 metal2 +54600 117600 58800 121800 metal1 +100800 25200 105000 33600 metal2 100800 29400 105000 33600 metal1 -75600 33600 79800 37800 metal1 -75600 29400 79800 37800 metal2 -50400 92400 54600 96600 metal1 +79800 151200 105000 155400 metal3 +100800 151200 105000 155400 metal2 +134400 121800 138600 134400 metal2 50400 84000 54600 96600 metal2 -121800 126000 126000 138600 metal2 -121800 126000 126000 130200 metal1 -121800 126000 134400 130200 metal1 -79800 134400 84000 151200 metal2 -79800 134400 84000 138600 metal2 -79800 134400 88200 138600 metal3 -84000 134400 88200 138600 metal2 -84000 130200 88200 138600 metal2 -50400 71400 58800 75600 metal3 -54600 71400 58800 75600 metal2 -54600 71400 58800 75600 metal1 -42000 121800 54600 126000 metal3 -42000 121800 46200 126000 metal2 -42000 84000 46200 126000 metal2 +50400 92400 54600 96600 metal1 +100800 25200 147000 29400 metal3 +142800 25200 147000 29400 metal2 +142800 25200 147000 42000 metal2 +142800 37800 147000 42000 metal2 +142800 37800 155400 42000 metal3 +151200 37800 155400 42000 metal2 +151200 37800 155400 50400 metal2 +151200 105000 155400 121800 metal2 +151200 105000 155400 109200 metal1 +151200 105000 159600 109200 metal1 +37800 67200 42000 88200 metal2 +37800 67200 42000 71400 metal2 +37800 67200 46200 71400 metal3 +42000 67200 46200 71400 metal2 +42000 58800 46200 71400 metal2 +42000 58800 46200 63000 metal2 +42000 58800 58800 63000 metal3 +37800 84000 42000 88200 metal2 +37800 84000 54600 88200 metal3 +50400 84000 54600 88200 metal2 +50400 84000 54600 88200 metal1 +46200 109200 50400 121800 metal2 ) ctrl.state.out\[1\] ( @@ -5789,11 +5695,7 @@ dpath.a_lt_b$in0\[11\] ) dpath.a_lt_b$in0\[12\] ( -113400 46200 117600 50400 metal1 -113400 46200 117600 50400 metal2 -113400 46200 121800 50400 metal3 -117600 46200 121800 50400 metal2 -117600 46200 121800 50400 metal1 +113400 46200 121800 50400 metal1 ) dpath.a_lt_b$in0\[13\] ( @@ -5810,10 +5712,10 @@ dpath.a_lt_b$in0\[14\] dpath.a_lt_b$in0\[15\] ( 109200 84000 113400 88200 metal1 -109200 84000 113400 92400 metal2 -109200 88200 113400 92400 metal2 -109200 88200 117600 92400 metal3 -113400 88200 117600 92400 metal2 +109200 84000 113400 88200 metal2 +109200 84000 117600 88200 metal3 +113400 84000 117600 88200 metal2 +113400 84000 117600 92400 metal2 113400 88200 117600 92400 metal1 ) dpath.a_lt_b$in0\[1\] @@ -5889,10 +5791,10 @@ dpath.a_lt_b$in1\[10\] dpath.a_lt_b$in1\[11\] ( 109200 71400 113400 75600 metal1 -109200 71400 113400 75600 metal2 -109200 71400 117600 75600 metal3 -113400 71400 117600 75600 metal2 -113400 67200 117600 75600 metal2 +109200 67200 113400 75600 metal2 +109200 67200 113400 71400 metal2 +109200 67200 117600 71400 metal3 +113400 67200 117600 71400 metal2 113400 67200 117600 71400 metal1 ) dpath.a_lt_b$in1\[12\] @@ -5984,9 +5886,17 @@ net1 117600 172200 121800 176400 metal1 117600 172200 121800 189000 metal2 117600 184800 121800 189000 metal2 -117600 184800 163800 189000 metal3 -159600 184800 163800 189000 metal2 -159600 176400 163800 189000 metal2 +117600 184800 134400 189000 metal3 +130200 184800 134400 189000 metal2 +130200 184800 134400 193200 metal2 +130200 189000 134400 193200 metal2 +130200 189000 155400 193200 metal3 +151200 189000 155400 193200 metal2 +151200 180600 155400 193200 metal2 +151200 180600 155400 184800 metal2 +151200 180600 163800 184800 metal3 +159600 180600 163800 184800 metal2 +159600 176400 163800 184800 metal2 159600 176400 163800 180600 metal2 159600 176400 168000 180600 metal3 163800 176400 168000 180600 metal2 @@ -5997,12 +5907,9 @@ net10 142800 67200 147000 71400 metal1 142800 42000 147000 71400 metal2 142800 42000 147000 46200 metal2 -142800 42000 159600 46200 metal3 -155400 42000 159600 46200 metal2 -155400 21000 159600 46200 metal2 -155400 21000 159600 25200 metal2 -155400 21000 172200 25200 metal3 -168000 21000 172200 25200 metal2 +142800 42000 172200 46200 metal3 +168000 42000 172200 46200 metal2 +168000 21000 172200 46200 metal2 168000 21000 172200 25200 metal1 ) net11 @@ -6026,20 +5933,18 @@ net12 net13 ( 134400 147000 138600 151200 metal1 -134400 147000 138600 176400 metal2 -134400 172200 138600 176400 metal2 -134400 172200 142800 176400 metal3 -138600 172200 142800 176400 metal2 -138600 172200 142800 180600 metal2 -138600 176400 142800 180600 metal1 +134400 147000 138600 180600 metal2 +134400 176400 138600 180600 metal1 +134400 176400 142800 180600 metal1 ) net14 ( 67200 176400 71400 180600 metal1 -67200 176400 71400 180600 metal2 -67200 176400 75600 180600 metal3 -71400 176400 75600 180600 metal2 -71400 142800 75600 180600 metal2 +67200 151200 71400 180600 metal2 +67200 151200 71400 155400 metal2 +67200 151200 75600 155400 metal3 +71400 151200 75600 155400 metal2 +71400 142800 75600 155400 metal2 71400 142800 75600 147000 metal1 ) net15 @@ -6064,48 +5969,53 @@ net16 net17 ( 21000 84000 25200 88200 metal1 -21000 84000 25200 130200 metal2 -21000 126000 25200 130200 metal2 -21000 126000 29400 130200 metal3 -25200 126000 29400 130200 metal2 -25200 126000 29400 180600 metal2 +21000 84000 25200 109200 metal2 +21000 105000 25200 109200 metal2 +21000 105000 29400 109200 metal3 +25200 105000 29400 109200 metal2 +25200 105000 29400 180600 metal2 25200 176400 29400 180600 metal1 ) net18 ( 42000 21000 46200 25200 metal1 -42000 21000 46200 25200 metal2 -42000 21000 67200 25200 metal3 -63000 21000 67200 25200 metal2 -63000 21000 67200 37800 metal2 +42000 21000 46200 37800 metal2 +42000 33600 46200 37800 metal2 +42000 33600 67200 37800 metal3 +63000 33600 67200 37800 metal2 63000 33600 67200 37800 metal1 ) net19 ( 113400 33600 117600 37800 metal1 -113400 21000 117600 37800 metal2 -113400 21000 117600 25200 metal2 -113400 21000 151200 25200 metal3 +113400 33600 117600 37800 metal2 +113400 33600 121800 37800 metal3 +117600 33600 121800 37800 metal2 +117600 21000 121800 37800 metal2 +117600 21000 121800 25200 metal2 +117600 21000 151200 25200 metal3 147000 21000 151200 25200 metal2 147000 21000 151200 25200 metal1 ) net2 ( 33600 176400 37800 180600 metal1 -33600 172200 37800 180600 metal2 -33600 172200 37800 176400 metal2 -33600 172200 46200 176400 metal3 -42000 172200 46200 176400 metal2 +33600 176400 37800 180600 metal2 +33600 176400 46200 180600 metal3 +42000 176400 46200 180600 metal2 +42000 172200 46200 180600 metal2 42000 172200 46200 176400 metal1 ) net20 ( 117600 163800 121800 168000 metal1 -117600 163800 121800 184800 metal2 -117600 180600 121800 184800 metal2 -117600 180600 180600 184800 metal3 -176400 180600 180600 184800 metal2 -176400 172200 180600 184800 metal2 +117600 163800 121800 168000 metal2 +117600 163800 134400 168000 metal3 +130200 163800 134400 168000 metal2 +130200 163800 134400 176400 metal2 +130200 172200 134400 176400 metal2 +130200 172200 180600 176400 metal3 +176400 172200 180600 176400 metal2 176400 172200 180600 176400 metal1 ) net21 @@ -6132,11 +6042,11 @@ net23 net24 ( 29400 176400 33600 180600 metal1 -29400 172200 33600 180600 metal2 -29400 172200 33600 176400 metal2 -29400 172200 37800 176400 metal3 -33600 172200 37800 176400 metal2 -33600 100800 37800 176400 metal2 +29400 168000 33600 180600 metal2 +29400 168000 33600 172200 metal2 +29400 168000 37800 172200 metal3 +33600 168000 37800 172200 metal2 +33600 100800 37800 172200 metal2 33600 100800 37800 105000 metal2 33600 100800 54600 105000 metal3 50400 100800 54600 105000 metal2 @@ -6145,11 +6055,10 @@ net24 net25 ( 172200 130200 176400 134400 metal1 -172200 130200 176400 155400 metal2 -172200 151200 176400 155400 metal2 -172200 151200 180600 155400 metal3 -176400 151200 180600 155400 metal2 -176400 151200 180600 159600 metal2 +172200 130200 176400 134400 metal2 +172200 130200 180600 134400 metal3 +176400 130200 180600 134400 metal2 +176400 130200 180600 159600 metal2 176400 155400 180600 159600 metal1 ) net26 @@ -6161,22 +6070,19 @@ net26 net27 ( 163800 25200 168000 29400 metal1 -163800 25200 168000 33600 metal2 -163800 29400 168000 33600 metal2 -163800 29400 180600 33600 metal3 -176400 29400 180600 33600 metal2 +163800 25200 168000 29400 metal2 +163800 25200 180600 29400 metal3 +176400 25200 180600 29400 metal2 +176400 25200 180600 33600 metal2 176400 29400 180600 33600 metal1 ) net28 ( 163800 100800 168000 105000 metal1 163800 100800 168000 105000 metal2 -163800 100800 176400 105000 metal3 -172200 100800 176400 105000 metal2 -172200 100800 176400 117600 metal2 -172200 113400 176400 117600 metal2 -172200 113400 180600 117600 metal3 -176400 113400 180600 117600 metal2 +163800 100800 180600 105000 metal3 +176400 100800 180600 105000 metal2 +176400 100800 180600 117600 metal2 176400 113400 180600 117600 metal1 ) net29 @@ -6197,11 +6103,10 @@ net3 net30 ( 151200 176400 155400 180600 metal1 -151200 172200 155400 180600 metal2 -151200 172200 155400 176400 metal2 -151200 172200 163800 176400 metal3 -159600 172200 163800 176400 metal2 -159600 168000 163800 176400 metal2 +151200 176400 155400 180600 metal2 +151200 176400 163800 180600 metal3 +159600 176400 163800 180600 metal2 +159600 168000 163800 180600 metal2 159600 168000 163800 172200 metal2 159600 168000 168000 172200 metal3 163800 168000 168000 172200 metal2 @@ -6211,10 +6116,10 @@ net30 net31 ( 75600 21000 79800 25200 metal1 -75600 21000 79800 29400 metal2 -75600 25200 79800 29400 metal2 -75600 25200 84000 29400 metal3 -79800 25200 84000 29400 metal2 +75600 21000 79800 25200 metal2 +75600 21000 84000 25200 metal3 +79800 21000 84000 25200 metal2 +79800 21000 84000 29400 metal2 79800 25200 84000 29400 metal1 ) net32 @@ -6228,24 +6133,17 @@ net32 ) net33 ( -79800 130200 84000 134400 metal1 -79800 130200 84000 147000 metal2 -79800 142800 84000 147000 metal1 -75600 142800 84000 147000 metal1 -75600 142800 79800 147000 metal1 -75600 142800 79800 193200 metal2 +75600 130200 84000 134400 metal1 +75600 130200 79800 134400 metal1 +75600 130200 79800 193200 metal2 75600 189000 79800 193200 metal2 -75600 189000 105000 193200 metal3 -100800 189000 105000 193200 metal2 -100800 189000 105000 201600 metal2 -100800 197400 105000 201600 metal2 -100800 197400 147000 201600 metal3 -142800 197400 147000 201600 metal2 -142800 193200 147000 201600 metal2 -142800 193200 147000 197400 metal2 -142800 193200 172200 197400 metal3 -168000 193200 172200 197400 metal2 -168000 176400 172200 197400 metal2 +75600 189000 138600 193200 metal3 +134400 189000 138600 193200 metal2 +134400 184800 138600 193200 metal2 +134400 184800 138600 189000 metal2 +134400 184800 172200 189000 metal3 +168000 184800 172200 189000 metal2 +168000 176400 172200 189000 metal2 168000 176400 172200 180600 metal1 ) net34 @@ -6260,15 +6158,21 @@ net34 net35 ( 21000 176400 25200 180600 metal1 -21000 172200 25200 180600 metal2 -21000 172200 25200 176400 metal2 -21000 172200 33600 176400 metal3 -29400 172200 33600 176400 metal2 -29400 138600 33600 176400 metal2 -29400 138600 33600 142800 metal2 -29400 138600 63000 142800 metal3 -58800 138600 63000 142800 metal2 -58800 130200 63000 142800 metal2 +21000 176400 25200 180600 metal2 +21000 176400 37800 180600 metal3 +33600 176400 37800 180600 metal2 +33600 168000 37800 180600 metal2 +33600 168000 37800 172200 metal2 +33600 168000 42000 172200 metal3 +37800 168000 42000 172200 metal2 +37800 159600 42000 172200 metal2 +37800 159600 42000 163800 metal2 +37800 159600 54600 163800 metal3 +50400 159600 54600 163800 metal2 +50400 130200 54600 163800 metal2 +50400 130200 54600 134400 metal2 +50400 130200 63000 134400 metal3 +58800 130200 63000 134400 metal2 58800 130200 63000 134400 metal1 ) net36 @@ -6276,50 +6180,43 @@ net36 50400 105000 63000 109200 metal1 16800 21000 21000 25200 metal1 16800 21000 21000 25200 metal2 -4200 21000 21000 25200 metal3 -4200 21000 8400 25200 metal2 -4200 21000 8400 109200 metal2 -4200 105000 8400 109200 metal2 -4200 105000 54600 109200 metal3 +8400 21000 21000 25200 metal3 +8400 21000 12600 25200 metal2 +8400 21000 12600 96600 metal2 +8400 92400 12600 96600 metal2 +8400 92400 29400 96600 metal3 +25200 92400 29400 96600 metal2 +25200 92400 29400 109200 metal2 +25200 105000 29400 109200 metal2 +25200 105000 54600 109200 metal3 50400 105000 54600 109200 metal2 50400 105000 54600 109200 metal1 -50400 100800 54600 109200 metal2 -50400 100800 54600 105000 metal1 +50400 100800 54600 109200 metal1 ) net37 ( 16800 25200 21000 29400 metal1 -16800 21000 21000 29400 metal2 -16800 21000 21000 25200 metal2 -16800 21000 37800 25200 metal3 -33600 21000 37800 25200 metal2 -33600 12600 37800 25200 metal2 -33600 12600 37800 16800 metal2 -33600 12600 50400 16800 metal3 -46200 12600 50400 16800 metal2 -46200 8400 50400 16800 metal2 -46200 8400 50400 12600 metal2 -46200 8400 84000 12600 metal3 +16800 16800 21000 29400 metal2 +16800 16800 21000 21000 metal2 +16800 16800 29400 21000 metal3 +25200 16800 29400 21000 metal2 +25200 8400 29400 21000 metal2 +25200 8400 29400 12600 metal2 +25200 8400 84000 12600 metal3 79800 8400 84000 12600 metal2 79800 8400 84000 29400 metal2 -79800 25200 84000 29400 metal1 -79800 25200 92400 29400 metal1 +79800 25200 84000 29400 metal2 +79800 25200 92400 29400 metal3 +88200 25200 92400 29400 metal2 +88200 25200 92400 29400 metal1 ) net38 ( 126000 37800 130200 42000 metal1 126000 37800 130200 42000 metal2 -126000 37800 142800 42000 metal3 -138600 37800 142800 42000 metal2 -138600 29400 142800 42000 metal2 -138600 29400 142800 33600 metal2 -134400 29400 142800 33600 metal3 -134400 29400 138600 33600 metal2 -134400 25200 138600 33600 metal2 -134400 25200 138600 29400 metal2 -130200 25200 138600 29400 metal3 -130200 25200 134400 29400 metal2 -130200 21000 134400 29400 metal2 +126000 37800 134400 42000 metal3 +130200 37800 134400 42000 metal2 +130200 21000 134400 42000 metal2 130200 21000 134400 25200 metal1 ) net39 @@ -6331,9 +6228,12 @@ net39 105000 21000 109200 25200 metal1 105000 16800 109200 25200 metal2 105000 16800 109200 21000 metal2 -105000 16800 176400 21000 metal3 -172200 16800 176400 21000 metal2 -172200 16800 176400 25200 metal2 +105000 16800 155400 21000 metal3 +151200 16800 155400 21000 metal2 +151200 16800 155400 25200 metal2 +151200 21000 155400 25200 metal2 +151200 21000 176400 25200 metal3 +172200 21000 176400 25200 metal2 172200 21000 176400 25200 metal1 ) net4 @@ -6346,57 +6246,78 @@ net40 ( 113400 33600 117600 37800 metal1 113400 33600 117600 37800 metal2 -113400 33600 176400 37800 metal3 -172200 33600 176400 37800 metal2 -172200 25200 176400 37800 metal2 -172200 25200 176400 29400 metal1 +113400 33600 155400 37800 metal3 +151200 33600 155400 37800 metal2 +151200 29400 155400 37800 metal2 +151200 29400 155400 33600 metal2 +151200 29400 172200 33600 metal3 +168000 29400 172200 33600 metal2 +168000 25200 172200 33600 metal2 +168000 25200 172200 29400 metal1 +168000 25200 176400 29400 metal1 ) net41 ( 126000 67200 130200 71400 metal1 -126000 63000 130200 71400 metal2 -126000 63000 130200 67200 metal2 -126000 63000 142800 67200 metal3 +126000 67200 130200 71400 metal2 +126000 67200 142800 71400 metal3 +138600 67200 142800 71400 metal2 +138600 63000 142800 71400 metal2 138600 63000 142800 67200 metal2 -138600 58800 142800 67200 metal2 -138600 58800 142800 63000 metal2 -138600 58800 172200 63000 metal3 -168000 58800 172200 63000 metal2 -168000 58800 172200 71400 metal2 -168000 67200 172200 71400 metal2 -168000 67200 176400 71400 metal3 +138600 63000 168000 67200 metal3 +163800 63000 168000 67200 metal2 +163800 63000 168000 71400 metal2 +163800 67200 168000 71400 metal2 +163800 67200 176400 71400 metal3 172200 67200 176400 71400 metal2 172200 67200 176400 71400 metal1 ) net42 ( -16800 88200 25200 92400 metal1 -21000 88200 25200 92400 metal1 -21000 75600 25200 92400 metal2 -21000 75600 25200 79800 metal2 -21000 75600 50400 79800 metal3 -46200 75600 50400 79800 metal2 +16800 88200 21000 92400 metal1 +16800 84000 21000 92400 metal2 +16800 84000 21000 88200 metal2 +16800 84000 25200 88200 metal3 +21000 84000 25200 88200 metal2 +21000 79800 25200 88200 metal2 +21000 79800 25200 84000 metal2 +21000 79800 50400 84000 metal3 +46200 79800 50400 84000 metal2 +46200 75600 50400 84000 metal2 46200 75600 50400 79800 metal1 ) net43 ( 84000 79800 88200 84000 metal1 -84000 79800 88200 96600 metal2 -84000 92400 88200 96600 metal2 -0 92400 88200 96600 metal3 -0 92400 4200 96600 metal2 -0 37800 4200 96600 metal2 -0 37800 4200 42000 metal2 -0 37800 37800 42000 metal3 -33600 37800 37800 42000 metal2 -33600 16800 37800 42000 metal2 -33600 16800 37800 21000 metal2 -33600 16800 71400 21000 metal3 -67200 16800 71400 21000 metal2 -67200 16800 71400 25200 metal2 -67200 21000 71400 25200 metal2 -67200 21000 121800 25200 metal3 -117600 21000 121800 25200 metal2 +84000 79800 88200 92400 metal2 +84000 88200 88200 92400 metal1 +29400 88200 88200 92400 metal1 +29400 88200 33600 92400 metal1 +29400 67200 33600 92400 metal2 +29400 67200 33600 71400 metal2 +29400 67200 37800 71400 metal3 +33600 67200 37800 71400 metal2 +33600 25200 37800 71400 metal2 +33600 25200 37800 29400 metal2 +33600 25200 42000 29400 metal3 +37800 25200 42000 29400 metal2 +37800 16800 42000 29400 metal2 +37800 16800 42000 21000 metal2 +37800 16800 50400 21000 metal3 +46200 16800 50400 21000 metal2 +46200 0 50400 21000 metal2 +46200 0 50400 4200 metal2 +46200 0 96600 4200 metal3 +92400 0 96600 4200 metal2 +92400 0 96600 12600 metal2 +92400 8400 96600 12600 metal2 +92400 8400 117600 12600 metal3 +113400 8400 117600 12600 metal2 +113400 8400 117600 16800 metal2 +113400 12600 117600 16800 metal2 +113400 12600 121800 16800 metal3 +117600 12600 121800 16800 metal2 +117600 12600 121800 25200 metal2 117600 21000 121800 25200 metal1 ) net44 @@ -6404,27 +6325,20 @@ net44 16800 117600 21000 121800 metal1 16800 113400 21000 121800 metal2 16800 113400 21000 117600 metal2 -16800 113400 63000 117600 metal3 -58800 113400 63000 117600 metal2 -58800 109200 63000 117600 metal2 -58800 109200 63000 113400 metal1 -58800 109200 75600 113400 metal1 -71400 109200 75600 113400 metal1 -71400 105000 75600 113400 metal2 -71400 105000 75600 109200 metal1 +16800 113400 67200 117600 metal3 +63000 113400 67200 117600 metal2 +63000 105000 67200 117600 metal2 +63000 105000 67200 109200 metal1 +63000 105000 75600 109200 metal1 ) net45 ( 155400 121800 159600 126000 metal1 155400 121800 159600 134400 metal2 155400 130200 159600 134400 metal2 -155400 130200 172200 134400 metal3 -168000 130200 172200 134400 metal2 -168000 130200 172200 176400 metal2 -168000 172200 172200 176400 metal2 -168000 172200 176400 176400 metal3 -172200 172200 176400 176400 metal2 -172200 172200 176400 180600 metal2 +155400 130200 176400 134400 metal3 +172200 130200 176400 134400 metal2 +172200 130200 176400 180600 metal2 172200 176400 176400 180600 metal1 ) net46 @@ -6432,63 +6346,69 @@ net46 16800 46200 21000 50400 metal1 16800 29400 21000 50400 metal2 16800 29400 21000 33600 metal2 -16800 29400 42000 33600 metal3 -37800 29400 42000 33600 metal2 -37800 25200 42000 33600 metal2 -37800 25200 42000 29400 metal2 -37800 25200 50400 29400 metal3 -46200 25200 50400 29400 metal2 -46200 12600 50400 29400 metal2 -46200 12600 50400 16800 metal2 -46200 12600 79800 16800 metal3 -75600 12600 79800 16800 metal2 -75600 0 79800 16800 metal2 -75600 0 79800 4200 metal2 -75600 0 84000 4200 metal3 -79800 0 84000 4200 metal2 -79800 0 84000 8400 metal2 -79800 4200 84000 8400 metal1 -79800 4200 109200 8400 metal1 -105000 4200 109200 8400 metal1 -105000 4200 109200 16800 metal2 -105000 12600 109200 16800 metal2 -105000 12600 134400 16800 metal3 -130200 12600 134400 16800 metal2 -130200 12600 134400 63000 metal2 -130200 58800 134400 63000 metal1 -126000 58800 134400 63000 metal1 -126000 58800 130200 63000 metal1 -126000 58800 130200 75600 metal2 +16800 29400 29400 33600 metal3 +25200 29400 29400 33600 metal2 +25200 16800 29400 33600 metal2 +25200 16800 29400 21000 metal2 +25200 16800 37800 21000 metal3 +33600 16800 37800 21000 metal2 +33600 4200 37800 21000 metal2 +33600 4200 37800 8400 metal2 +33600 4200 88200 8400 metal3 +84000 4200 88200 8400 metal2 +84000 4200 88200 12600 metal2 +84000 8400 88200 12600 metal2 +84000 8400 134400 12600 metal3 +130200 8400 134400 12600 metal2 +130200 8400 134400 21000 metal2 +130200 16800 134400 21000 metal1 +130200 16800 138600 21000 metal1 +134400 16800 138600 21000 metal1 +134400 16800 138600 58800 metal2 +134400 54600 138600 58800 metal2 +126000 54600 138600 58800 metal3 +126000 54600 130200 58800 metal2 +126000 54600 130200 75600 metal2 126000 71400 130200 75600 metal1 ) net47 ( 159600 92400 163800 96600 metal1 -159600 92400 163800 96600 metal2 -159600 92400 176400 96600 metal3 -172200 92400 176400 96600 metal2 -172200 33600 176400 96600 metal2 +159600 88200 163800 96600 metal2 +159600 88200 163800 92400 metal2 +159600 88200 176400 92400 metal3 +172200 88200 176400 92400 metal2 +172200 33600 176400 92400 metal2 172200 33600 176400 37800 metal1 ) net48 ( -25200 21000 33600 25200 metal1 -29400 21000 33600 25200 metal1 -29400 16800 33600 25200 metal2 -29400 16800 33600 21000 metal2 -29400 16800 37800 21000 metal3 +25200 21000 29400 25200 metal1 +25200 21000 29400 25200 metal2 +25200 21000 37800 25200 metal3 +33600 21000 37800 25200 metal2 +33600 16800 37800 25200 metal2 33600 16800 37800 21000 metal2 -33600 0 37800 21000 metal2 -33600 0 37800 4200 metal2 -33600 0 126000 4200 metal3 -121800 0 126000 4200 metal2 -121800 0 126000 8400 metal2 -121800 4200 126000 8400 metal2 -121800 4200 142800 8400 metal3 -138600 4200 142800 8400 metal2 -138600 4200 142800 67200 metal2 -138600 63000 142800 67200 metal1 -134400 63000 142800 67200 metal1 +33600 16800 42000 21000 metal3 +37800 16800 42000 21000 metal2 +37800 12600 42000 21000 metal2 +37800 12600 42000 16800 metal2 +37800 12600 71400 16800 metal3 +67200 12600 71400 16800 metal2 +67200 8400 71400 16800 metal2 +67200 8400 71400 12600 metal2 +67200 8400 88200 12600 metal3 +84000 8400 88200 12600 metal2 +84000 8400 88200 16800 metal2 +84000 12600 88200 16800 metal2 +84000 12600 142800 16800 metal3 +138600 12600 142800 16800 metal2 +138600 12600 142800 58800 metal2 +138600 54600 142800 58800 metal1 +134400 54600 142800 58800 metal1 +134400 54600 138600 58800 metal1 +134400 54600 138600 67200 metal2 +134400 63000 138600 67200 metal1 ) net49 ( @@ -6497,22 +6417,18 @@ net49 151200 121800 159600 126000 metal3 155400 121800 159600 126000 metal2 155400 117600 159600 126000 metal2 -155400 117600 159600 121800 metal1 -155400 117600 163800 121800 metal1 -159600 117600 163800 121800 metal1 -159600 109200 163800 121800 metal2 -159600 109200 163800 113400 metal2 -159600 109200 184800 113400 metal3 -180600 109200 184800 113400 metal2 -180600 100800 184800 113400 metal2 -180600 100800 184800 105000 metal2 -180600 100800 189000 105000 metal3 -184800 100800 189000 105000 metal2 -184800 46200 189000 105000 metal2 -184800 46200 189000 50400 metal2 -159600 46200 189000 50400 metal3 -159600 46200 163800 50400 metal2 -159600 21000 163800 50400 metal2 +155400 117600 159600 121800 metal2 +155400 117600 172200 121800 metal3 +168000 117600 172200 121800 metal2 +168000 113400 172200 121800 metal2 +168000 113400 172200 117600 metal2 +168000 113400 184800 117600 metal3 +180600 113400 184800 117600 metal2 +180600 37800 184800 117600 metal2 +180600 37800 184800 42000 metal2 +159600 37800 184800 42000 metal3 +159600 37800 163800 42000 metal2 +159600 21000 163800 42000 metal2 159600 21000 163800 25200 metal1 ) net5 @@ -6524,26 +6440,22 @@ net5 net50 ( 16800 134400 21000 138600 metal1 -16800 134400 21000 138600 metal2 -16800 134400 67200 138600 metal3 -63000 134400 67200 138600 metal2 -63000 130200 67200 138600 metal2 -63000 130200 67200 134400 metal2 -63000 130200 84000 134400 metal3 -79800 130200 84000 134400 metal2 -79800 130200 84000 134400 metal1 +16800 134400 21000 142800 metal2 +16800 138600 21000 142800 metal2 +16800 138600 79800 142800 metal3 +75600 138600 79800 142800 metal2 +75600 130200 79800 142800 metal2 +75600 130200 79800 134400 metal1 +75600 130200 84000 134400 metal1 ) net51 ( 16800 147000 21000 151200 metal1 16800 142800 21000 151200 metal2 16800 142800 21000 147000 metal2 -16800 142800 71400 147000 metal3 -67200 142800 71400 147000 metal2 -67200 138600 71400 147000 metal2 -67200 138600 71400 142800 metal2 -67200 138600 96600 142800 metal3 -92400 138600 96600 142800 metal2 +16800 142800 96600 147000 metal3 +92400 142800 96600 147000 metal2 +92400 138600 96600 147000 metal2 92400 138600 96600 142800 metal1 ) net52 @@ -6551,40 +6463,46 @@ net52 16800 163800 21000 168000 metal1 16800 155400 21000 168000 metal2 16800 155400 21000 159600 metal2 -16800 155400 96600 159600 metal3 -92400 155400 96600 159600 metal2 -92400 134400 96600 159600 metal2 +16800 155400 63000 159600 metal3 +58800 155400 63000 159600 metal2 +58800 147000 63000 159600 metal2 +58800 147000 63000 151200 metal2 +58800 147000 96600 151200 metal3 +92400 147000 96600 151200 metal2 +92400 134400 96600 151200 metal2 92400 134400 96600 138600 metal1 ) net53 ( -75600 54600 79800 58800 metal1 -75600 54600 79800 58800 metal2 -67200 54600 79800 58800 metal3 -67200 54600 71400 58800 metal2 -67200 16800 71400 58800 metal2 +67200 54600 79800 58800 metal1 +67200 54600 71400 58800 metal1 +67200 50400 71400 58800 metal2 +67200 50400 71400 54600 metal1 +63000 50400 71400 54600 metal1 +63000 50400 67200 54600 metal1 +63000 16800 67200 54600 metal2 +63000 16800 67200 21000 metal2 +63000 16800 71400 21000 metal3 67200 16800 71400 21000 metal2 -67200 16800 96600 21000 metal3 -92400 16800 96600 21000 metal2 -92400 12600 96600 21000 metal2 -92400 12600 96600 16800 metal1 -92400 12600 100800 16800 metal1 -96600 12600 100800 16800 metal1 -96600 4200 100800 16800 metal2 -96600 4200 100800 8400 metal2 -96600 4200 113400 8400 metal3 -109200 4200 113400 8400 metal2 -109200 0 113400 8400 metal2 -109200 0 113400 4200 metal2 -109200 0 155400 4200 metal3 -151200 0 155400 4200 metal2 -151200 0 155400 29400 metal2 -151200 25200 155400 29400 metal2 -151200 25200 172200 29400 metal3 -168000 25200 172200 29400 metal2 -168000 25200 172200 54600 metal2 -168000 50400 172200 54600 metal2 -168000 50400 176400 54600 metal3 +67200 12600 71400 21000 metal2 +67200 12600 71400 16800 metal2 +67200 12600 79800 16800 metal3 +75600 12600 79800 16800 metal2 +75600 8400 79800 16800 metal2 +75600 8400 79800 12600 metal1 +75600 8400 84000 12600 metal1 +79800 8400 84000 12600 metal1 +79800 4200 84000 12600 metal2 +79800 4200 84000 8400 metal2 +79800 4200 134400 8400 metal3 +130200 4200 134400 8400 metal2 +130200 4200 134400 12600 metal2 +130200 8400 134400 12600 metal2 +130200 8400 159600 12600 metal3 +155400 8400 159600 12600 metal2 +155400 8400 159600 54600 metal2 +155400 50400 159600 54600 metal2 +155400 50400 176400 54600 metal3 172200 50400 176400 54600 metal2 172200 50400 176400 54600 metal1 ) @@ -6743,16 +6661,13 @@ req_msg[1] ) req_msg[20] ( -25200 0 29400 4200 metal2 25200 0 29400 4200 metal3 25200 0 29400 4200 metal4 25200 0 29400 4200 metal5 25200 0 29400 4200 metal6 -25200 0 29400 12600 metal2 -25200 8400 29400 12600 metal2 -25200 8400 33600 12600 metal3 -29400 8400 33600 12600 metal2 -29400 8400 33600 25200 metal2 +25200 0 33600 4200 metal3 +29400 0 33600 4200 metal2 +29400 0 33600 25200 metal2 29400 21000 33600 25200 metal1 ) req_msg[21] @@ -6826,14 +6741,13 @@ req_msg[27] ) req_msg[28] ( +0 25200 4200 29400 metal2 0 25200 4200 29400 metal3 0 25200 4200 29400 metal4 0 25200 4200 29400 metal5 -0 25200 12600 29400 metal3 -8400 25200 12600 29400 metal2 -8400 25200 12600 33600 metal2 -8400 29400 12600 33600 metal2 -8400 29400 21000 33600 metal3 +0 25200 4200 33600 metal2 +0 29400 4200 33600 metal2 +0 29400 21000 33600 metal3 16800 29400 21000 33600 metal2 16800 29400 21000 33600 metal1 ) @@ -6871,13 +6785,12 @@ req_msg[30] req_msg[31] ( 163800 176400 168000 180600 metal1 -163800 176400 168000 189000 metal2 -163800 184800 168000 189000 metal2 -163800 184800 176400 189000 metal3 -172200 184800 176400 189000 metal2 -172200 184800 176400 201600 metal2 -172200 197400 176400 201600 metal2 -172200 197400 189000 201600 metal3 +163800 176400 168000 197400 metal2 +163800 193200 168000 197400 metal2 +163800 193200 189000 197400 metal3 +184800 193200 189000 197400 metal2 +184800 193200 189000 201600 metal2 +184800 197400 189000 201600 metal2 184800 197400 189000 201600 metal3 184800 197400 189000 201600 metal4 184800 197400 189000 201600 metal5 @@ -6898,22 +6811,19 @@ req_msg[3] req_msg[4] ( 172200 113400 176400 117600 metal1 -172200 113400 176400 117600 metal2 -172200 113400 189000 117600 metal3 -184800 113400 189000 117600 metal2 -184800 109200 189000 117600 metal2 -184800 109200 189000 113400 metal2 -184800 109200 200260 113400 metal3 +172200 109200 176400 117600 metal2 +172200 109200 176400 113400 metal2 +172200 109200 200260 113400 metal3 193200 109200 200260 113400 metal3 193200 109200 200260 113400 metal4 193200 109200 200260 113400 metal5 ) req_msg[5] ( -172200 29400 180600 33600 metal1 -176400 29400 180600 33600 metal1 -176400 0 180600 33600 metal2 -176400 0 180600 4200 metal2 +172200 29400 176400 33600 metal1 +172200 0 176400 33600 metal2 +172200 0 176400 4200 metal2 +172200 0 180600 4200 metal3 176400 0 180600 4200 metal3 176400 0 180600 4200 metal4 176400 0 180600 4200 metal5 @@ -6943,9 +6853,13 @@ req_msg[8] 21000 197400 25200 201600 metal4 21000 197400 25200 201600 metal5 21000 197400 25200 201600 metal6 -21000 197400 33600 201600 metal3 -29400 197400 33600 201600 metal2 -29400 176400 33600 201600 metal2 +21000 197400 29400 201600 metal3 +25200 197400 29400 201600 metal2 +25200 180600 29400 201600 metal2 +25200 180600 29400 184800 metal2 +25200 180600 33600 184800 metal3 +29400 180600 33600 184800 metal2 +29400 176400 33600 184800 metal2 29400 176400 33600 180600 metal1 ) req_msg[9] @@ -6963,13 +6877,9 @@ req_rdy 0 0 4200 4200 metal4 0 0 4200 4200 metal5 0 0 4200 4200 metal6 -0 0 8400 4200 metal3 -4200 0 8400 4200 metal2 -4200 0 8400 8400 metal2 -4200 4200 8400 8400 metal2 -4200 4200 21000 8400 metal3 -16800 4200 21000 8400 metal2 -16800 4200 21000 25200 metal2 +0 0 21000 4200 metal3 +16800 0 21000 4200 metal2 +16800 0 21000 25200 metal2 16800 21000 21000 25200 metal2 16800 21000 25200 25200 metal3 21000 21000 25200 25200 metal2 @@ -7002,9 +6912,12 @@ resp_msg[0] 0 159600 4200 163800 metal3 0 159600 4200 163800 metal4 0 159600 4200 163800 metal5 -0 159600 25200 163800 metal3 -21000 159600 25200 163800 metal2 -21000 159600 25200 168000 metal2 +0 159600 8400 163800 metal3 +4200 159600 8400 163800 metal2 +4200 159600 8400 168000 metal2 +4200 163800 8400 168000 metal2 +4200 163800 25200 168000 metal3 +21000 163800 25200 168000 metal2 21000 163800 25200 168000 metal1 ) resp_msg[10] @@ -7028,12 +6941,9 @@ resp_msg[11] resp_msg[12] ( 176400 25200 180600 29400 metal1 -176400 25200 180600 29400 metal2 -176400 25200 189000 29400 metal3 -184800 25200 189000 29400 metal2 -184800 0 189000 29400 metal2 -184800 0 189000 4200 metal2 -184800 0 193200 4200 metal3 +176400 0 180600 29400 metal2 +176400 0 180600 4200 metal2 +176400 0 193200 4200 metal3 189000 0 193200 4200 metal3 189000 0 193200 4200 metal4 189000 0 193200 4200 metal5 @@ -7064,13 +6974,15 @@ resp_msg[14] ) resp_msg[15] ( +12600 0 16800 4200 metal2 12600 0 16800 4200 metal3 12600 0 16800 4200 metal4 12600 0 16800 4200 metal5 12600 0 16800 4200 metal6 -12600 0 25200 4200 metal3 -21000 0 25200 4200 metal2 -21000 0 25200 29400 metal2 +12600 0 16800 29400 metal2 +12600 25200 16800 29400 metal2 +12600 25200 25200 29400 metal3 +21000 25200 25200 29400 metal2 21000 25200 25200 29400 metal1 ) resp_msg[1] @@ -7078,13 +6990,8 @@ resp_msg[1] 0 147000 4200 151200 metal3 0 147000 4200 151200 metal4 0 147000 4200 151200 metal5 -0 147000 8400 151200 metal3 -4200 147000 8400 151200 metal2 -4200 147000 8400 155400 metal2 -4200 151200 8400 155400 metal2 -4200 151200 25200 155400 metal3 -21000 151200 25200 155400 metal2 -21000 147000 25200 155400 metal2 +0 147000 25200 151200 metal3 +21000 147000 25200 151200 metal2 21000 147000 25200 151200 metal1 ) resp_msg[2] @@ -7092,9 +6999,12 @@ resp_msg[2] 0 130200 4200 134400 metal3 0 130200 4200 134400 metal4 0 130200 4200 134400 metal5 -0 130200 25200 134400 metal3 -21000 130200 25200 134400 metal2 -21000 130200 25200 138600 metal2 +0 130200 8400 134400 metal3 +4200 130200 8400 134400 metal2 +4200 130200 8400 138600 metal2 +4200 134400 8400 138600 metal2 +4200 134400 25200 138600 metal3 +21000 134400 25200 138600 metal2 21000 134400 25200 138600 metal1 ) resp_msg[3] @@ -7113,9 +7023,12 @@ resp_msg[4] 0 12600 4200 16800 metal3 0 12600 4200 16800 metal4 0 12600 4200 16800 metal5 -0 12600 29400 16800 metal3 -25200 12600 29400 16800 metal2 -25200 12600 29400 25200 metal2 +0 12600 25200 16800 metal3 +21000 12600 25200 16800 metal2 +21000 12600 25200 25200 metal2 +21000 21000 25200 25200 metal2 +21000 21000 29400 25200 metal3 +25200 21000 29400 25200 metal2 25200 21000 29400 25200 metal1 ) resp_msg[5] @@ -7141,12 +7054,9 @@ resp_msg[6] resp_msg[7] ( 176400 176400 180600 180600 metal1 -176400 176400 180600 180600 metal2 -176400 176400 189000 180600 metal3 -184800 176400 189000 180600 metal2 -184800 176400 189000 201600 metal2 -184800 197400 189000 201600 metal2 -184800 197400 200260 201600 metal3 +176400 176400 180600 201600 metal2 +176400 197400 180600 201600 metal2 +176400 197400 200260 201600 metal3 193200 197400 200260 201600 metal3 193200 197400 200260 201600 metal4 193200 197400 200260 201600 metal5 @@ -7186,9 +7096,12 @@ resp_rdy resp_val ( 176400 54600 180600 58800 metal1 -176400 50400 180600 58800 metal2 -176400 50400 180600 54600 metal2 -176400 50400 200260 54600 metal3 +176400 54600 180600 58800 metal2 +176400 54600 193200 58800 metal3 +189000 54600 193200 58800 metal2 +189000 50400 193200 58800 metal2 +189000 50400 193200 54600 metal2 +189000 50400 200260 54600 metal3 193200 50400 200260 54600 metal3 193200 50400 200260 54600 metal4 193200 50400 200260 54600 metal5 diff --git a/src/grt/test/congestion7.ok b/src/grt/test/congestion7.ok index db1a1581dd1..0437d3a16bd 100644 --- a/src/grt/test/congestion7.ok +++ b/src/grt/test/congestion7.ok @@ -44,19 +44,19 @@ metal10 Vertical 2305 0 100.00% [INFO GRT-0101] Running extra iterations to remove overflow. [INFO GRT-0103] Extra Run for hard benchmark. -[INFO GRT-0197] Via related to pin nodes: 2610 -[INFO GRT-0198] Via related Steiner nodes: 118 +[INFO GRT-0197] Via related to pin nodes: 2588 +[INFO GRT-0198] Via related Steiner nodes: 99 [INFO GRT-0199] Via filling finished. -[INFO GRT-0111] Final number of vias: 4249 -[INFO GRT-0112] Final usage 3D: 17701 +[INFO GRT-0111] Final number of vias: 4185 +[INFO GRT-0112] Final usage 3D: 17382 [WARNING GRT-0115] Global routing finished with overflow. [INFO GRT-0096] Final congestion report: Layer Resource Demand Usage (%) Max H / Max V / Total Overflow --------------------------------------------------------------------------------------- -metal1 0 474 0.00% 3 / 1 / 474 -metal2 2209 2464 111.54% 1 / 4 / 795 -metal3 2208 2016 91.30% 2 / 1 / 379 +metal1 0 458 0.00% 3 / 2 / 458 +metal2 2209 2410 109.10% 1 / 4 / 756 +metal3 2208 1959 88.72% 2 / 1 / 356 metal4 0 0 0.00% 0 / 0 / 0 metal5 0 0 0.00% 0 / 0 / 0 metal6 0 0 0.00% 0 / 0 / 0 @@ -65,17 +65,11 @@ metal8 0 0 0.00% 0 / 0 / 0 metal9 0 0 0.00% 0 / 0 / 0 metal10 0 0 0.00% 0 / 0 / 0 --------------------------------------------------------------------------------------- -Total 4417 4954 112.16% 6 / 6 / 1648 +Total 4417 4827 109.28% 6 / 7 / 1570 -[INFO GRT-0018] Total wirelength: 14991 um +[INFO GRT-0018] Total wirelength: 14639 um [INFO GRT-0014] Routed nets: 563 No differences found. -Differences found at line 2. - srcs: net:resp_msg[10] net:net42 - srcs: net:req_msg[6] net:_370_ -Differences found at line 2. - srcs: net:_380_ net:_392_ - srcs: net:_400_ net:_401_ -Differences found at line 2. - srcs: net:resp_msg[10] net:_380_ - srcs: net:reset net:_380_ +No differences found. +No differences found. +No differences found. diff --git a/src/grt/test/congestion7.rptok b/src/grt/test/congestion7.rptok index e94393f9cf5..85255055d17 100644 --- a/src/grt/test/congestion7.rptok +++ b/src/grt/test/congestion7.rptok @@ -1,265 +1,205 @@ violation type: Horizontal congestion - srcs: net:resp_msg[10] net:net42 + srcs: net:resp_msg[10] net:_380_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 8.4, 44.1 ) - ( 10.5, 46.2) on Layer - + bbox = ( 6.3, 44.1 ) - ( 8.4, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:resp_msg[8] net:net44 + srcs: net:_370_ net:net42 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 8.4, 58.8 ) - ( 10.5, 60.9) on Layer - -violation type: Horizontal congestion - srcs: net:_375_ net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 10.5, 42 ) - ( 12.6, 44.1) on Layer - -violation type: Horizontal congestion - srcs: net:_380_ net:net48 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 12.6, 10.5 ) - ( 14.7, 12.6) on Layer - -violation type: Horizontal congestion - srcs: net:_150_ net:_158_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 12.6, 33.6 ) - ( 14.7, 35.7) on Layer - -violation type: Horizontal congestion - srcs: net:_375_ net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 12.6, 42 ) - ( 14.7, 44.1) on Layer - -violation type: Horizontal congestion - srcs: net:_142_ net:net12 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 14.7, 35.7 ) - ( 16.8, 37.8) on Layer - + bbox = ( 12.6, 39.9 ) - ( 14.7, 42) on Layer - violation type: Horizontal congestion srcs: net:_375_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 14.7, 42 ) - ( 16.8, 44.1) on Layer - -violation type: Horizontal congestion - srcs: net:_392_ net:net44 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 14.7, 58.8 ) - ( 16.8, 60.9) on Layer - -violation type: Horizontal congestion - srcs: net:_150_ net:_421_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 14.7, 60.9 ) - ( 16.8, 63) on Layer - + bbox = ( 14.7, 44.1 ) - ( 16.8, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_370_ + srcs: net:_142_ net:_400_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 16.8, 35.7 ) - ( 18.9, 37.8) on Layer - + bbox = ( 16.8, 37.8 ) - ( 18.9, 39.9) on Layer - violation type: Horizontal congestion srcs: net:_375_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 16.8, 42 ) - ( 18.9, 44.1) on Layer - + bbox = ( 16.8, 44.1 ) - ( 18.9, 46.2) on Layer - violation type: Horizontal congestion srcs: net:_142_ net:net44 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 16.8, 58.8 ) - ( 18.9, 60.9) on Layer - + bbox = ( 16.8, 56.7 ) - ( 18.9, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_421_ + srcs: net:_248_ net:_421_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 16.8, 60.9 ) - ( 18.9, 63) on Layer - + bbox = ( 18.9, 27.3 ) - ( 21, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_370_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 18.9, 33.6 ) - ( 21, 35.7) on Layer - + srcs: net:_248_ net:_375_ net:net43 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 18.9, 44.1 ) - ( 21, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_248_ + srcs: net:clk net:net36 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 18.9, 35.7 ) - ( 21, 37.8) on Layer - + bbox = ( 18.9, 52.5 ) - ( 21, 54.6) on Layer - violation type: Horizontal congestion srcs: net:_142_ net:net44 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 18.9, 58.8 ) - ( 21, 60.9) on Layer - + bbox = ( 18.9, 56.7 ) - ( 21, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_421_ + srcs: net:_158_ net:_421_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 18.9, 60.9 ) - ( 21, 63) on Layer - + bbox = ( 21, 27.3 ) - ( 23.1, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:net43 + srcs: net:clk net:_370_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 14.7 ) - ( 23.1, 16.8) on Layer - + bbox = ( 21, 29.4 ) - ( 23.1, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_244_ + srcs: net:_158_ net:_400_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 23.1 ) - ( 23.1, 25.2) on Layer - + bbox = ( 21, 37.8 ) - ( 23.1, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_392_ + srcs: net:_375_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 25.2 ) - ( 23.1, 27.3) on Layer - + bbox = ( 21, 44.1 ) - ( 23.1, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_370_ + srcs: net:clk net:net36 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 33.6 ) - ( 23.1, 35.7) on Layer - -violation type: Horizontal congestion - srcs: net:_142_ net:_244_ net:_248_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 21, 35.7 ) - ( 23.1, 37.8) on Layer - + bbox = ( 21, 52.5 ) - ( 23.1, 54.6) on Layer - violation type: Horizontal congestion srcs: net:_142_ net:net44 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 58.8 ) - ( 23.1, 60.9) on Layer - + bbox = ( 21, 56.7 ) - ( 23.1, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_421_ + srcs: net:_248_ net:_389_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 60.9 ) - ( 23.1, 63) on Layer - -violation type: Horizontal congestion - srcs: net:_397_ net:net37 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 6.3 ) - ( 25.2, 8.4) on Layer - -violation type: Horizontal congestion - srcs: net:_244_ net:_380_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 10.5 ) - ( 25.2, 12.6) on Layer - -violation type: Horizontal congestion - srcs: net:_389_ net:_401_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 16.8 ) - ( 25.2, 18.9) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_158_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 18.9 ) - ( 25.2, 21) on Layer - + bbox = ( 23.1, 21 ) - ( 25.2, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_392_ + srcs: net:clk net:_370_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 25.2 ) - ( 25.2, 27.3) on Layer - + bbox = ( 23.1, 29.4 ) - ( 25.2, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_248_ net:_370_ + srcs: net:_140_ net:_400_ net:_405_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 23.1, 33.6 ) - ( 25.2, 35.7) on Layer - + bbox = ( 23.1, 37.8 ) - ( 25.2, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_405_ + srcs: net:clk net:_158_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 35.7 ) - ( 25.2, 37.8) on Layer - + bbox = ( 23.1, 42 ) - ( 25.2, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:net43 + srcs: net:_375_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 42 ) - ( 25.2, 44.1) on Layer - + bbox = ( 23.1, 44.1 ) - ( 25.2, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_353_ net:_375_ + srcs: net:_140_ net:_248_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 23.1, 46.2 ) - ( 25.2, 48.3) on Layer - + bbox = ( 23.1, 48.3 ) - ( 25.2, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:net24 net:net36 + srcs: net:clk net:net34 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 50.4 ) - ( 25.2, 52.5) on Layer - + bbox = ( 23.1, 54.6 ) - ( 25.2, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:net44 + srcs: net:clk net:_142_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 23.1, 58.8 ) - ( 25.2, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:net50 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 67.2 ) - ( 25.2, 69.3) on Layer - -violation type: Horizontal congestion - srcs: net:_381_ net:net46 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 2.1 ) - ( 27.3, 4.2) on Layer - -violation type: Horizontal congestion - srcs: net:net37 net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 6.3 ) - ( 27.3, 8.4) on Layer - -violation type: Horizontal congestion - srcs: net:_244_ net:_248_ + srcs: net:_381_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 10.5 ) - ( 27.3, 12.6) on Layer - + bbox = ( 25.2, 8.4 ) - ( 27.3, 10.5) on Layer - violation type: Horizontal congestion srcs: net:_401_ net:net18 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 12.6 ) - ( 27.3, 14.7) on Layer - + bbox = ( 25.2, 16.8 ) - ( 27.3, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_392_ + srcs: net:_248_ net:_389_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 25.2 ) - ( 27.3, 27.3) on Layer - + bbox = ( 25.2, 21 ) - ( 27.3, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_421_ + srcs: net:_142_ net:_158_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 27.3 ) - ( 27.3, 29.4) on Layer - + bbox = ( 25.2, 25.2 ) - ( 27.3, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_401_ + srcs: net:clk net:_370_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 25.2, 29.4 ) - ( 27.3, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_248_ net:_370_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 25.2, 33.6 ) - ( 27.3, 35.7) on Layer - + srcs: net:_140_ net:_142_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 25.2, 35.7 ) - ( 27.3, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_142_ net:_400_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_400_ net:_405_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 25.2, 37.8 ) - ( 27.3, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_053_ net:_107_ net:_244_ + srcs: net:_053_ net:_107_ net:_158_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 25.2, 42 ) - ( 27.3, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_353_ net:_375_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 25.2, 46.2 ) - ( 27.3, 48.3) on Layer - + srcs: net:_375_ net:net43 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 25.2, 44.1 ) - ( 27.3, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_399_ net:_401_ net:net36 + srcs: net:_036_ net:_140_ net:_353_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 25.2, 50.4 ) - ( 27.3, 52.5) on Layer - -violation type: Horizontal congestion - srcs: net:_158_ net:net34 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 54.6 ) - ( 27.3, 56.7) on Layer - + bbox = ( 25.2, 48.3 ) - ( 27.3, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_142_ + srcs: net:_399_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 58.8 ) - ( 27.3, 60.9) on Layer - + bbox = ( 25.2, 50.4 ) - ( 27.3, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:net50 + srcs: net:clk net:net36 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 67.2 ) - ( 27.3, 69.3) on Layer - + bbox = ( 25.2, 52.5 ) - ( 27.3, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:net48 + srcs: net:_142_ net:net44 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 0 ) - ( 29.4, 2.1) on Layer - + bbox = ( 25.2, 56.7 ) - ( 27.3, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:net46 + srcs: net:_353_ net:_380_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 2.1 ) - ( 29.4, 4.2) on Layer - + bbox = ( 25.2, 63 ) - ( 27.3, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:net37 net:net43 + srcs: net:_381_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 6.3 ) - ( 29.4, 8.4) on Layer - + bbox = ( 27.3, 8.4 ) - ( 29.4, 10.5) on Layer - violation type: Horizontal congestion srcs: net:_380_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 8.4 ) - ( 29.4, 10.5) on Layer - + bbox = ( 27.3, 10.5 ) - ( 29.4, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_248_ + srcs: net:_142_ net:net18 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 10.5 ) - ( 29.4, 12.6) on Layer - + bbox = ( 27.3, 16.8 ) - ( 29.4, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_248_ + srcs: net:_248_ net:_389_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 21 ) - ( 29.4, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_392_ net:_421_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_142_ net:_158_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 25.2 ) - ( 29.4, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_150_ net:_252_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 27.3, 31.5 ) - ( 29.4, 33.6) on Layer - + srcs: net:clk net:_370_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 27.3, 29.4 ) - ( 29.4, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_037_ net:_248_ net:_370_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 27.3, 33.6 ) - ( 29.4, 35.7) on Layer - + srcs: net:clk net:_248_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 27.3, 31.5 ) - ( 29.4, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_125_ net:_142_ + srcs: net:_140_ net:_405_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 27.3, 35.7 ) - ( 29.4, 37.8) on Layer - +violation type: Horizontal congestion + srcs: net:_125_ net:_142_ net:_362_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 27.3, 37.8 ) - ( 29.4, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_015_ net:_107_ net:_353_ net:_362_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_015_ net:_107_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 42 ) - ( 29.4, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:net43 - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_158_ net:_353_ net:_375_ net:net43 + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 27.3, 44.1 ) - ( 29.4, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_090_ net:_124_ net:_248_ net:_375_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 27.3, 46.2 ) - ( 29.4, 48.3) on Layer - + srcs: net:_090_ net:_361_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 27.3, 48.3 ) - ( 29.4, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_361_ net:_401_ + srcs: net:clk net:_124_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 50.4 ) - ( 29.4, 52.5) on Layer - violation type: Horizontal congestion @@ -267,11 +207,7 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 52.5 ) - ( 29.4, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_158_ net:_386_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 27.3, 54.6 ) - ( 29.4, 56.7) on Layer - -violation type: Horizontal congestion - srcs: net:_142_ net:_403_ net:net44 + srcs: net:_142_ net:_386_ net:net44 congestion information: capacity:1 usage:3 overflow:2 bbox = ( 27.3, 56.7 ) - ( 29.4, 58.8) on Layer - violation type: Horizontal congestion @@ -279,207 +215,175 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 58.8 ) - ( 29.4, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:net50 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 67.2 ) - ( 29.4, 69.3) on Layer - -violation type: Horizontal congestion - srcs: net:_244_ net:net48 + srcs: net:_353_ net:_380_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 0 ) - ( 31.5, 2.1) on Layer - + bbox = ( 27.3, 63 ) - ( 29.4, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:net46 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 2.1 ) - ( 31.5, 4.2) on Layer - -violation type: Horizontal congestion - srcs: net:net37 net:net43 + srcs: net:_381_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 6.3 ) - ( 31.5, 8.4) on Layer - + bbox = ( 29.4, 8.4 ) - ( 31.5, 10.5) on Layer - violation type: Horizontal congestion srcs: net:_380_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 8.4 ) - ( 31.5, 10.5) on Layer - + bbox = ( 29.4, 10.5 ) - ( 31.5, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_248_ + srcs: net:_142_ net:net18 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 10.5 ) - ( 31.5, 12.6) on Layer - + bbox = ( 29.4, 16.8 ) - ( 31.5, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_248_ + srcs: net:_248_ net:_389_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 21 ) - ( 31.5, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_387_ net:_392_ net:_421_ + srcs: net:_142_ net:_158_ net:_387_ net:_392_ congestion information: capacity:1 usage:4 overflow:3 bbox = ( 29.4, 25.2 ) - ( 31.5, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_077_ net:_401_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_077_ net:_370_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 29.4, 29.4 ) - ( 31.5, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_248_ net:_252_ + srcs: net:_140_ net:_405_ net:dpath.a_lt_b$in0\[9\] congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 29.4, 31.5 ) - ( 31.5, 33.6) on Layer - -violation type: Horizontal congestion - srcs: net:_405_ net:dpath.a_lt_b$in0\[9\] - congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 35.7 ) - ( 31.5, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_091_ net:_125_ net:_142_ net:_307_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_091_ net:_125_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 37.8 ) - ( 31.5, 39.9) on Layer - +violation type: Horizontal congestion + srcs: net:_141_ net:_142_ net:_307_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 29.4, 39.9 ) - ( 31.5, 42) on Layer - violation type: Horizontal congestion srcs: net:_069_ net:_386_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 42 ) - ( 31.5, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 44.1 ) - ( 31.5, 46.2) on Layer - -violation type: Horizontal congestion - srcs: net:_090_ net:_124_ net:_248_ net:_375_ + srcs: net:_124_ net:_158_ net:_375_ net:net43 congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 29.4, 46.2 ) - ( 31.5, 48.3) on Layer - + bbox = ( 29.4, 44.1 ) - ( 31.5, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_385_ net:_401_ + srcs: net:_090_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 50.4 ) - ( 31.5, 52.5) on Layer - + bbox = ( 29.4, 48.3 ) - ( 31.5, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_005_ net:_158_ + srcs: net:_054_ net:_142_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 52.5 ) - ( 31.5, 54.6) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_054_ net:_142_ net:net44 - congestion information: capacity:1 usage:4 overflow:3 bbox = ( 29.4, 54.6 ) - ( 31.5, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_055_ net:_057_ net:_155_ net:_162_ net:_421_ - congestion information: capacity:1 usage:5 overflow:4 - bbox = ( 29.4, 58.8 ) - ( 31.5, 60.9) on Layer - -violation type: Horizontal congestion - srcs: net:_155_ net:_421_ + srcs: net:_403_ net:net44 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 60.9 ) - ( 31.5, 63) on Layer - + bbox = ( 29.4, 56.7 ) - ( 31.5, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_380_ net:_420_ + srcs: net:_055_ net:_057_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 65.1 ) - ( 31.5, 67.2) on Layer - -violation type: Horizontal congestion - srcs: net:_150_ net:_385_ net:net50 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 29.4, 67.2 ) - ( 31.5, 69.3) on Layer - -violation type: Horizontal congestion - srcs: net:_244_ net:_397_ net:net48 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 31.5, 0 ) - ( 33.6, 2.1) on Layer - + bbox = ( 29.4, 58.8 ) - ( 31.5, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:net46 + srcs: net:_353_ net:_380_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 2.1 ) - ( 33.6, 4.2) on Layer - + bbox = ( 29.4, 63 ) - ( 31.5, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:net37 net:net43 + srcs: net:_381_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 6.3 ) - ( 33.6, 8.4) on Layer - + bbox = ( 31.5, 0 ) - ( 33.6, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_380_ net:_401_ + srcs: net:_397_ net:net53 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 8.4 ) - ( 33.6, 10.5) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_248_ + srcs: net:_380_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 10.5 ) - ( 33.6, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_374_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 18.9 ) - ( 33.6, 21) on Layer - -violation type: Horizontal congestion - srcs: net:_142_ net:_244_ + srcs: net:_142_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 23.1 ) - ( 33.6, 25.2) on Layer - + bbox = ( 31.5, 12.6 ) - ( 33.6, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_343_ net:_421_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_158_ net:_343_ net:net53 + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 31.5, 25.2 ) - ( 33.6, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_070_ net:_111_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 31.5 ) - ( 33.6, 33.6) on Layer - + srcs: net:clk net:_070_ net:_244_ net:_370_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 31.5, 29.4 ) - ( 33.6, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_370_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 33.6 ) - ( 33.6, 35.7) on Layer - + srcs: net:_140_ net:_244_ net:_405_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 31.5, 35.7 ) - ( 33.6, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_252_ net:_405_ + srcs: net:_141_ net:_203_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 35.7 ) - ( 33.6, 37.8) on Layer - + bbox = ( 31.5, 39.9 ) - ( 33.6, 42) on Layer - violation type: Horizontal congestion - srcs: net:_141_ net:_218_ + srcs: net:_244_ net:_306_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 37.8 ) - ( 33.6, 39.9) on Layer - + bbox = ( 31.5, 42 ) - ( 33.6, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_124_ net:_244_ net:net43 + srcs: net:_124_ net:_375_ net:net43 congestion information: capacity:1 usage:3 overflow:2 bbox = ( 31.5, 44.1 ) - ( 33.6, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_124_ net:_248_ net:_300_ net:_375_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 31.5, 46.2 ) - ( 33.6, 48.3) on Layer - + srcs: net:_158_ net:_248_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 31.5, 48.3 ) - ( 33.6, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_059_ net:_385_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 31.5, 50.4 ) - ( 33.6, 52.5) on Layer - + srcs: net:_059_ net:net44 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 31.5, 52.5 ) - ( 33.6, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_054_ net:_142_ net:net44 - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:clk net:_054_ net:_142_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 31.5, 54.6 ) - ( 33.6, 56.7) on Layer - violation type: Horizontal congestion srcs: net:_164_ net:_403_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 56.7 ) - ( 33.6, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_055_ net:_156_ net:_421_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_055_ net:_156_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 58.8 ) - ( 33.6, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_162_ net:_420_ + srcs: net:_162_ net:_421_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 63 ) - ( 33.6, 65.1) on Layer - + bbox = ( 31.5, 60.9 ) - ( 33.6, 63) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:net50 + srcs: net:_380_ net:_420_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 67.2 ) - ( 33.6, 69.3) on Layer - + bbox = ( 31.5, 63 ) - ( 33.6, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_397_ net:net48 - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_381_ net:net43 + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 0 ) - ( 35.7, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:net53 + srcs: net:net37 net:net48 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 4.2 ) - ( 35.7, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_380_ net:_401_ net:net43 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 33.6, 8.4 ) - ( 35.7, 10.5) on Layer - + srcs: net:_380_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 33.6, 10.5 ) - ( 35.7, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:_027_ net:_389_ + srcs: net:_142_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 16.8 ) - ( 35.7, 18.9) on Layer - + bbox = ( 33.6, 12.6 ) - ( 35.7, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_115_ net:_158_ net:_374_ + srcs: net:_081_ net:_115_ net:_374_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 18.9 ) - ( 35.7, 21) on Layer - violation type: Horizontal congestion - srcs: net:_081_ net:_342_ net:_344_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 33.6, 21 ) - ( 35.7, 23.1) on Layer - -violation type: Horizontal congestion - srcs: net:_043_ net:_074_ net:_142_ net:_343_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_020_ net:_074_ net:_244_ net:_342_ net:_389_ + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 33.6, 23.1 ) - ( 35.7, 25.2) on Layer - +violation type: Horizontal congestion + srcs: net:_043_ net:_158_ net:_343_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 33.6, 25.2 ) - ( 35.7, 27.3) on Layer - violation type: Horizontal congestion srcs: net:_421_ net:net53 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 27.3 ) - ( 35.7, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_401_ + srcs: net:clk net:_370_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 29.4 ) - ( 35.7, 31.5) on Layer - violation type: Horizontal congestion @@ -487,43 +391,35 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 31.5 ) - ( 35.7, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_252_ net:_370_ + srcs: net:_140_ net:_141_ net:_405_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 33.6, 33.6 ) - ( 35.7, 35.7) on Layer - -violation type: Horizontal congestion - srcs: net:_140_ net:_405_ - congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 35.7 ) - ( 35.7, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_141_ net:_218_ net:_309_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_218_ net:_309_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 37.8 ) - ( 35.7, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_203_ net:_306_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_141_ net:_203_ net:_306_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 39.9 ) - ( 35.7, 42) on Layer - violation type: Horizontal congestion - srcs: net:_140_ net:_216_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_140_ net:_203_ net:_216_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 42 ) - ( 35.7, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_304_ net:net43 - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_244_ net:_304_ net:_375_ net:net43 + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 33.6, 44.1 ) - ( 35.7, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_140_ net:_248_ net:_300_ net:_375_ net:_385_ - congestion information: capacity:1 usage:5 overflow:4 - bbox = ( 33.6, 46.2 ) - ( 35.7, 48.3) on Layer - -violation type: Horizontal congestion - srcs: net:_068_ net:_401_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 50.4 ) - ( 35.7, 52.5) on Layer - + srcs: net:_140_ net:_248_ net:dpath.a_lt_b$in1\[8\] + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 33.6, 48.3 ) - ( 35.7, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_418_ + srcs: net:_418_ net:net44 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 52.5 ) - ( 35.7, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_059_ net:_142_ net:net44 + srcs: net:clk net:_059_ net:_142_ net:_158_ congestion information: capacity:1 usage:4 overflow:3 bbox = ( 33.6, 54.6 ) - ( 35.7, 56.7) on Layer - violation type: Horizontal congestion @@ -531,72 +427,76 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 56.7 ) - ( 35.7, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_154_ net:_402_ + srcs: net:_152_ net:_402_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 33.6, 58.8 ) - ( 35.7, 60.9) on Layer - +violation type: Horizontal congestion + srcs: net:_154_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 60.9 ) - ( 35.7, 63) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_353_ + srcs: net:_353_ net:_380_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 65.1 ) - ( 35.7, 67.2) on Layer - + bbox = ( 33.6, 63 ) - ( 35.7, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:net50 + srcs: net:_253_ net:net50 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 67.2 ) - ( 35.7, 69.3) on Layer - + bbox = ( 33.6, 69.3 ) - ( 35.7, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_385_ + srcs: net:_253_ net:net52 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 75.6 ) - ( 35.7, 77.7) on Layer - + bbox = ( 33.6, 73.5 ) - ( 35.7, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_353_ net:net14 + srcs: net:clk net:net14 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 77.7 ) - ( 35.7, 79.8) on Layer - + bbox = ( 33.6, 75.6 ) - ( 35.7, 77.7) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:net48 + srcs: net:_160_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 0 ) - ( 37.8, 2.1) on Layer - + bbox = ( 33.6, 79.8 ) - ( 35.7, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net46 + srcs: net:_381_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 2.1 ) - ( 37.8, 4.2) on Layer - + bbox = ( 35.7, 0 ) - ( 37.8, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:net53 + srcs: net:net37 net:net48 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 4.2 ) - ( 37.8, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_380_ net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 8.4 ) - ( 37.8, 10.5) on Layer - + srcs: net:_142_ net:_248_ net:_380_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 35.7, 12.6 ) - ( 37.8, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_401_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 10.5 ) - ( 37.8, 12.6) on Layer - + srcs: net:_244_ net:_367_ net:_389_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 35.7, 23.1 ) - ( 37.8, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_252_ + srcs: net:_043_ net:_158_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 14.7 ) - ( 37.8, 16.8) on Layer - + bbox = ( 35.7, 25.2 ) - ( 37.8, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_115_ net:_158_ net:_367_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 35.7, 18.9 ) - ( 37.8, 21) on Layer - + srcs: net:_401_ net:net53 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 35.7, 27.3 ) - ( 37.8, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_043_ net:_142_ + srcs: net:_252_ net:_370_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 23.1 ) - ( 37.8, 25.2) on Layer - + bbox = ( 35.7, 29.4 ) - ( 37.8, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_039_ net:_111_ net:_370_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_039_ net:_111_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 31.5 ) - ( 37.8, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_200_ net:_252_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_200_ net:_252_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 33.6 ) - ( 37.8, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_140_ net:_141_ net:_302_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_140_ net:_141_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 35.7 ) - ( 37.8, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_219_ net:_311_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_219_ net:_302_ net:_311_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 37.8 ) - ( 37.8, 39.9) on Layer - violation type: Horizontal congestion srcs: net:_217_ net:_306_ @@ -607,32 +507,24 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 42 ) - ( 37.8, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_303_ net:_375_ net:net43 - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_244_ net:_303_ net:_375_ net:net43 + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 35.7, 44.1 ) - ( 37.8, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_204_ net:_385_ + srcs: net:_204_ net:_294_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 46.2 ) - ( 37.8, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_253_ net:_294_ net:_299_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 35.7, 48.3 ) - ( 37.8, 50.4) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_401_ + srcs: net:_248_ net:_418_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 50.4 ) - ( 37.8, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_418_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 52.5 ) - ( 37.8, 54.6) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_059_ net:_142_ + srcs: net:_059_ net:_142_ net:_158_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 54.6 ) - ( 37.8, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_153_ net:_160_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_153_ net:_160_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 56.7 ) - ( 37.8, 58.8) on Layer - violation type: Horizontal congestion srcs: net:_056_ net:_152_ @@ -643,355 +535,347 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 60.9 ) - ( 37.8, 63) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_380_ net:_402_ + srcs: net:_253_ net:_353_ net:_380_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 63 ) - ( 37.8, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_378_ + srcs: net:_378_ net:net50 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 71.4 ) - ( 37.8, 73.5) on Layer - -violation type: Horizontal congestion - srcs: net:_244_ net:_397_ net:net46 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 37.8, 2.1 ) - ( 39.9, 4.2) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_380_ net:_401_ net:net43 - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 37.8, 8.4 ) - ( 39.9, 10.5) on Layer - + bbox = ( 35.7, 69.3 ) - ( 37.8, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_252_ + srcs: net:_253_ net:net52 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 14.7 ) - ( 39.9, 16.8) on Layer - + bbox = ( 35.7, 73.5 ) - ( 37.8, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_115_ net:_158_ + srcs: net:_160_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 18.9 ) - ( 39.9, 21) on Layer - + bbox = ( 35.7, 79.8 ) - ( 37.8, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_097_ net:_409_ + srcs: net:_381_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 21 ) - ( 39.9, 23.1) on Layer - + bbox = ( 37.8, 0 ) - ( 39.9, 2.1) on Layer - +violation type: Horizontal congestion + srcs: net:net37 net:net48 net:net53 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 37.8, 4.2 ) - ( 39.9, 6.3) on Layer - +violation type: Horizontal congestion + srcs: net:_397_ net:_401_ net:net31 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 37.8, 10.5 ) - ( 39.9, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_352_ + srcs: net:_142_ net:_248_ net:_380_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 37.8, 12.6 ) - ( 39.9, 14.7) on Layer - +violation type: Horizontal congestion + srcs: net:_115_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 37.8, 18.9 ) - ( 39.9, 21) on Layer - +violation type: Horizontal congestion + srcs: net:_097_ net:_244_ net:_389_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 23.1 ) - ( 39.9, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_093_ net:_401_ + srcs: net:_158_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 29.4 ) - ( 39.9, 31.5) on Layer - + bbox = ( 37.8, 25.2 ) - ( 39.9, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_111_ net:_127_ net:_370_ + srcs: net:_093_ net:_370_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 37.8, 31.5 ) - ( 39.9, 33.6) on Layer - + bbox = ( 37.8, 29.4 ) - ( 39.9, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_148_ net:_150_ net:_200_ + srcs: net:_111_ net:_127_ net:_200_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 33.6 ) - ( 39.9, 35.7) on Layer - +violation type: Horizontal congestion + srcs: net:_128_ net:_148_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 37.8, 35.7 ) - ( 39.9, 37.8) on Layer - violation type: Horizontal congestion srcs: net:_220_ net:_302_ net:_311_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 37.8 ) - ( 39.9, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_202_ net:_252_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_202_ net:_252_ net:_419_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 39.9 ) - ( 39.9, 42) on Layer - violation type: Horizontal congestion - srcs: net:_203_ net:_204_ net:_419_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_203_ net:_204_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 42 ) - ( 39.9, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_204_ net:_298_ net:_375_ net:net43 - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_204_ net:_244_ net:_298_ net:_375_ net:net43 + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 37.8, 44.1 ) - ( 39.9, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_253_ net:_294_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_253_ net:_298_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 48.3 ) - ( 39.9, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_247_ net:_401_ + srcs: net:_247_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 50.4 ) - ( 39.9, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_158_ + srcs: net:_059_ net:_142_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 52.5 ) - ( 39.9, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_058_ net:_059_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 54.6 ) - ( 39.9, 56.7) on Layer - -violation type: Horizontal congestion - srcs: net:_153_ net:_160_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_058_ net:_150_ net:_153_ net:_160_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 37.8, 56.7 ) - ( 39.9, 58.8) on Layer - -violation type: Horizontal congestion - srcs: net:_147_ net:_150_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 58.8 ) - ( 39.9, 60.9) on Layer - violation type: Horizontal congestion srcs: net:_151_ net:_152_ net:_161_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 60.9 ) - ( 39.9, 63) on Layer - violation type: Horizontal congestion - srcs: net:_150_ net:_380_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_253_ net:_353_ net:_380_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 63 ) - ( 39.9, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_353_ net:_402_ net:net33 + srcs: net:_402_ net:net33 net:net50 congestion information: capacity:1 usage:3 overflow:2 bbox = ( 37.8, 65.1 ) - ( 39.9, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_378_ net:net50 + srcs: net:_160_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 67.2 ) - ( 39.9, 69.3) on Layer - + bbox = ( 37.8, 79.8 ) - ( 39.9, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_253_ + srcs: net:_381_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 73.5 ) - ( 39.9, 75.6) on Layer - + bbox = ( 39.9, 0 ) - ( 42, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net46 + srcs: net:net46 net:net53 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 2.1 ) - ( 42, 4.2) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_381_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 6.3 ) - ( 42, 8.4) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_401_ net:net43 + srcs: net:_248_ net:_409_ net:net37 congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 39.9, 8.4 ) - ( 42, 10.5) on Layer - -violation type: Horizontal congestion - srcs: net:_410_ net:net37 - congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 12.6 ) - ( 42, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_252_ + srcs: net:clk net:_390_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 14.7 ) - ( 42, 16.8) on Layer - +violation type: Horizontal congestion + srcs: net:_142_ net:_390_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 39.9, 18.9 ) - ( 42, 21) on Layer - violation type: Horizontal congestion srcs: net:_158_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 21 ) - ( 42, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_352_ net:_410_ + srcs: net:_244_ net:_389_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 25.2 ) - ( 42, 27.3) on Layer - + bbox = ( 39.9, 23.1 ) - ( 42, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_131_ net:_206_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_131_ net:_206_ net:_227_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 39.9, 27.3 ) - ( 42, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_149_ net:_363_ net:_370_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_363_ net:_370_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 31.5 ) - ( 42, 33.6) on Layer - +violation type: Horizontal congestion + srcs: net:_127_ net:_149_ net:_150_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 39.9, 33.6 ) - ( 42, 35.7) on Layer - violation type: Horizontal congestion srcs: net:_128_ net:_201_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 35.7 ) - ( 42, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_220_ net:_311_ net:_317_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 39.9, 37.8 ) - ( 42, 39.9) on Layer - -violation type: Horizontal congestion - srcs: net:_375_ net:_419_ net:net43 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 39.9, 42 ) - ( 42, 44.1) on Layer - + srcs: net:_220_ net:_311_ net:_325_ net:_419_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 39.9, 39.9 ) - ( 42, 42) on Layer - violation type: Horizontal congestion - srcs: net:_205_ net:_298_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_205_ net:_244_ net:_298_ net:_375_ net:net43 + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 39.9, 44.1 ) - ( 42, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_158_ net:_244_ + srcs: net:_109_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 48.3 ) - ( 42, 50.4) on Layer - -violation type: Horizontal congestion - srcs: net:_109_ net:_142_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 39.9, 50.4 ) - ( 42, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_059_ net:_109_ net:_158_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 39.9, 54.6 ) - ( 42, 56.7) on Layer - + srcs: net:_059_ net:_142_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 39.9, 52.5 ) - ( 42, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_380_ + srcs: net:_150_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 56.7 ) - ( 42, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_353_ net:_412_ + srcs: net:clk net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 65.1 ) - ( 42, 67.2) on Layer - + bbox = ( 39.9, 60.9 ) - ( 42, 63) on Layer - +violation type: Horizontal congestion + srcs: net:_253_ net:_353_ net:_380_ net:_412_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 39.9, 63 ) - ( 42, 65.1) on Layer - violation type: Horizontal congestion srcs: net:_160_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 77.7 ) - ( 42, 79.8) on Layer - + bbox = ( 39.9, 79.8 ) - ( 42, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_384_ net:_394_ + srcs: net:_381_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 84 ) - ( 42, 86.1) on Layer - + bbox = ( 42, 0 ) - ( 44.1, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net46 + srcs: net:_397_ net:net48 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 2.1 ) - ( 44.1, 4.2) on Layer - -violation type: Horizontal congestion - srcs: net:_244_ net:_381_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 6.3 ) - ( 44.1, 8.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:net3 + srcs: net:_409_ net:net3 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 10.5 ) - ( 44.1, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_252_ net:_409_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 42, 14.7 ) - ( 44.1, 16.8) on Layer - -violation type: Horizontal congestion - srcs: net:_248_ net:_336_ + srcs: net:_248_ net:net37 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 16.8 ) - ( 44.1, 18.9) on Layer - + bbox = ( 42, 12.6 ) - ( 44.1, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_335_ net:_336_ + srcs: net:_335_ net:_410_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 18.9 ) - ( 44.1, 21) on Layer - violation type: Horizontal congestion - srcs: net:_329_ net:_337_ net:_338_ net:_339_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_244_ net:_329_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 21 ) - ( 44.1, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_352_ net:_410_ + srcs: net:_337_ net:_339_ net:_340_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 42, 23.1 ) - ( 44.1, 25.2) on Layer - +violation type: Horizontal congestion + srcs: net:_338_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 25.2 ) - ( 44.1, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_206_ net:_327_ net:_346_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 42, 27.3 ) - ( 44.1, 29.4) on Layer - -violation type: Horizontal congestion - srcs: net:_131_ net:_228_ + srcs: net:_206_ net:_346_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 29.4 ) - ( 44.1, 31.5) on Layer - + bbox = ( 42, 27.3 ) - ( 44.1, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_149_ net:_223_ net:_227_ + srcs: net:_149_ net:_227_ net:_228_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 31.5 ) - ( 44.1, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_317_ net:_318_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_223_ net:_317_ net:_318_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 33.6 ) - ( 44.1, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_318_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_128_ net:_201_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 35.7 ) - ( 44.1, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_220_ net:_325_ net:_327_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_220_ net:_325_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 39.9 ) - ( 44.1, 42) on Layer - violation type: Horizontal congestion srcs: net:_205_ net:_228_ net:_298_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 44.1 ) - ( 44.1, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_252_ + srcs: net:_252_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 42, 46.2 ) - ( 44.1, 48.3) on Layer - +violation type: Horizontal congestion + srcs: net:_243_ net:_244_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 48.3 ) - ( 44.1, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_142_ net:_243_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_158_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 50.4 ) - ( 44.1, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_117_ net:_158_ net:_159_ net:_160_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_142_ net:_160_ net:_230_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 42, 52.5 ) - ( 44.1, 54.6) on Layer - +violation type: Horizontal congestion + srcs: net:_117_ net:_158_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 54.6 ) - ( 44.1, 56.7) on Layer - violation type: Horizontal congestion srcs: net:_380_ net:_384_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 56.7 ) - ( 44.1, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_099_ net:_147_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_099_ net:_147_ net:_353_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 58.8 ) - ( 44.1, 60.9) on Layer - violation type: Horizontal congestion srcs: net:clk net:_045_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 60.9 ) - ( 44.1, 63) on Layer - violation type: Horizontal congestion - srcs: net:_353_ net:_412_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 65.1 ) - ( 44.1, 67.2) on Layer - -violation type: Horizontal congestion - srcs: net:_029_ net:_159_ net:_378_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 42, 67.2 ) - ( 44.1, 69.3) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_253_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 71.4 ) - ( 44.1, 73.5) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:net52 + srcs: net:_253_ net:_412_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 73.5 ) - ( 44.1, 75.6) on Layer - + bbox = ( 42, 63 ) - ( 44.1, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_253_ + srcs: net:_029_ net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 75.6 ) - ( 44.1, 77.7) on Layer - + bbox = ( 42, 67.2 ) - ( 44.1, 69.3) on Layer - violation type: Horizontal congestion srcs: net:_160_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 77.7 ) - ( 44.1, 79.8) on Layer - + bbox = ( 42, 79.8 ) - ( 44.1, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net46 + srcs: net:_381_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 2.1 ) - ( 46.2, 4.2) on Layer - + bbox = ( 44.1, 0 ) - ( 46.2, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_381_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_397_ net:net48 + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 6.3 ) - ( 46.2, 8.4) on Layer - violation type: Horizontal congestion srcs: net:clk net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 10.5 ) - ( 46.2, 12.6) on Layer - + bbox = ( 44.1, 14.7 ) - ( 46.2, 16.8) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_252_ + srcs: net:_114_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 14.7 ) - ( 46.2, 16.8) on Layer - + bbox = ( 44.1, 16.8 ) - ( 46.2, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_244_ net:_334_ + srcs: net:_073_ net:_334_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 18.9 ) - ( 46.2, 21) on Layer - violation type: Horizontal congestion - srcs: net:_073_ net:_329_ + srcs: net:_244_ net:_329_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 21 ) - ( 46.2, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_337_ net:_352_ + srcs: net:_337_ net:_339_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 25.2 ) - ( 46.2, 27.3) on Layer - + bbox = ( 44.1, 23.1 ) - ( 46.2, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_206_ net:_327_ + srcs: net:_206_ net:_207_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 27.3 ) - ( 46.2, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_131_ net:_207_ net:_410_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_131_ net:_410_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 29.4 ) - ( 46.2, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_221_ net:_317_ net:_318_ + srcs: net:_149_ net:_221_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 44.1, 31.5 ) - ( 46.2, 33.6) on Layer - +violation type: Horizontal congestion + srcs: net:_207_ net:_317_ net:_318_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 33.6 ) - ( 46.2, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_222_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_128_ net:_222_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 35.7 ) - ( 46.2, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_220_ net:_224_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 39.9 ) - ( 46.2, 42) on Layer - + srcs: net:_201_ net:_224_ net:_327_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 44.1, 37.8 ) - ( 46.2, 39.9) on Layer - violation type: Horizontal congestion srcs: net:_352_ net:_375_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 42 ) - ( 46.2, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_205_ net:_228_ net:_298_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_205_ net:_228_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 44.1 ) - ( 46.2, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_242_ net:_244_ net:_252_ + srcs: net:_244_ net:_252_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 48.3 ) - ( 46.2, 50.4) on Layer - violation type: Horizontal congestion @@ -1002,10 +886,6 @@ violation type: Horizontal congestion srcs: net:_165_ net:_230_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 52.5 ) - ( 46.2, 54.6) on Layer - -violation type: Horizontal congestion - srcs: net:_117_ net:_159_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 54.6 ) - ( 46.2, 56.7) on Layer - violation type: Horizontal congestion srcs: net:_158_ net:_384_ congestion information: capacity:1 usage:2 overflow:1 @@ -1015,167 +895,167 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 58.8 ) - ( 46.2, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_007_ net:_117_ + srcs: net:_117_ net:_133_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 44.1, 60.9 ) - ( 46.2, 63) on Layer - +violation type: Horizontal congestion + srcs: net:_007_ net:_412_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 63 ) - ( 46.2, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_083_ net:_378_ + srcs: net:_117_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 67.2 ) - ( 46.2, 69.3) on Layer - + bbox = ( 44.1, 65.1 ) - ( 46.2, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_257_ net:_411_ net:net51 - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 44.1, 69.3 ) - ( 46.2, 71.4) on Layer - + srcs: net:_083_ net:_159_ net:_378_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 44.1, 67.2 ) - ( 46.2, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_253_ + srcs: net:_257_ net:net51 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 71.4 ) - ( 46.2, 73.5) on Layer - violation type: Horizontal congestion srcs: net:_165_ net:net52 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 73.5 ) - ( 46.2, 75.6) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_253_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 75.6 ) - ( 46.2, 77.7) on Layer - violation type: Horizontal congestion srcs: net:_160_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 77.7 ) - ( 46.2, 79.8) on Layer - + bbox = ( 44.1, 79.8 ) - ( 46.2, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net46 + srcs: net:net43 net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 2.1 ) - ( 48.3, 4.2) on Layer - + bbox = ( 46.2, 4.2 ) - ( 48.3, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:_401_ + srcs: net:_397_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 6.3 ) - ( 48.3, 8.4) on Layer - -violation type: Horizontal congestion - srcs: net:_114_ net:_244_ net:_248_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 46.2, 10.5 ) - ( 48.3, 12.6) on Layer - + bbox = ( 46.2, 8.4 ) - ( 48.3, 10.5) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_252_ + srcs: net:clk net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 14.7 ) - ( 48.3, 16.8) on Layer - + bbox = ( 46.2, 12.6 ) - ( 48.3, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_073_ net:_244_ + srcs: net:_114_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 18.9 ) - ( 48.3, 21) on Layer - + bbox = ( 46.2, 14.7 ) - ( 48.3, 16.8) on Layer - violation type: Horizontal congestion - srcs: net:_209_ net:_329_ + srcs: net:_244_ net:_329_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 21 ) - ( 48.3, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_210_ net:_327_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_114_ net:_209_ net:_327_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 23.1 ) - ( 48.3, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_212_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_210_ net:_212_ net:_352_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 25.2 ) - ( 48.3, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_208_ net:_210_ + srcs: net:_129_ net:_208_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 27.3 ) - ( 48.3, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_131_ net:_207_ net:_410_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_131_ net:_410_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 29.4 ) - ( 48.3, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_129_ net:_130_ net:_149_ net:_221_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_130_ net:_149_ net:_221_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 31.5 ) - ( 48.3, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_318_ net:_319_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_207_ net:_318_ net:_319_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 33.6 ) - ( 48.3, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_320_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_128_ net:_320_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 35.7 ) - ( 48.3, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_116_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_116_ net:_201_ net:_222_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 46.2, 37.8 ) - ( 48.3, 39.9) on Layer - +violation type: Horizontal congestion + srcs: net:_116_ net:_222_ net:_352_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 39.9 ) - ( 48.3, 42) on Layer - violation type: Horizontal congestion - srcs: net:_168_ net:_298_ + srcs: net:_116_ net:_213_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 44.1 ) - ( 48.3, 46.2) on Layer - + bbox = ( 46.2, 42 ) - ( 48.3, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_205_ net:_215_ net:_244_ + srcs: net:_168_ net:_205_ net:_215_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 46.2, 48.3 ) - ( 48.3, 50.4) on Layer - + bbox = ( 46.2, 44.1 ) - ( 48.3, 46.2) on Layer - +violation type: Horizontal congestion + srcs: net:_298_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 46.2, 46.2 ) - ( 48.3, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_165_ net:_235_ + srcs: net:_160_ net:_229_ net:_235_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 50.4 ) - ( 48.3, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_229_ net:_230_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 52.5 ) - ( 48.3, 54.6) on Layer - -violation type: Horizontal congestion - srcs: net:_117_ net:_159_ + srcs: net:_117_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 54.6 ) - ( 48.3, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_133_ net:_179_ net:_287_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_179_ net:_287_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 56.7 ) - ( 48.3, 58.8) on Layer - violation type: Horizontal congestion srcs: net:_117_ net:_133_ net:_147_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 58.8 ) - ( 48.3, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_061_ net:_404_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_061_ net:_404_ net:_412_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 63 ) - ( 48.3, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_083_ net:_404_ + srcs: net:_083_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 67.2 ) - ( 48.3, 69.3) on Layer - + bbox = ( 46.2, 65.1 ) - ( 48.3, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_257_ net:_411_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 46.2, 69.3 ) - ( 48.3, 71.4) on Layer - + srcs: net:_159_ net:_404_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 46.2, 67.2 ) - ( 48.3, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_253_ + srcs: net:_249_ net:_411_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 71.4 ) - ( 48.3, 73.5) on Layer - + bbox = ( 46.2, 69.3 ) - ( 48.3, 71.4) on Layer - violation type: Horizontal congestion srcs: net:clk net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 73.5 ) - ( 48.3, 75.6) on Layer - + bbox = ( 46.2, 75.6 ) - ( 48.3, 77.7) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_353_ + srcs: net:_160_ net:_394_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 77.7 ) - ( 48.3, 79.8) on Layer - + bbox = ( 46.2, 79.8 ) - ( 48.3, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net46 + srcs: net:net43 net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 2.1 ) - ( 50.4, 4.2) on Layer - + bbox = ( 48.3, 4.2 ) - ( 50.4, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:_401_ + srcs: net:_397_ net:net48 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 6.3 ) - ( 50.4, 8.4) on Layer - violation type: Horizontal congestion - srcs: net:_409_ net:net43 + srcs: net:_248_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 8.4 ) - ( 50.4, 10.5) on Layer - + bbox = ( 48.3, 10.5 ) - ( 50.4, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:_114_ net:_248_ + srcs: net:clk net:_408_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 10.5 ) - ( 50.4, 12.6) on Layer - + bbox = ( 48.3, 12.6 ) - ( 50.4, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_073_ net:_252_ + srcs: net:_114_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 16.8 ) - ( 50.4, 18.9) on Layer - + bbox = ( 48.3, 14.7 ) - ( 50.4, 16.8) on Layer - violation type: Horizontal congestion - srcs: net:_209_ net:_244_ + srcs: net:_209_ net:_333_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 18.9 ) - ( 50.4, 21) on Layer - violation type: Horizontal congestion - srcs: net:_329_ net:_333_ + srcs: net:_244_ net:_329_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 21 ) - ( 50.4, 23.1) on Layer - violation type: Horizontal congestion @@ -1183,11 +1063,15 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 23.1 ) - ( 50.4, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_212_ net:_332_ net:_352_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_114_ net:_212_ net:_332_ net:_352_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 48.3, 25.2 ) - ( 50.4, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_129_ net:_130_ net:_221_ + srcs: net:_129_ net:_213_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 48.3, 27.3 ) - ( 50.4, 29.4) on Layer - +violation type: Horizontal congestion + srcs: net:_130_ net:_132_ net:_221_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 31.5 ) - ( 50.4, 33.6) on Layer - violation type: Horizontal congestion @@ -1195,39 +1079,35 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 33.6 ) - ( 50.4, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_128_ net:_201_ net:_235_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 48.3, 35.7 ) - ( 50.4, 37.8) on Layer - -violation type: Horizontal congestion - srcs: net:_253_ net:_347_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_201_ net:_235_ net:_253_ net:_347_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 48.3, 37.8 ) - ( 50.4, 39.9) on Layer - violation type: Horizontal congestion srcs: net:_352_ net:_368_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 39.9 ) - ( 50.4, 42) on Layer - violation type: Horizontal congestion - srcs: net:_116_ net:_168_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 42 ) - ( 50.4, 44.1) on Layer - + srcs: net:_168_ net:_205_ net:_213_ net:_215_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 48.3, 44.1 ) - ( 50.4, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_213_ net:_298_ + srcs: net:_298_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 44.1 ) - ( 50.4, 46.2) on Layer - + bbox = ( 48.3, 46.2 ) - ( 50.4, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_165_ net:_205_ net:_215_ net:_244_ - congestion information: capacity:1 usage:5 overflow:4 + srcs: net:_160_ net:_244_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 48.3 ) - ( 50.4, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_229_ net:_230_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_229_ net:_230_ net:_235_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 52.5 ) - ( 50.4, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_235_ net:_404_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_165_ net:_287_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 54.6 ) - ( 50.4, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_117_ net:_179_ net:_287_ + srcs: net:_117_ net:_179_ net:_404_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 56.7 ) - ( 50.4, 58.8) on Layer - violation type: Horizontal congestion @@ -1239,192 +1119,180 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 60.9 ) - ( 50.4, 63) on Layer - violation type: Horizontal congestion - srcs: net:_061_ net:_255_ net:_256_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_061_ net:_255_ net:_256_ net:_412_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 48.3, 63 ) - ( 50.4, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_412_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 65.1 ) - ( 50.4, 67.2) on Layer - -violation type: Horizontal congestion - srcs: net:_249_ net:_257_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 69.3 ) - ( 50.4, 71.4) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_159_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 71.4 ) - ( 50.4, 73.5) on Layer - -violation type: Horizontal congestion - srcs: net:_160_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 77.7 ) - ( 50.4, 79.8) on Layer - + srcs: net:_159_ net:_257_ net:_404_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 48.3, 67.2 ) - ( 50.4, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_249_ + srcs: net:_249_ net:_394_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 79.8 ) - ( 50.4, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_248_ + srcs: net:_160_ net:_370_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 90.3 ) - ( 50.4, 92.4) on Layer - + bbox = ( 48.3, 86.1 ) - ( 50.4, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net46 + srcs: net:net43 net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 2.1 ) - ( 52.5, 4.2) on Layer - + bbox = ( 50.4, 4.2 ) - ( 52.5, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:_401_ net:_409_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_397_ net:net48 + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 6.3 ) - ( 52.5, 8.4) on Layer - violation type: Horizontal congestion - srcs: net:net39 net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 8.4 ) - ( 52.5, 10.5) on Layer - + srcs: net:_248_ net:_409_ net:net39 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 50.4, 10.5 ) - ( 52.5, 12.6) on Layer - violation type: Horizontal congestion srcs: net:_019_ net:_114_ net:_252_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 16.8 ) - ( 52.5, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_130_ net:_244_ + srcs: net:_244_ net:_329_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 18.9 ) - ( 52.5, 21) on Layer - + bbox = ( 50.4, 21 ) - ( 52.5, 23.1) on Layer - violation type: Horizontal congestion - srcs: net:_252_ net:_327_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_252_ net:_327_ net:_352_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 23.1 ) - ( 52.5, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_129_ net:_211_ net:_352_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_129_ net:_211_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 25.2 ) - ( 52.5, 27.3) on Layer - violation type: Horizontal congestion - srcs: net:_231_ net:_233_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_213_ net:_231_ net:_233_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 27.3 ) - ( 52.5, 29.4) on Layer - violation type: Horizontal congestion srcs: net:_130_ net:_232_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 29.4 ) - ( 52.5, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_129_ net:_221_ + srcs: net:_112_ net:_128_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 31.5 ) - ( 52.5, 33.6) on Layer - -violation type: Horizontal congestion - srcs: net:_112_ net:_128_ net:_132_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 33.6 ) - ( 52.5, 35.7) on Layer - violation type: Horizontal congestion srcs: net:_128_ net:_132_ net:_406_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 35.7 ) - ( 52.5, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_347_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 37.8 ) - ( 52.5, 39.9) on Layer - -violation type: Horizontal congestion - srcs: net:_098_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_098_ net:_347_ net:_352_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 39.9 ) - ( 52.5, 42) on Layer - violation type: Horizontal congestion srcs: net:_082_ net:_116_ net:_167_ net:_249_ congestion information: capacity:1 usage:4 overflow:3 bbox = ( 50.4, 42 ) - ( 52.5, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_213_ net:_245_ net:_298_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_213_ net:_245_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 44.1 ) - ( 52.5, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_165_ net:_205_ net:_214_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_298_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 50.4, 46.2 ) - ( 52.5, 48.3) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_205_ net:_214_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 48.3 ) - ( 52.5, 50.4) on Layer - violation type: Horizontal congestion srcs: net:_174_ net:_238_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 50.4 ) - ( 52.5, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_179_ net:_180_ net:_287_ + srcs: net:_165_ net:_236_ net:_287_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 50.4, 54.6 ) - ( 52.5, 56.7) on Layer - +violation type: Horizontal congestion + srcs: net:_179_ net:_180_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 56.7 ) - ( 52.5, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_133_ net:_147_ net:_258_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_133_ net:_147_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 58.8 ) - ( 52.5, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_250_ net:_254_ + srcs: net:_254_ net:_258_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 60.9 ) - ( 52.5, 63) on Layer - violation type: Horizontal congestion - srcs: net:_062_ net:_118_ + srcs: net:_250_ net:_412_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 69.3 ) - ( 52.5, 71.4) on Layer - + bbox = ( 50.4, 63 ) - ( 52.5, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_159_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 71.4 ) - ( 52.5, 73.5) on Layer - + srcs: net:_062_ net:_159_ net:_404_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 50.4, 67.2 ) - ( 52.5, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_249_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 79.8 ) - ( 52.5, 81.9) on Layer - + srcs: net:clk net:_118_ net:_245_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 50.4, 73.5 ) - ( 52.5, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_394_ + srcs: net:_249_ net:_394_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 84 ) - ( 52.5, 86.1) on Layer - + bbox = ( 50.4, 79.8 ) - ( 52.5, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_248_ + srcs: net:_160_ net:_370_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 90.3 ) - ( 52.5, 92.4) on Layer - + bbox = ( 50.4, 86.1 ) - ( 52.5, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_253_ + srcs: net:_248_ net:_381_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 94.5 ) - ( 52.5, 96.6) on Layer - + bbox = ( 52.5, 0 ) - ( 54.6, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net46 + srcs: net:net43 net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 2.1 ) - ( 54.6, 4.2) on Layer - + bbox = ( 52.5, 4.2 ) - ( 54.6, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:_409_ + srcs: net:_397_ net:net48 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 6.3 ) - ( 54.6, 8.4) on Layer - violation type: Horizontal congestion - srcs: net:net39 net:net43 + srcs: net:_401_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 8.4 ) - ( 54.6, 10.5) on Layer - + bbox = ( 52.5, 10.5 ) - ( 54.6, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_401_ + srcs: net:clk net:_371_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 10.5 ) - ( 54.6, 12.6) on Layer - + bbox = ( 52.5, 12.6 ) - ( 54.6, 14.7) on Layer - violation type: Horizontal congestion srcs: net:_130_ net:_366_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 18.9 ) - ( 54.6, 21) on Layer - violation type: Horizontal congestion - srcs: net:_072_ net:_330_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 21 ) - ( 54.6, 23.1) on Layer - -violation type: Horizontal congestion - srcs: net:_113_ net:_129_ net:_352_ + srcs: net:_330_ net:_352_ net:_407_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 52.5, 25.2 ) - ( 54.6, 27.3) on Layer - + bbox = ( 52.5, 23.1 ) - ( 54.6, 25.2) on Layer - violation type: Horizontal congestion srcs: net:_113_ net:_129_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 52.5, 25.2 ) - ( 54.6, 27.3) on Layer - +violation type: Horizontal congestion + srcs: net:_113_ net:_129_ net:_130_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 27.3 ) - ( 54.6, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_129_ net:_130_ + srcs: net:_213_ net:_371_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 29.4 ) - ( 54.6, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_221_ net:_371_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_221_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 31.5 ) - ( 54.6, 33.6) on Layer - violation type: Horizontal congestion srcs: net:_112_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 33.6 ) - ( 54.6, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_128_ net:_406_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:clk net:_128_ net:_406_ net:dpath.a_lt_b$in1\[15\] + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 52.5, 35.7 ) - ( 54.6, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_021_ net:_253_ net:dpath.a_lt_b$in1\[15\] - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_021_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 37.8 ) - ( 54.6, 39.9) on Layer - violation type: Horizontal congestion srcs: net:_249_ net:_352_ @@ -1435,212 +1303,236 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 42 ) - ( 54.6, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_298_ + srcs: net:_213_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 44.1 ) - ( 54.6, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_165_ net:_199_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 52.5, 48.3 ) - ( 54.6, 50.4) on Layer - -violation type: Horizontal congestion - srcs: net:_178_ net:_237_ + srcs: net:_298_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 52.5 ) - ( 54.6, 54.6) on Layer - + bbox = ( 52.5, 46.2 ) - ( 54.6, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_174_ net:_287_ + srcs: net:_160_ net:_199_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 56.7 ) - ( 54.6, 58.8) on Layer - + bbox = ( 52.5, 48.3 ) - ( 54.6, 50.4) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_174_ net:_237_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 52.5, 50.4 ) - ( 54.6, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_147_ net:_258_ + srcs: net:_165_ net:_236_ net:_287_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 52.5, 58.8 ) - ( 54.6, 60.9) on Layer - + bbox = ( 52.5, 54.6 ) - ( 54.6, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_250_ + srcs: net:_174_ net:_178_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 60.9 ) - ( 54.6, 63) on Layer - + bbox = ( 52.5, 56.7 ) - ( 54.6, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_173_ + srcs: net:_147_ net:_250_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 63 ) - ( 54.6, 65.1) on Layer - + bbox = ( 52.5, 58.8 ) - ( 54.6, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_258_ + srcs: net:_110_ net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 65.1 ) - ( 54.6, 67.2) on Layer - + bbox = ( 52.5, 67.2 ) - ( 54.6, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_008_ net:_118_ net:_126_ net:_159_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_008_ net:_118_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 69.3 ) - ( 54.6, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_248_ + srcs: net:_126_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 90.3 ) - ( 54.6, 92.4) on Layer - + bbox = ( 52.5, 77.7 ) - ( 54.6, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net33 + srcs: net:_165_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 92.4 ) - ( 54.6, 94.5) on Layer - + bbox = ( 52.5, 81.9 ) - ( 54.6, 84) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_253_ + srcs: net:_160_ net:_370_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 94.5 ) - ( 54.6, 96.6) on Layer - + bbox = ( 52.5, 86.1 ) - ( 54.6, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net53 + srcs: net:_248_ net:_381_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 0 ) - ( 56.7, 2.1) on Layer - +violation type: Horizontal congestion + srcs: net:_397_ net:net43 net:net46 + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 4.2 ) - ( 56.7, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:net39 net:net43 + srcs: net:_409_ net:net39 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 8.4 ) - ( 56.7, 10.5) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_381_ + srcs: net:clk net:_371_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 10.5 ) - ( 56.7, 12.6) on Layer - + bbox = ( 54.6, 12.6 ) - ( 56.7, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:_072_ net:_130_ net:_407_ + srcs: net:_373_ net:_401_ net:_407_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 54.6, 18.9 ) - ( 56.7, 21) on Layer - + bbox = ( 54.6, 16.8 ) - ( 56.7, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_113_ net:_129_ + srcs: net:_072_ net:_079_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 25.2 ) - ( 56.7, 27.3) on Layer - + bbox = ( 54.6, 21 ) - ( 56.7, 23.1) on Layer - +violation type: Horizontal congestion + srcs: net:_113_ net:_248_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 23.1 ) - ( 56.7, 25.2) on Layer - violation type: Horizontal congestion srcs: net:_113_ net:_129_ net:_130_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 27.3 ) - ( 56.7, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_221_ net:_371_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 54.6, 31.5 ) - ( 56.7, 33.6) on Layer - -violation type: Horizontal congestion - srcs: net:_112_ net:dpath.a_lt_b$in1\[11\] - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_112_ net:_221_ net:dpath.a_lt_b$in1\[11\] + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 54.6, 33.6 ) - ( 56.7, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_406_ + srcs: net:_249_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 35.7 ) - ( 56.7, 37.8) on Layer - + bbox = ( 54.6, 37.8 ) - ( 56.7, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_249_ + srcs: net:_159_ net:_245_ net:dpath.a_lt_b$in0\[15\] + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 54.6, 42 ) - ( 56.7, 44.1) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 39.9 ) - ( 56.7, 42) on Layer - + bbox = ( 54.6, 44.1 ) - ( 56.7, 46.2) on Layer - violation type: Horizontal congestion srcs: net:_298_ net:_348_ net:_377_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 46.2 ) - ( 56.7, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_165_ net:_199_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_160_ net:_199_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 48.3 ) - ( 56.7, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_184_ net:_237_ + srcs: net:_177_ net:_237_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 52.5 ) - ( 56.7, 54.6) on Layer - + bbox = ( 54.6, 50.4 ) - ( 56.7, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_174_ net:_287_ + srcs: net:_236_ net:_287_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 56.7 ) - ( 56.7, 58.8) on Layer - + bbox = ( 54.6, 54.6 ) - ( 56.7, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_146_ net:_147_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_146_ net:_147_ net:_262_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 58.8 ) - ( 56.7, 60.9) on Layer - violation type: Horizontal congestion srcs: net:_173_ net:_174_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 63 ) - ( 56.7, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_118_ net:_134_ + srcs: net:_118_ net:_262_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 67.2 ) - ( 56.7, 69.3) on Layer - + bbox = ( 54.6, 65.1 ) - ( 56.7, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_159_ net:_393_ + srcs: net:_134_ net:_159_ net:_173_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 54.6, 69.3 ) - ( 56.7, 71.4) on Layer - + bbox = ( 54.6, 67.2 ) - ( 56.7, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_100_ net:_134_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_100_ net:_134_ net:_393_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 71.4 ) - ( 56.7, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_160_ + srcs: net:_126_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 77.7 ) - ( 56.7, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_393_ net:_394_ + srcs: net:_165_ net:_249_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 81.9 ) - ( 56.7, 84) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_393_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 84 ) - ( 56.7, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_248_ + srcs: net:_160_ net:_370_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 90.3 ) - ( 56.7, 92.4) on Layer - + bbox = ( 54.6, 86.1 ) - ( 56.7, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net33 + srcs: net:clk net:_110_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 92.4 ) - ( 56.7, 94.5) on Layer - + bbox = ( 54.6, 88.2 ) - ( 56.7, 90.3) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_253_ + srcs: net:_248_ net:_381_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 94.5 ) - ( 56.7, 96.6) on Layer - + bbox = ( 56.7, 0 ) - ( 58.8, 2.1) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net53 + srcs: net:_397_ net:net46 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 4.2 ) - ( 58.8, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_381_ net:net43 + srcs: net:net43 net:net48 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 10.5 ) - ( 58.8, 12.6) on Layer - + bbox = ( 56.7, 6.3 ) - ( 58.8, 8.4) on Layer - violation type: Horizontal congestion - srcs: net:_401_ net:net19 + srcs: net:_409_ net:net39 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 14.7 ) - ( 58.8, 16.8) on Layer - + bbox = ( 56.7, 8.4 ) - ( 58.8, 10.5) on Layer - violation type: Horizontal congestion - srcs: net:clk net:dpath.a_lt_b$in0\[12\] + srcs: net:net19 net:net40 congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 56.7, 16.8 ) - ( 58.8, 18.9) on Layer - +violation type: Horizontal congestion + srcs: net:_130_ net:_371_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 56.7, 18.9 ) - ( 58.8, 21) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_025_ net:_113_ net:_248_ net:dpath.a_lt_b$in0\[12\] + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 56.7, 23.1 ) - ( 58.8, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:_113_ net:_129_ net:_130_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_129_ net:_130_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 27.3 ) - ( 58.8, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_371_ net:_372_ net:_401_ + srcs: net:_371_ net:_388_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 56.7, 29.4 ) - ( 58.8, 31.5) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_372_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 31.5 ) - ( 58.8, 33.6) on Layer - violation type: Horizontal congestion srcs: net:_112_ net:_221_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 33.6 ) - ( 58.8, 35.7) on Layer - -violation type: Horizontal congestion - srcs: net:clk net:_406_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 35.7 ) - ( 58.8, 37.8) on Layer - violation type: Horizontal congestion srcs: net:_249_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 37.8 ) - ( 58.8, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_165_ net:_315_ net:_388_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 56.7, 42 ) - ( 58.8, 44.1) on Layer - + srcs: net:_245_ net:_315_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 56.7, 39.9 ) - ( 58.8, 42) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_160_ + srcs: net:_159_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 44.1 ) - ( 58.8, 46.2) on Layer - + bbox = ( 56.7, 42 ) - ( 58.8, 44.1) on Layer - +violation type: Horizontal congestion + srcs: net:_160_ net:_348_ net:_377_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 56.7, 46.2 ) - ( 58.8, 48.3) on Layer - violation type: Horizontal congestion srcs: net:_237_ net:_295_ net:_297_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 56.7, 48.3 ) - ( 58.8, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_177_ net:_195_ + srcs: net:_171_ net:_177_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 52.5 ) - ( 58.8, 54.6) on Layer - + bbox = ( 56.7, 50.4 ) - ( 58.8, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_196_ net:_236_ + srcs: net:_196_ net:_287_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 54.6 ) - ( 58.8, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_271_ net:_287_ + srcs: net:_143_ net:_271_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 56.7 ) - ( 58.8, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_143_ net:_144_ net:_348_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_144_ net:_236_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 58.8 ) - ( 58.8, 60.9) on Layer - violation type: Horizontal congestion srcs: net:_119_ net:_144_ @@ -1659,31 +1551,39 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 67.2 ) - ( 58.8, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_126_ net:_353_ + srcs: net:_160_ net:_391_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 69.3 ) - ( 58.8, 71.4) on Layer - + bbox = ( 56.7, 73.5 ) - ( 58.8, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_160_ + srcs: net:_126_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 77.7 ) - ( 58.8, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_394_ + srcs: net:_165_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 81.9 ) - ( 58.8, 84) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_248_ + srcs: net:_159_ net:_393_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 90.3 ) - ( 58.8, 92.4) on Layer - + bbox = ( 56.7, 84 ) - ( 58.8, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net33 + srcs: net:_160_ net:_370_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 92.4 ) - ( 58.8, 94.5) on Layer - + bbox = ( 56.7, 86.1 ) - ( 58.8, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_253_ + srcs: net:clk net:_110_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 56.7, 88.2 ) - ( 58.8, 90.3) on Layer - +violation type: Horizontal congestion + srcs: net:_388_ net:net33 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 94.5 ) - ( 58.8, 96.6) on Layer - violation type: Horizontal congestion - srcs: net:_397_ net:net53 + srcs: net:_248_ net:_381_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 58.8, 0 ) - ( 60.9, 2.1) on Layer - +violation type: Horizontal congestion + srcs: net:_397_ net:net46 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 4.2 ) - ( 60.9, 6.3) on Layer - violation type: Horizontal congestion @@ -1691,195 +1591,207 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 8.4 ) - ( 60.9, 10.5) on Layer - violation type: Horizontal congestion - srcs: net:_401_ net:net19 + srcs: net:_388_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 14.7 ) - ( 60.9, 16.8) on Layer - + bbox = ( 58.8, 29.4 ) - ( 60.9, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_113_ net:_130_ + srcs: net:clk net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 27.3 ) - ( 60.9, 29.4) on Layer - -violation type: Horizontal congestion - srcs: net:_112_ net:_372_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 31.5 ) - ( 60.9, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_249_ net:_406_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 58.8, 35.7 ) - ( 60.9, 37.8) on Layer - + srcs: net:_112_ net:_406_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 58.8, 33.6 ) - ( 60.9, 35.7) on Layer - violation type: Horizontal congestion srcs: net:_249_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 37.8 ) - ( 60.9, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_245_ net:_388_ net:_397_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_245_ net:_397_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 39.9 ) - ( 60.9, 42) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_359_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_165_ net:_359_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 42 ) - ( 60.9, 44.1) on Layer - violation type: Horizontal congestion srcs: net:clk net:_122_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 44.1 ) - ( 60.9, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_193_ net:_272_ net:_377_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 58.8, 46.2 ) - ( 60.9, 48.3) on Layer - + srcs: net:_138_ net:_193_ net:_272_ net:_297_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 58.8, 48.3 ) - ( 60.9, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_138_ net:_297_ + srcs: net:_171_ net:_177_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 48.3 ) - ( 60.9, 50.4) on Layer - + bbox = ( 58.8, 50.4 ) - ( 60.9, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_177_ net:_236_ + srcs: net:_287_ net:_348_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 54.6 ) - ( 60.9, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_144_ net:_287_ + srcs: net:_143_ net:_144_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 56.7 ) - ( 60.9, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_143_ net:_144_ + srcs: net:_144_ net:_236_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 58.8 ) - ( 60.9, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_119_ net:_144_ net:_172_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_144_ net:_172_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 60.9 ) - ( 60.9, 63) on Layer - violation type: Horizontal congestion - srcs: net:_172_ net:_265_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_172_ net:_265_ net:_348_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 63 ) - ( 60.9, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_135_ net:_165_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_047_ net:_135_ net:_165_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 67.2 ) - ( 60.9, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:_047_ net:_126_ net:_356_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 58.8, 69.3 ) - ( 60.9, 71.4) on Layer - + srcs: net:_160_ net:_391_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 58.8, 73.5 ) - ( 60.9, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_160_ + srcs: net:_126_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 77.7 ) - ( 60.9, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_249_ + srcs: net:_372_ net:net20 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 79.8 ) - ( 60.9, 81.9) on Layer - + bbox = ( 58.8, 81.9 ) - ( 60.9, 84) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_248_ + srcs: net:_159_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 90.3 ) - ( 60.9, 92.4) on Layer - + bbox = ( 58.8, 84 ) - ( 60.9, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net33 + srcs: net:_160_ net:net22 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 92.4 ) - ( 60.9, 94.5) on Layer - + bbox = ( 58.8, 86.1 ) - ( 60.9, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_253_ + srcs: net:clk net:_110_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 58.8, 88.2 ) - ( 60.9, 90.3) on Layer - +violation type: Horizontal congestion + srcs: net:_248_ net:net33 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 94.5 ) - ( 60.9, 96.6) on Layer - violation type: Horizontal congestion - srcs: net:_409_ net:net39 + srcs: net:_397_ net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 8.4 ) - ( 63, 10.5) on Layer - + bbox = ( 60.9, 4.2 ) - ( 63, 6.3) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_371_ net:_397_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 60.9, 29.4 ) - ( 63, 31.5) on Layer - + srcs: net:_409_ net:net19 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 10.5 ) - ( 63, 12.6) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_372_ net:_388_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_130_ net:_248_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 18.9 ) - ( 63, 21) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_372_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 31.5 ) - ( 63, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_253_ + srcs: net:_249_ net:_406_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 37.8 ) - ( 63, 39.9) on Layer - + bbox = ( 60.9, 33.6 ) - ( 63, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_050_ net:_159_ net:_245_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 60.9, 39.9 ) - ( 63, 42) on Layer - -violation type: Horizontal congestion - srcs: net:_138_ net:_165_ + srcs: net:_245_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 37.8 ) - ( 63, 39.9) on Layer - +violation type: Horizontal congestion + srcs: net:_138_ net:_159_ net:_165_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 42 ) - ( 63, 44.1) on Layer - violation type: Horizontal congestion srcs: net:clk net:_122_ net:_353_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 44.1 ) - ( 63, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_272_ net:_288_ net:_377_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_288_ net:_377_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 46.2 ) - ( 63, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_289_ net:_297_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_177_ net:_272_ net:_289_ net:_297_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 60.9, 48.3 ) - ( 63, 50.4) on Layer - violation type: Horizontal congestion srcs: net:_169_ net:_171_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 50.4 ) - ( 63, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_177_ net:_191_ + srcs: net:_189_ net:_191_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 54.6 ) - ( 63, 56.7) on Layer - + bbox = ( 60.9, 52.5 ) - ( 63, 54.6) on Layer - +violation type: Horizontal congestion + srcs: net:_143_ net:_287_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 56.7 ) - ( 63, 58.8) on Layer - violation type: Horizontal congestion srcs: net:_144_ net:_236_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 60.9 ) - ( 63, 63) on Layer - violation type: Horizontal congestion - srcs: net:_009_ net:_119_ net:_165_ + srcs: net:clk net:_009_ net:_165_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 67.2 ) - ( 63, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_126_ + srcs: net:clk net:_391_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 69.3 ) - ( 63, 71.4) on Layer - -violation type: Horizontal congestion - srcs: net:_119_ net:_248_ net:_249_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 60.9, 71.4 ) - ( 63, 73.5) on Layer - + bbox = ( 60.9, 73.5 ) - ( 63, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_160_ + srcs: net:_126_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 77.7 ) - ( 63, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_249_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 79.8 ) - ( 63, 81.9) on Layer - + srcs: net:_159_ net:_249_ net:_372_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 60.9, 84 ) - ( 63, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net33 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 92.4 ) - ( 63, 94.5) on Layer - + srcs: net:clk net:_110_ net:_160_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 60.9, 88.2 ) - ( 63, 90.3) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_253_ + srcs: net:_248_ net:net33 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 94.5 ) - ( 63, 96.6) on Layer - violation type: Horizontal congestion - srcs: net:_113_ net:_248_ + srcs: net:_397_ net:net40 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 23.1 ) - ( 65.1, 25.2) on Layer - + bbox = ( 63, 16.8 ) - ( 65.1, 18.9) on Layer - violation type: Horizontal congestion - srcs: net:_113_ net:_249_ + srcs: net:clk net:_397_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 27.3 ) - ( 65.1, 29.4) on Layer - + bbox = ( 63, 23.1 ) - ( 65.1, 25.2) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_372_ net:_388_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:clk net:_372_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 31.5 ) - ( 65.1, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:net41 net:net46 + srcs: net:_249_ net:net41 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 33.6 ) - ( 65.1, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_245_ net:_248_ net:_253_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_248_ net:_416_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 63, 35.7 ) - ( 65.1, 37.8) on Layer - +violation type: Horizontal congestion + srcs: net:_245_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 37.8 ) - ( 65.1, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_122_ net:_138_ net:_377_ + srcs: net:clk net:_138_ net:_159_ net:_165_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 63, 42 ) - ( 65.1, 44.1) on Layer - +violation type: Horizontal congestion + srcs: net:_122_ net:_353_ net:_377_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 44.1 ) - ( 65.1, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_272_ net:_353_ + srcs: net:_177_ net:_272_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 46.2 ) - ( 65.1, 48.3) on Layer - violation type: Horizontal congestion @@ -1887,99 +1799,103 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 48.3 ) - ( 65.1, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_171_ net:_189_ net:_296_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_171_ net:_296_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 50.4 ) - ( 65.1, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_123_ net:_190_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_123_ net:_189_ net:_190_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 52.5 ) - ( 65.1, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_169_ net:_177_ + srcs: net:_169_ net:_417_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 54.6 ) - ( 65.1, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_067_ net:_245_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_067_ net:_143_ net:_245_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 56.7 ) - ( 65.1, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_123_ net:_143_ + srcs: net:_123_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 58.8 ) - ( 65.1, 60.9) on Layer - -violation type: Horizontal congestion - srcs: net:_236_ net:_253_ net:_417_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 63, 60.9 ) - ( 65.1, 63) on Layer - violation type: Horizontal congestion srcs: net:_063_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 67.2 ) - ( 65.1, 69.3) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_126_ + srcs: net:_031_ net:_119_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 69.3 ) - ( 65.1, 71.4) on Layer - + bbox = ( 63, 71.4 ) - ( 65.1, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:_031_ net:_391_ + srcs: net:_245_ net:_391_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 73.5 ) - ( 65.1, 75.6) on Layer - + bbox = ( 63, 75.6 ) - ( 65.1, 77.7) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_245_ + srcs: net:_126_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 79.8 ) - ( 65.1, 81.9) on Layer - + bbox = ( 63, 77.7 ) - ( 65.1, 79.8) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_372_ + srcs: net:_159_ net:net20 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 81.9 ) - ( 65.1, 84) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_253_ + srcs: net:_249_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 94.5 ) - ( 65.1, 96.6) on Layer - + bbox = ( 63, 84 ) - ( 65.1, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_372_ + srcs: net:clk net:_110_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 27.3 ) - ( 67.2, 29.4) on Layer - + bbox = ( 63, 88.2 ) - ( 65.1, 90.3) on Layer - violation type: Horizontal congestion - srcs: net:_248_ net:_371_ + srcs: net:_160_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 29.4 ) - ( 67.2, 31.5) on Layer - + bbox = ( 63, 90.3 ) - ( 65.1, 92.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_388_ + srcs: net:net39 net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 31.5 ) - ( 67.2, 33.6) on Layer - + bbox = ( 65.1, 8.4 ) - ( 67.2, 10.5) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_245_ net:_253_ net:_286_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 65.1, 37.8 ) - ( 67.2, 39.9) on Layer - + srcs: net:_248_ net:_372_ net:_388_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 65.1, 29.4 ) - ( 67.2, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_285_ net:_416_ + srcs: net:_249_ net:net41 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 39.9 ) - ( 67.2, 42) on Layer - + bbox = ( 65.1, 33.6 ) - ( 67.2, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_122_ net:_138_ net:_377_ + srcs: net:_245_ net:_253_ net:_286_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 65.1, 44.1 ) - ( 67.2, 46.2) on Layer - + bbox = ( 65.1, 37.8 ) - ( 67.2, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_272_ net:_353_ net:_416_ + srcs: net:clk net:_159_ net:_165_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 65.1, 42 ) - ( 67.2, 44.1) on Layer - +violation type: Horizontal congestion + srcs: net:_122_ net:_138_ net:_353_ net:_377_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 65.1, 44.1 ) - ( 67.2, 46.2) on Layer - +violation type: Horizontal congestion + srcs: net:_177_ net:_272_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 46.2 ) - ( 67.2, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_171_ net:_189_ net:_283_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_171_ net:_283_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 50.4 ) - ( 67.2, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_123_ net:_169_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_123_ net:_143_ net:_169_ net:_189_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 65.1, 52.5 ) - ( 67.2, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_013_ net:_139_ net:_143_ net:_245_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 65.1, 56.7 ) - ( 67.2, 58.8) on Layer - + srcs: net:_139_ net:_417_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 65.1, 54.6 ) - ( 67.2, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_236_ net:_417_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 65.1, 60.9 ) - ( 67.2, 63) on Layer - + srcs: net:_013_ net:_245_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 65.1, 56.7 ) - ( 67.2, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_413_ + srcs: net:_236_ net:_413_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 63 ) - ( 67.2, 65.1) on Layer - violation type: Horizontal congestion @@ -1987,51 +1903,67 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 65.1 ) - ( 67.2, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_031_ net:_126_ net:_245_ net:_261_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 65.1, 69.3 ) - ( 67.2, 71.4) on Layer - + srcs: net:_165_ net:_245_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 65.1, 67.2 ) - ( 67.2, 69.3) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_245_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 65.1, 73.5 ) - ( 67.2, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_353_ net:_391_ + srcs: net:_126_ net:_391_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 75.6 ) - ( 67.2, 77.7) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_245_ + srcs: net:_159_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 79.8 ) - ( 67.2, 81.9) on Layer - + bbox = ( 65.1, 81.9 ) - ( 67.2, 84) on Layer - violation type: Horizontal congestion srcs: net:_249_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 81.9 ) - ( 67.2, 84) on Layer - + bbox = ( 65.1, 84 ) - ( 67.2, 86.1) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:net20 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 65.1, 86.1 ) - ( 67.2, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:net1 + srcs: net:_160_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 90.3 ) - ( 67.2, 92.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_371_ + srcs: net:net1 net:net33 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 25.2 ) - ( 69.3, 27.3) on Layer - + bbox = ( 65.1, 94.5 ) - ( 67.2, 96.6) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_372_ + srcs: net:_253_ net:net48 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 27.3 ) - ( 69.3, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_388_ net:_414_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_248_ net:_372_ net:_388_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 29.4 ) - ( 69.3, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_245_ net:_253_ net:_281_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_249_ net:net41 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 67.2, 33.6 ) - ( 69.3, 35.7) on Layer - +violation type: Horizontal congestion + srcs: net:_245_ net:_281_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 37.8 ) - ( 69.3, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_377_ + srcs: net:_253_ net:_414_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 67.2, 39.9 ) - ( 69.3, 42) on Layer - +violation type: Horizontal congestion + srcs: net:_136_ net:_159_ net:_165_ net:_353_ net:_377_ + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 67.2, 42 ) - ( 69.3, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_138_ net:_272_ + srcs: net:_272_ net:_414_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 44.1 ) - ( 69.3, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_136_ net:_353_ + srcs: net:_138_ net:_177_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 46.2 ) - ( 69.3, 48.3) on Layer - violation type: Horizontal congestion @@ -2039,407 +1971,435 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 48.3 ) - ( 69.3, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_143_ net:_171_ net:_189_ net:_283_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_143_ net:_171_ net:_189_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 50.4 ) - ( 69.3, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_137_ net:_139_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_137_ net:_139_ net:_283_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 52.5 ) - ( 69.3, 54.6) on Layer - violation type: Horizontal congestion srcs: net:_013_ net:_051_ net:_245_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 56.7 ) - ( 69.3, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_123_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 58.8 ) - ( 69.3, 60.9) on Layer - -violation type: Horizontal congestion - srcs: net:_236_ net:_417_ net:dpath.a_lt_b$in0\[7\] + srcs: net:_236_ net:_245_ net:_413_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 67.2, 60.9 ) - ( 69.3, 63) on Layer - -violation type: Horizontal congestion - srcs: net:_245_ net:_413_ - congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 63 ) - ( 69.3, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:_353_ + srcs: net:_165_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 65.1 ) - ( 69.3, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_165_ + srcs: net:_249_ net:_379_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 67.2 ) - ( 69.3, 69.3) on Layer - + bbox = ( 67.2, 71.4 ) - ( 69.3, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:_092_ net:_126_ + srcs: net:clk net:_245_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 69.3 ) - ( 69.3, 71.4) on Layer - + bbox = ( 67.2, 73.5 ) - ( 69.3, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_353_ + srcs: net:_126_ net:_391_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 75.6 ) - ( 69.3, 77.7) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_372_ + srcs: net:_159_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 81.9 ) - ( 69.3, 84) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:net20 + srcs: net:clk net:net20 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 86.1 ) - ( 69.3, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_159_ + srcs: net:_110_ net:net13 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 88.2 ) - ( 69.3, 90.3) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_372_ + srcs: net:_160_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 67.2, 90.3 ) - ( 69.3, 92.4) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 27.3 ) - ( 71.4, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_388_ net:_414_ + srcs: net:_372_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 29.4 ) - ( 71.4, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_165_ net:_383_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_165_ net:net41 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 31.5 ) - ( 71.4, 33.6) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_383_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 35.7 ) - ( 71.4, 37.8) on Layer - violation type: Horizontal congestion srcs: net:_245_ net:_268_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 37.8 ) - ( 71.4, 39.9) on Layer - violation type: Horizontal congestion - srcs: net:_273_ net:_381_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 39.9 ) - ( 71.4, 42) on Layer - -violation type: Horizontal congestion - srcs: net:_377_ net:_414_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_136_ net:_353_ net:_377_ net:_381_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 69.3, 42 ) - ( 71.4, 44.1) on Layer - violation type: Horizontal congestion srcs: net:_176_ net:_276_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 44.1 ) - ( 71.4, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_136_ net:_175_ net:_353_ + srcs: net:_175_ net:_186_ net:_278_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 69.3, 46.2 ) - ( 71.4, 48.3) on Layer - -violation type: Horizontal congestion - srcs: net:_175_ net:_278_ - congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 48.3 ) - ( 71.4, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_186_ net:_187_ net:_188_ net:_283_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 69.3, 50.4 ) - ( 71.4, 52.5) on Layer - + srcs: net:_137_ net:_188_ net:_283_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 69.3, 52.5 ) - ( 71.4, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_137_ net:_139_ + srcs: net:_139_ net:_417_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 52.5 ) - ( 71.4, 54.6) on Layer - + bbox = ( 69.3, 54.6 ) - ( 71.4, 56.7) on Layer - violation type: Horizontal congestion srcs: net:_245_ net:dpath.a_lt_b$in1\[7\] congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 56.7 ) - ( 71.4, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_236_ net:_360_ net:_413_ net:_417_ - congestion information: capacity:1 usage:5 overflow:4 - bbox = ( 69.3, 60.9 ) - ( 71.4, 63) on Layer - -violation type: Horizontal congestion - srcs: net:_166_ net:_246_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_160_ net:_236_ net:_413_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 63 ) - ( 71.4, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_165_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 67.2 ) - ( 71.4, 69.3) on Layer - + srcs: net:_165_ net:_166_ net:_246_ net:_253_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 69.3, 65.1 ) - ( 71.4, 67.2) on Layer - violation type: Horizontal congestion srcs: net:_092_ net:_351_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 69.3 ) - ( 71.4, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_353_ + srcs: net:_249_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 75.6 ) - ( 71.4, 77.7) on Layer - + bbox = ( 69.3, 71.4 ) - ( 71.4, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_372_ + srcs: net:clk net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 81.9 ) - ( 71.4, 84) on Layer - + bbox = ( 69.3, 79.8 ) - ( 71.4, 81.9) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:net20 + srcs: net:_159_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 86.1 ) - ( 71.4, 88.2) on Layer - + bbox = ( 69.3, 84 ) - ( 71.4, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_159_ + srcs: net:_160_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 88.2 ) - ( 71.4, 90.3) on Layer - + bbox = ( 69.3, 90.3 ) - ( 71.4, 92.4) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_372_ + srcs: net:clk net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 27.3 ) - ( 73.5, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_388_ net:_414_ + srcs: net:_372_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 29.4 ) - ( 73.5, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_165_ net:_381_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 71.4, 35.7 ) - ( 73.5, 37.8) on Layer - + srcs: net:_165_ net:net41 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 31.5 ) - ( 73.5, 33.6) on Layer - violation type: Horizontal congestion srcs: net:_064_ net:_274_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 39.9 ) - ( 73.5, 42) on Layer - violation type: Horizontal congestion - srcs: net:_120_ net:_136_ net:_377_ + srcs: net:_120_ net:_377_ net:_381_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 71.4, 42 ) - ( 73.5, 44.1) on Layer - +violation type: Horizontal congestion + srcs: net:_136_ net:_353_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 44.1 ) - ( 73.5, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_175_ net:_277_ net:_353_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 71.4, 46.2 ) - ( 73.5, 48.3) on Layer - + srcs: net:_175_ net:_186_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 48.3 ) - ( 73.5, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:_137_ net:_186_ net:_187_ net:_415_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_137_ net:_187_ net:_415_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 71.4, 50.4 ) - ( 73.5, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_398_ net:_413_ net:_417_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 71.4, 60.9 ) - ( 73.5, 63) on Layer - + srcs: net:_160_ net:_398_ net:_413_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 71.4, 63 ) - ( 73.5, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_159_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 67.2 ) - ( 73.5, 69.3) on Layer - + srcs: net:_110_ net:_249_ net:_253_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 71.4, 65.1 ) - ( 73.5, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_376_ + srcs: net:_159_ net:_351_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 71.4 ) - ( 73.5, 73.5) on Layer - + bbox = ( 71.4, 69.3 ) - ( 73.5, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_245_ net:_353_ + srcs: net:_249_ net:_353_ net:_376_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 71.4, 75.6 ) - ( 73.5, 77.7) on Layer - + bbox = ( 71.4, 71.4 ) - ( 73.5, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:_110_ net:_372_ + srcs: net:_165_ net:_391_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 81.9 ) - ( 73.5, 84) on Layer - + bbox = ( 71.4, 75.6 ) - ( 73.5, 77.7) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_249_ + srcs: net:_159_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 84 ) - ( 73.5, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_372_ + srcs: net:_160_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 90.3 ) - ( 73.5, 92.4) on Layer - +violation type: Horizontal congestion + srcs: net:_388_ net:net1 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 71.4, 94.5 ) - ( 73.5, 96.6) on Layer - +violation type: Horizontal congestion + srcs: net:clk net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 27.3 ) - ( 75.6, 29.4) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_388_ + srcs: net:_372_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 29.4 ) - ( 75.6, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_032_ net:_159_ + srcs: net:_165_ net:net41 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 35.7 ) - ( 75.6, 37.8) on Layer - + bbox = ( 73.5, 31.5 ) - ( 75.6, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_120_ net:_136_ + srcs: net:_032_ net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 42 ) - ( 75.6, 44.1) on Layer - + bbox = ( 73.5, 35.7 ) - ( 75.6, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_136_ net:_175_ net:_353_ + srcs: net:_010_ net:_120_ net:_377_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 73.5, 46.2 ) - ( 75.6, 48.3) on Layer - + bbox = ( 73.5, 42 ) - ( 75.6, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_121_ net:_175_ + srcs: net:_136_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 48.3 ) - ( 75.6, 50.4) on Layer - + bbox = ( 73.5, 44.1 ) - ( 75.6, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:_137_ net:_415_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_121_ net:_137_ net:_175_ net:_415_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 73.5, 50.4 ) - ( 75.6, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_121_ net:_253_ + srcs: net:_253_ net:_417_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 54.6 ) - ( 75.6, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_065_ net:_087_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_065_ net:_087_ net:_249_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 73.5, 56.7 ) - ( 75.6, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_382_ + srcs: net:_159_ net:_382_ net:_398_ net:_413_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 73.5, 63 ) - ( 75.6, 65.1) on Layer - +violation type: Horizontal congestion + srcs: net:_249_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 58.8 ) - ( 75.6, 60.9) on Layer - + bbox = ( 73.5, 65.1 ) - ( 75.6, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_398_ net:_413_ net:_417_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 73.5, 60.9 ) - ( 75.6, 63) on Layer - + srcs: net:_110_ net:_369_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 73.5, 67.2 ) - ( 75.6, 69.3) on Layer - violation type: Horizontal congestion srcs: net:_159_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 73.5, 69.3 ) - ( 75.6, 71.4) on Layer - +violation type: Horizontal congestion + srcs: net:_249_ net:_353_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 71.4 ) - ( 75.6, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_110_ net:_372_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 73.5, 81.9 ) - ( 75.6, 84) on Layer - + srcs: net:_165_ net:_391_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 73.5, 75.6 ) - ( 75.6, 77.7) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_249_ net:_376_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_159_ net:_372_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 84 ) - ( 75.6, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[2] net:_253_ + srcs: net:_376_ net:net20 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 94.5 ) - ( 75.6, 96.6) on Layer - + bbox = ( 73.5, 86.1 ) - ( 75.6, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_372_ + srcs: net:_110_ net:net16 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 27.3 ) - ( 77.7, 29.4) on Layer - + bbox = ( 73.5, 88.2 ) - ( 75.6, 90.3) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_388_ + srcs: net:_160_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 29.4 ) - ( 77.7, 31.5) on Layer - + bbox = ( 73.5, 90.3 ) - ( 75.6, 92.4) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_159_ + srcs: net:_388_ net:net1 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 35.7 ) - ( 77.7, 37.8) on Layer - + bbox = ( 73.5, 94.5 ) - ( 75.6, 96.6) on Layer - violation type: Horizontal congestion - srcs: net:_010_ net:dpath.a_lt_b$in0\[4\] + srcs: net:_372_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 39.9 ) - ( 77.7, 42) on Layer - + bbox = ( 75.6, 29.4 ) - ( 77.7, 31.5) on Layer - violation type: Horizontal congestion - srcs: net:_120_ net:_136_ + srcs: net:_165_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 42 ) - ( 77.7, 44.1) on Layer - + bbox = ( 75.6, 33.6 ) - ( 77.7, 35.7) on Layer - violation type: Horizontal congestion - srcs: net:_102_ net:_357_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 46.2 ) - ( 77.7, 48.3) on Layer - + srcs: net:_010_ net:_120_ net:_136_ net:_377_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 75.6, 42 ) - ( 77.7, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_353_ net:_415_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_121_ net:_353_ net:_415_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 75.6, 50.4 ) - ( 77.7, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_065_ net:_137_ net:_253_ + srcs: net:clk net:_011_ net:_137_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 75.6, 54.6 ) - ( 77.7, 56.7) on Layer - + bbox = ( 75.6, 52.5 ) - ( 77.7, 54.6) on Layer - violation type: Horizontal congestion - srcs: net:_382_ net:_398_ net:_417_ net:net49 + srcs: net:_065_ net:_165_ net:_249_ net:_417_ congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 75.6, 60.9 ) - ( 77.7, 63) on Layer - + bbox = ( 75.6, 56.7 ) - ( 77.7, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_253_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 65.1 ) - ( 77.7, 67.2) on Layer - + srcs: net:_159_ net:_382_ net:_398_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 75.6, 63 ) - ( 77.7, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_160_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 71.4 ) - ( 77.7, 73.5) on Layer - + srcs: net:clk net:_159_ net:_160_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 75.6, 69.3 ) - ( 77.7, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_391_ + srcs: net:_249_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 77.7 ) - ( 77.7, 79.8) on Layer - + bbox = ( 75.6, 71.4 ) - ( 77.7, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_372_ + srcs: net:_165_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 81.9 ) - ( 77.7, 84) on Layer - + bbox = ( 75.6, 73.5 ) - ( 77.7, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_249_ + srcs: net:_159_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 84 ) - ( 77.7, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:net20 net:net30 + srcs: net:_253_ net:net20 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 86.1 ) - ( 77.7, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[2] net:_253_ + srcs: net:net16 net:net30 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 94.5 ) - ( 77.7, 96.6) on Layer - + bbox = ( 75.6, 88.2 ) - ( 77.7, 90.3) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_372_ + srcs: net:_160_ net:net1 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 27.3 ) - ( 79.8, 29.4) on Layer - + bbox = ( 75.6, 90.3 ) - ( 77.7, 92.4) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_165_ + srcs: net:_372_ net:net41 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 39.9 ) - ( 79.8, 42) on Layer - + bbox = ( 77.7, 31.5 ) - ( 79.8, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_377_ net:_396_ + srcs: net:_159_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 44.1 ) - ( 79.8, 46.2) on Layer - + bbox = ( 77.7, 35.7 ) - ( 79.8, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_395_ + srcs: net:_120_ net:_377_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 48.3 ) - ( 79.8, 50.4) on Layer - + bbox = ( 77.7, 42 ) - ( 79.8, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_011_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 52.5 ) - ( 79.8, 54.6) on Layer - + srcs: net:_160_ net:_353_ net:_415_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 77.7, 50.4 ) - ( 79.8, 52.5) on Layer - violation type: Horizontal congestion srcs: net:_253_ net:dpath.a_lt_b$in1\[5\] congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 54.6 ) - ( 79.8, 56.7) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net49 + srcs: net:_165_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 58.8 ) - ( 79.8, 60.9) on Layer - + bbox = ( 77.7, 56.7 ) - ( 79.8, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_398_ net:net45 + srcs: net:_159_ net:_382_ net:_398_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 77.7, 63 ) - ( 79.8, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:clk net:_253_ + srcs: net:_253_ net:net45 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 65.1 ) - ( 79.8, 67.2) on Layer - violation type: Horizontal congestion srcs: net:_159_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 77.7, 69.3 ) - ( 79.8, 71.4) on Layer - +violation type: Horizontal congestion + srcs: net:_249_ net:_353_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 71.4 ) - ( 79.8, 73.5) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:_391_ + srcs: net:_165_ net:_245_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 77.7, 73.5 ) - ( 79.8, 75.6) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 77.7 ) - ( 79.8, 79.8) on Layer - + bbox = ( 77.7, 84 ) - ( 79.8, 86.1) on Layer - violation type: Horizontal congestion - srcs: net:net20 net:net30 + srcs: net:_253_ net:net20 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 86.1 ) - ( 79.8, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[2] net:_253_ + srcs: net:_372_ net:net41 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 94.5 ) - ( 79.8, 96.6) on Layer - + bbox = ( 79.8, 31.5 ) - ( 81.9, 33.6) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_372_ + srcs: net:_159_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 27.3 ) - ( 81.9, 29.4) on Layer - + bbox = ( 79.8, 35.7 ) - ( 81.9, 37.8) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_396_ + srcs: net:_120_ net:_377_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 42 ) - ( 81.9, 44.1) on Layer - violation type: Horizontal congestion - srcs: net:_253_ net:net47 + srcs: net:_120_ net:_415_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 46.2 ) - ( 81.9, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:_160_ net:_395_ + srcs: net:_353_ net:_415_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 48.3 ) - ( 81.9, 50.4) on Layer - + bbox = ( 79.8, 50.4 ) - ( 81.9, 52.5) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net49 + srcs: net:_165_ net:_249_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 79.8, 56.7 ) - ( 81.9, 58.8) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:net49 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 58.8 ) - ( 81.9, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_398_ net:net45 - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_382_ net:_398_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 63 ) - ( 81.9, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_160_ net:_253_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_253_ net:net45 + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 65.1 ) - ( 81.9, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:net32 + srcs: net:_159_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 67.2 ) - ( 81.9, 69.3) on Layer - + bbox = ( 79.8, 69.3 ) - ( 81.9, 71.4) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:net30 + srcs: net:_165_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 75.6 ) - ( 81.9, 77.7) on Layer - + bbox = ( 79.8, 73.5 ) - ( 81.9, 75.6) on Layer - violation type: Horizontal congestion - srcs: net:_249_ net:_372_ + srcs: net:_253_ net:net20 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 81.9, 27.3 ) - ( 84, 29.4) on Layer - + bbox = ( 79.8, 86.1 ) - ( 81.9, 88.2) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:net49 + srcs: net:_165_ net:net28 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 81.9, 50.4 ) - ( 84, 52.5) on Layer - +violation type: Horizontal congestion + srcs: net:_165_ net:_249_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 81.9, 56.7 ) - ( 84, 58.8) on Layer - +violation type: Horizontal congestion + srcs: net:_159_ net:net49 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 81.9, 58.8 ) - ( 84, 60.9) on Layer - violation type: Horizontal congestion @@ -2447,317 +2407,197 @@ violation type: Horizontal congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 81.9, 63 ) - ( 84, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:_160_ + srcs: net:_253_ net:net45 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 81.9, 65.1 ) - ( 84, 67.2) on Layer - violation type: Horizontal congestion - srcs: net:_165_ net:_245_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 81.9, 73.5 ) - ( 84, 75.6) on Layer - -violation type: Horizontal congestion - srcs: net:_159_ net:_160_ net:_398_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 84, 65.1 ) - ( 86.1, 67.2) on Layer - -violation type: Horizontal congestion - srcs: net:req_msg[5] net:net27 + srcs: net:net27 net:net40 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 14.7 ) - ( 88.2, 16.8) on Layer - + bbox = ( 84, 12.6 ) - ( 86.1, 14.7) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[24] net:net15 + srcs: net:_249_ net:net49 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 46.2 ) - ( 88.2, 48.3) on Layer - -violation type: Horizontal congestion - srcs: net:req_msg[4] net:_245_ net:net49 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 86.1, 54.6 ) - ( 88.2, 56.7) on Layer - + bbox = ( 84, 56.7 ) - ( 86.1, 58.8) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[21] net:_249_ + srcs: net:_159_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 63 ) - ( 88.2, 65.1) on Layer - + bbox = ( 84, 58.8 ) - ( 86.1, 60.9) on Layer - violation type: Horizontal congestion - srcs: net:_159_ net:net25 + srcs: net:_249_ net:_398_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 65.1 ) - ( 88.2, 67.2) on Layer - + bbox = ( 84, 63 ) - ( 86.1, 65.1) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[24] net:_245_ + srcs: net:_249_ net:net15 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 88.2, 46.2 ) - ( 90.3, 48.3) on Layer - + bbox = ( 86.1, 44.1 ) - ( 88.2, 46.2) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[4] net:net49 + srcs: net:_385_ net:net8 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 88.2, 54.6 ) - ( 90.3, 56.7) on Layer - + bbox = ( 86.1, 48.3 ) - ( 88.2, 50.4) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[0] net:_245_ + srcs: net:_165_ net:net11 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 88.2, 69.3 ) - ( 90.3, 71.4) on Layer - + bbox = ( 86.1, 60.9 ) - ( 88.2, 63) on Layer - violation type: Horizontal congestion - srcs: net:_245_ net:net49 + srcs: net:_245_ net:net32 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 44.1 ) - ( 92.4, 46.2) on Layer - + bbox = ( 86.1, 67.2 ) - ( 88.2, 69.3) on Layer - violation type: Horizontal congestion srcs: net:req_msg[24] net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 46.2 ) - ( 92.4, 48.3) on Layer - + bbox = ( 88.2, 46.2 ) - ( 90.3, 48.3) on Layer - violation type: Horizontal congestion - srcs: net:req_msg[4] net:_388_ + srcs: net:req_msg[4] net:_372_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 90.3, 54.6 ) - ( 92.4, 56.7) on Layer - -violation type: Horizontal congestion - srcs: net:req_msg[0] net:_245_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 69.3 ) - ( 92.4, 71.4) on Layer - -violation type: Horizontal congestion - srcs: net:_372_ net:_385_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 92.4, 52.5 ) - ( 94.5, 54.6) on Layer - -violation type: Vertical congestion - srcs: net:net36 net:net37 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 8.4, 10.5 ) - ( 10.5, 12.6) on Layer - -violation type: Vertical congestion - srcs: net:net43 net:net46 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 8.4, 21 ) - ( 10.5, 23.1) on Layer - -violation type: Vertical congestion - srcs: net:_150_ net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 8.4, 33.6 ) - ( 10.5, 35.7) on Layer - -violation type: Vertical congestion - srcs: net:_150_ net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 8.4, 35.7 ) - ( 10.5, 37.8) on Layer - -violation type: Vertical congestion - srcs: net:_150_ net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 8.4, 37.8 ) - ( 10.5, 39.9) on Layer - -violation type: Vertical congestion - srcs: net:_397_ net:net26 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 10.5, 29.4 ) - ( 12.6, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net12 + srcs: net:_380_ net:_421_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 12.6, 14.7 ) - ( 14.7, 16.8) on Layer - + bbox = ( 6.3, 42 ) - ( 8.4, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net12 + srcs: net:req_rdy net:net37 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 12.6, 16.8 ) - ( 14.7, 18.9) on Layer - + bbox = ( 8.4, 8.4 ) - ( 10.5, 10.5) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:net12 + srcs: net:_380_ net:net4 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 12.6, 33.6 ) - ( 14.7, 35.7) on Layer - + bbox = ( 10.5, 14.7 ) - ( 12.6, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:net42 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 12.6, 39.9 ) - ( 14.7, 42) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:net42 + srcs: net:_370_ net:_375_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 12.6, 42 ) - ( 14.7, 44.1) on Layer - violation type: Vertical congestion - srcs: net:req_msg[20] net:net48 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 14.7, 6.3 ) - ( 16.8, 8.4) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[20] net:net48 + srcs: net:_370_ net:net12 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 14.7, 8.4 ) - ( 16.8, 10.5) on Layer - + bbox = ( 14.7, 29.4 ) - ( 16.8, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_392_ + srcs: net:_370_ net:net12 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 14.7, 31.5 ) - ( 16.8, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_392_ + srcs: net:_370_ net:net12 net:net43 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 14.7, 33.6 ) - ( 16.8, 35.7) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net43 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 14.7, 35.7 ) - ( 16.8, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_392_ + srcs: net:_370_ net:net43 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 14.7, 37.8 ) - ( 16.8, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_392_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 14.7, 39.9 ) - ( 16.8, 42) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_392_ + srcs: net:_142_ net:net43 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 14.7, 42 ) - ( 16.8, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_392_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 14.7, 44.1 ) - ( 16.8, 46.2) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_392_ + srcs: net:_142_ net:_370_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 14.7, 46.2 ) - ( 16.8, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_392_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 14.7, 48.3 ) - ( 16.8, 50.4) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_392_ + srcs: net:_248_ net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 14.7, 50.4 ) - ( 16.8, 52.5) on Layer - + bbox = ( 16.8, 31.5 ) - ( 18.9, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_392_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 14.7, 56.7 ) - ( 16.8, 58.8) on Layer - -violation type: Vertical congestion - srcs: net:_381_ net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 16.8, 14.7 ) - ( 18.9, 16.8) on Layer - -violation type: Vertical congestion - srcs: net:_381_ net:net43 + srcs: net:_248_ net:_381_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 16.8, 16.8 ) - ( 18.9, 18.9) on Layer - + bbox = ( 16.8, 33.6 ) - ( 18.9, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_370_ + srcs: net:_142_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 16.8, 46.2 ) - ( 18.9, 48.3) on Layer - + bbox = ( 16.8, 37.8 ) - ( 18.9, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_370_ + srcs: net:_142_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 16.8, 48.3 ) - ( 18.9, 50.4) on Layer - + bbox = ( 16.8, 39.9 ) - ( 18.9, 42) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_370_ + srcs: net:_142_ net:net24 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 16.8, 50.4 ) - ( 18.9, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_370_ + srcs: net:_142_ net:net24 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 16.8, 52.5 ) - ( 18.9, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_370_ + srcs: net:_142_ net:net24 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 16.8, 54.6 ) - ( 18.9, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_381_ net:_397_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 18.9, 6.3 ) - ( 21, 8.4) on Layer - -violation type: Vertical congestion - srcs: net:_381_ net:_397_ + srcs: net:_248_ net:_381_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 18.9, 8.4 ) - ( 21, 10.5) on Layer - + bbox = ( 18.9, 27.3 ) - ( 21, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_381_ net:_397_ + srcs: net:_248_ net:_381_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 18.9, 10.5 ) - ( 21, 12.6) on Layer - + bbox = ( 18.9, 29.4 ) - ( 21, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_397_ net:_401_ + srcs: net:clk net:_142_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 18.9, 18.9 ) - ( 21, 21) on Layer - + bbox = ( 18.9, 35.7 ) - ( 21, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_375_ + srcs: net:clk net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 18.9, 42 ) - ( 21, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_370_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 18.9, 56.7 ) - ( 21, 58.8) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_370_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 18.9, 58.8 ) - ( 21, 60.9) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_370_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 18.9, 60.9 ) - ( 21, 63) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_244_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 23.1 ) - ( 23.1, 25.2) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_244_ + srcs: net:clk net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 25.2 ) - ( 23.1, 27.3) on Layer - + bbox = ( 18.9, 48.3 ) - ( 21, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_244_ + srcs: net:clk net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 27.3 ) - ( 23.1, 29.4) on Layer - + bbox = ( 18.9, 50.4 ) - ( 21, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_244_ + srcs: net:clk net:_158_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 21, 29.4 ) - ( 23.1, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_370_ net:net24 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 63 ) - ( 23.1, 65.1) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net24 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 65.1 ) - ( 23.1, 67.2) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net24 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 67.2 ) - ( 23.1, 69.3) on Layer - -violation type: Vertical congestion - srcs: net:_370_ net:net51 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 21, 69.3 ) - ( 23.1, 71.4) on Layer - -violation type: Vertical congestion - srcs: net:_244_ net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 10.5 ) - ( 25.2, 12.6) on Layer - -violation type: Vertical congestion - srcs: net:_244_ net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 12.6 ) - ( 25.2, 14.7) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_401_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 16.8 ) - ( 25.2, 18.9) on Layer - -violation type: Vertical congestion - srcs: net:_158_ net:_248_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 21 ) - ( 25.2, 23.1) on Layer - -violation type: Vertical congestion - srcs: net:_244_ net:_405_ + srcs: net:clk net:_158_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 35.7 ) - ( 25.2, 37.8) on Layer - + bbox = ( 21, 31.5 ) - ( 23.1, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:net42 - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_140_ net:_158_ net:net42 + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 23.1, 37.8 ) - ( 25.2, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_401_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_140_ net:_158_ net:_401_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 23.1, 39.9 ) - ( 25.2, 42) on Layer - violation type: Vertical congestion - srcs: net:_375_ net:_401_ + srcs: net:_140_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 44.1 ) - ( 25.2, 46.2) on Layer - + bbox = ( 23.1, 42 ) - ( 25.2, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_401_ + srcs: net:_140_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 46.2 ) - ( 25.2, 48.3) on Layer - + bbox = ( 23.1, 44.1 ) - ( 25.2, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:net36 + srcs: net:_140_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 48.3 ) - ( 25.2, 50.4) on Layer - + bbox = ( 23.1, 46.2 ) - ( 25.2, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_353_ + srcs: net:clk net:_142_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 60.9 ) - ( 25.2, 63) on Layer - + bbox = ( 23.1, 56.7 ) - ( 25.2, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_353_ + srcs: net:_142_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 63 ) - ( 25.2, 65.1) on Layer - + bbox = ( 25.2, 18.9 ) - ( 27.3, 21) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_353_ + srcs: net:_142_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 23.1, 65.1 ) - ( 25.2, 67.2) on Layer - + bbox = ( 25.2, 21 ) - ( 27.3, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_401_ + srcs: net:_142_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 12.6 ) - ( 27.3, 14.7) on Layer - + bbox = ( 25.2, 23.1 ) - ( 27.3, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_401_ + srcs: net:_142_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 14.7 ) - ( 27.3, 16.8) on Layer - + bbox = ( 25.2, 25.2 ) - ( 27.3, 27.3) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ + srcs: net:_142_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 18.9 ) - ( 27.3, 21) on Layer - + bbox = ( 25.2, 27.3 ) - ( 27.3, 29.4) on Layer - violation type: Vertical congestion srcs: net:_142_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 @@ -2771,97 +2611,57 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 25.2, 33.6 ) - ( 27.3, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_401_ + srcs: net:_140_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 25.2, 35.7 ) - ( 27.3, 37.8) on Layer - violation type: Vertical congestion - srcs: net:clk net:_401_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 37.8 ) - ( 27.3, 39.9) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_107_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 39.9 ) - ( 27.3, 42) on Layer - -violation type: Vertical congestion - srcs: net:clk net:net43 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 42 ) - ( 27.3, 44.1) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_036_ + srcs: net:_036_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 25.2, 46.2 ) - ( 27.3, 48.3) on Layer - violation type: Vertical congestion - srcs: net:clk net:_401_ + srcs: net:_353_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 25.2, 48.3 ) - ( 27.3, 50.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:_158_ + srcs: net:_353_ net:net36 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 52.5 ) - ( 27.3, 54.6) on Layer - + bbox = ( 25.2, 50.4 ) - ( 27.3, 52.5) on Layer - violation type: Vertical congestion - srcs: net:clk net:net44 + srcs: net:clk net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 25.2, 56.7 ) - ( 27.3, 58.8) on Layer - + bbox = ( 25.2, 52.5 ) - ( 27.3, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_401_ + srcs: net:_142_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 8.4 ) - ( 29.4, 10.5) on Layer - + bbox = ( 25.2, 56.7 ) - ( 27.3, 58.8) on Layer - violation type: Vertical congestion srcs: net:clk net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 10.5 ) - ( 29.4, 12.6) on Layer - + bbox = ( 27.3, 14.7 ) - ( 29.4, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_252_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 21 ) - ( 29.4, 23.1) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_252_ + srcs: net:clk net:_142_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 23.1 ) - ( 29.4, 25.2) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_252_ net:_421_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 27.3, 25.2 ) - ( 29.4, 27.3) on Layer - + bbox = ( 27.3, 16.8 ) - ( 29.4, 18.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_142_ net:_252_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 27.3, 27.3 ) - ( 29.4, 29.4) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_252_ + srcs: net:clk net:_037_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 29.4 ) - ( 29.4, 31.5) on Layer - + bbox = ( 27.3, 33.6 ) - ( 29.4, 35.7) on Layer - violation type: Vertical congestion - srcs: net:clk net:_150_ + srcs: net:_142_ net:_405_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 31.5 ) - ( 29.4, 33.6) on Layer - + bbox = ( 27.3, 35.7 ) - ( 29.4, 37.8) on Layer - violation type: Vertical congestion - srcs: net:clk net:_037_ + srcs: net:_125_ net:_400_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 33.6 ) - ( 29.4, 35.7) on Layer - -violation type: Vertical congestion - srcs: net:_125_ net:_362_ net:_400_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 27.3, 37.8 ) - ( 29.4, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_053_ net:_362_ net:dpath.a_lt_b$in1\[9\] - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_053_ net:dpath.a_lt_b$in1\[9\] + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 27.3, 39.9 ) - ( 29.4, 42) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_353_ + srcs: net:_387_ net:_392_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 27.3, 42 ) - ( 29.4, 44.1) on Layer - -violation type: Vertical congestion - srcs: net:_090_ net:_124_ net:_353_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 27.3, 46.2 ) - ( 29.4, 48.3) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_386_ net:_403_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 27.3, 54.6 ) - ( 29.4, 56.7) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_142_ net:net7 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 27.3, 56.7 ) - ( 29.4, 58.8) on Layer - + bbox = ( 29.4, 23.1 ) - ( 31.5, 25.2) on Layer - violation type: Vertical congestion srcs: net:_091_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 @@ -2871,141 +2671,165 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 35.7 ) - ( 31.5, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_106_ net:_361_ net:_386_ + srcs: net:_142_ net:_307_ net:_362_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 29.4, 48.3 ) - ( 31.5, 50.4) on Layer - + bbox = ( 29.4, 37.8 ) - ( 31.5, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_385_ net:_386_ + srcs: net:_141_ net:_362_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 50.4 ) - ( 31.5, 52.5) on Layer - + bbox = ( 29.4, 39.9 ) - ( 31.5, 42) on Layer - violation type: Vertical congestion - srcs: net:_000_ net:_158_ net:_385_ net:_386_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 29.4, 52.5 ) - ( 31.5, 54.6) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_385_ net:net44 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 29.4, 54.6 ) - ( 31.5, 56.7) on Layer - + srcs: net:_353_ net:_386_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 29.4, 42 ) - ( 31.5, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_385_ net:ctrl.state.out\[1\] + srcs: net:_124_ net:_386_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 56.7 ) - ( 31.5, 58.8) on Layer - + bbox = ( 29.4, 44.1 ) - ( 31.5, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_155_ net:_162_ net:_385_ net:_421_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 29.4, 58.8 ) - ( 31.5, 60.9) on Layer - + srcs: net:_124_ net:_248_ net:_386_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 29.4, 46.2 ) - ( 31.5, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_162_ net:_385_ + srcs: net:_106_ net:_124_ net:_386_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 29.4, 48.3 ) - ( 31.5, 50.4) on Layer - +violation type: Vertical congestion + srcs: net:_000_ net:_386_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 60.9 ) - ( 31.5, 63) on Layer - + bbox = ( 29.4, 52.5 ) - ( 31.5, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_385_ net:net35 + srcs: net:_142_ net:_386_ net:_403_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 29.4, 54.6 ) - ( 31.5, 56.7) on Layer - +violation type: Vertical congestion + srcs: net:_370_ net:net52 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 29.4, 65.1 ) - ( 31.5, 67.2) on Layer - + bbox = ( 29.4, 73.5 ) - ( 31.5, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:net35 + srcs: net:_370_ net:net52 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 29.4, 75.6 ) - ( 31.5, 77.7) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_244_ + srcs: net:_142_ net:net53 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 23.1 ) - ( 33.6, 25.2) on Layer - + bbox = ( 31.5, 12.6 ) - ( 33.6, 14.7) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_308_ + srcs: net:_142_ net:net53 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 27.3 ) - ( 33.6, 29.4) on Layer - + bbox = ( 31.5, 14.7 ) - ( 33.6, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_070_ net:_314_ + srcs: net:_374_ net:net53 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 29.4 ) - ( 33.6, 31.5) on Layer - + bbox = ( 31.5, 16.8 ) - ( 33.6, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_252_ + srcs: net:_389_ net:net53 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 31.5 ) - ( 33.6, 33.6) on Layer - + bbox = ( 31.5, 21 ) - ( 33.6, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_125_ net:_141_ net:_142_ net:_307_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 31.5, 37.8 ) - ( 33.6, 39.9) on Layer - + srcs: net:_244_ net:_314_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 31.5, 29.4 ) - ( 33.6, 31.5) on Layer - violation type: Vertical congestion srcs: net:_142_ net:_307_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 39.9 ) - ( 33.6, 42) on Layer - violation type: Vertical congestion - srcs: net:_158_ net:_244_ net:_301_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_158_ net:_301_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 42 ) - ( 33.6, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_124_ net:_158_ + srcs: net:_090_ net:_158_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 44.1 ) - ( 33.6, 46.2) on Layer - + bbox = ( 31.5, 46.2 ) - ( 33.6, 48.3) on Layer - violation type: Vertical congestion - srcs: net:clk net:_052_ net:_158_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:clk net:_052_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 48.3 ) - ( 33.6, 50.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:_059_ net:_158_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 31.5, 50.4 ) - ( 33.6, 52.5) on Layer - + srcs: net:clk net:net44 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 31.5, 52.5 ) - ( 33.6, 54.6) on Layer - +violation type: Vertical congestion + srcs: net:_108_ net:net44 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 31.5, 54.6 ) - ( 33.6, 56.7) on Layer - violation type: Vertical congestion srcs: net:_163_ net:_403_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 31.5, 56.7 ) - ( 33.6, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_385_ + srcs: net:_155_ net:_162_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 71.4 ) - ( 33.6, 73.5) on Layer - + bbox = ( 31.5, 58.8 ) - ( 33.6, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_385_ + srcs: net:_353_ net:_420_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 31.5, 73.5 ) - ( 33.6, 75.6) on Layer - + bbox = ( 31.5, 63 ) - ( 33.6, 65.1) on Layer - violation type: Vertical congestion - srcs: net:net43 net:net53 + srcs: net:_353_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 6.3 ) - ( 35.7, 8.4) on Layer - + bbox = ( 31.5, 67.2 ) - ( 33.6, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:net53 + srcs: net:_353_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 10.5 ) - ( 35.7, 12.6) on Layer - + bbox = ( 31.5, 69.3 ) - ( 33.6, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_027_ net:net53 + srcs: net:_353_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 16.8 ) - ( 35.7, 18.9) on Layer - + bbox = ( 31.5, 71.4 ) - ( 33.6, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_081_ net:_115_ net:net53 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 33.6, 18.9 ) - ( 35.7, 21) on Layer - + srcs: net:_353_ net:_385_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 31.5, 73.5 ) - ( 33.6, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_342_ net:net53 + srcs: net:_353_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 21 ) - ( 35.7, 23.1) on Layer - + bbox = ( 31.5, 75.6 ) - ( 33.6, 77.7) on Layer - violation type: Vertical congestion - srcs: net:_020_ net:_043_ net:_343_ net:net53 - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 33.6, 23.1 ) - ( 35.7, 25.2) on Layer - + srcs: net:_353_ net:_385_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 31.5, 77.7 ) - ( 33.6, 79.8) on Layer - violation type: Vertical congestion - srcs: net:_421_ net:net53 + srcs: net:_244_ net:net53 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 25.2 ) - ( 35.7, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_405_ + srcs: net:_070_ net:_313_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 33.6 ) - ( 35.7, 35.7) on Layer - + bbox = ( 33.6, 29.4 ) - ( 35.7, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_306_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_140_ net:_141_ net:_244_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 33.6, 35.7 ) - ( 35.7, 37.8) on Layer - +violation type: Vertical congestion + srcs: net:_140_ net:_141_ net:_244_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 33.6, 37.8 ) - ( 35.7, 39.9) on Layer - +violation type: Vertical congestion + srcs: net:_140_ net:_203_ net:_244_ net:_306_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 33.6, 39.9 ) - ( 35.7, 42) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_216_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_140_ net:_216_ net:_244_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 42 ) - ( 35.7, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_140_ net:_385_ + srcs: net:_124_ net:_140_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 46.2 ) - ( 35.7, 48.3) on Layer - + bbox = ( 33.6, 44.1 ) - ( 35.7, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_014_ net:_385_ + srcs: net:_014_ net:_158_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 48.3 ) - ( 35.7, 50.4) on Layer - +violation type: Vertical congestion + srcs: net:_059_ net:_158_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 33.6, 50.4 ) - ( 35.7, 52.5) on Layer - +violation type: Vertical congestion + srcs: net:_059_ net:_158_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 33.6, 52.5 ) - ( 35.7, 54.6) on Layer - violation type: Vertical congestion srcs: net:_054_ net:_059_ net:_421_ congestion information: capacity:1 usage:3 overflow:2 @@ -3015,125 +2839,137 @@ violation type: Vertical congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 56.7 ) - ( 35.7, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_154_ net:_402_ net:_420_ + srcs: net:_154_ net:_420_ net:_421_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 33.6, 58.8 ) - ( 35.7, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_162_ net:_420_ + srcs: net:_385_ net:_420_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 60.9 ) - ( 35.7, 63) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_353_ + srcs: net:_353_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 65.1 ) - ( 35.7, 67.2) on Layer - + bbox = ( 33.6, 63 ) - ( 35.7, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_353_ + srcs: net:_160_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 33.6, 67.2 ) - ( 35.7, 69.3) on Layer - + bbox = ( 33.6, 65.1 ) - ( 35.7, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_353_ + srcs: net:_160_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 33.6, 69.3 ) - ( 35.7, 71.4) on Layer - violation type: Vertical congestion - srcs: net:req_msg[1] net:net37 + srcs: net:_160_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 6.3 ) - ( 37.8, 8.4) on Layer - + bbox = ( 33.6, 71.4 ) - ( 35.7, 73.5) on Layer - violation type: Vertical congestion - srcs: net:req_msg[1] net:_401_ net:net37 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 35.7, 8.4 ) - ( 37.8, 10.5) on Layer - + srcs: net:_160_ net:net14 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 33.6, 75.6 ) - ( 35.7, 77.7) on Layer - violation type: Vertical congestion - srcs: net:_401_ net:net37 + srcs: net:_160_ net:net14 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 10.5 ) - ( 37.8, 12.6) on Layer - + bbox = ( 33.6, 77.7 ) - ( 35.7, 79.8) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_401_ + srcs: net:_380_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 12.6 ) - ( 37.8, 14.7) on Layer - + bbox = ( 35.7, 10.5 ) - ( 37.8, 12.6) on Layer - +violation type: Vertical congestion + srcs: net:_081_ net:_367_ net:_401_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 35.7, 18.9 ) - ( 37.8, 21) on Layer - +violation type: Vertical congestion + srcs: net:_342_ net:_367_ net:_401_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 35.7, 21 ) - ( 37.8, 23.1) on Layer - +violation type: Vertical congestion + srcs: net:_020_ net:_343_ net:_401_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 35.7, 23.1 ) - ( 37.8, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_016_ net:_039_ + srcs: net:clk net:_401_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 35.7, 25.2 ) - ( 37.8, 27.3) on Layer - +violation type: Vertical congestion + srcs: net:_016_ net:_039_ net:_252_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 29.4 ) - ( 37.8, 31.5) on Layer - violation type: Vertical congestion srcs: net:_200_ net:_312_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 33.6 ) - ( 37.8, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_141_ net:_311_ + srcs: net:_302_ net:_311_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 35.7 ) - ( 37.8, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_141_ net:_218_ net:_309_ net:_310_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_218_ net:_309_ net:_310_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 37.8 ) - ( 37.8, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_203_ net:_217_ net:_304_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_217_ net:_304_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 39.9 ) - ( 37.8, 42) on Layer - violation type: Vertical congestion srcs: net:_303_ net:_304_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 42 ) - ( 37.8, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_375_ + srcs: net:_244_ net:_294_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 44.1 ) - ( 37.8, 46.2) on Layer - -violation type: Vertical congestion - srcs: net:_140_ net:_244_ net:_248_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 46.2 ) - ( 37.8, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_068_ net:_248_ net:_253_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_068_ net:_248_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 48.3 ) - ( 37.8, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:net44 + srcs: net:clk net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 52.5 ) - ( 37.8, 54.6) on Layer - + bbox = ( 35.7, 54.6 ) - ( 37.8, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_153_ net:_160_ net:_253_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_153_ net:_385_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 56.7 ) - ( 37.8, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_151_ net:_160_ net:_253_ + srcs: net:_151_ net:_385_ net:_402_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 58.8 ) - ( 37.8, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_253_ net:_402_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_160_ net:_402_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 35.7, 60.9 ) - ( 37.8, 63) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_160_ net:_253_ + srcs: net:_160_ net:_253_ net:_402_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 35.7, 63 ) - ( 37.8, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_253_ + srcs: net:_159_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 65.1 ) - ( 37.8, 67.2) on Layer - + bbox = ( 35.7, 67.2 ) - ( 37.8, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_385_ net:net14 + srcs: net:_159_ net:_378_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 35.7, 75.6 ) - ( 37.8, 77.7) on Layer - + bbox = ( 35.7, 69.3 ) - ( 37.8, 71.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:_401_ + srcs: net:_159_ net:net14 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 8.4 ) - ( 39.9, 10.5) on Layer - + bbox = ( 35.7, 71.4 ) - ( 37.8, 73.5) on Layer - violation type: Vertical congestion - srcs: net:clk net:_252_ + srcs: net:_159_ net:net14 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 14.7 ) - ( 39.9, 16.8) on Layer - + bbox = ( 35.7, 73.5 ) - ( 37.8, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:dpath.a_lt_b$in0\[14\] - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 16.8 ) - ( 39.9, 18.9) on Layer - + srcs: net:_043_ net:_131_ net:_252_ net:_352_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 37.8, 23.1 ) - ( 39.9, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_367_ + srcs: net:_131_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 18.9 ) - ( 39.9, 21) on Layer - + bbox = ( 37.8, 25.2 ) - ( 39.9, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_097_ net:_367_ + srcs: net:_252_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 21 ) - ( 39.9, 23.1) on Layer - + bbox = ( 37.8, 27.3 ) - ( 39.9, 29.4) on Layer - violation type: Vertical congestion srcs: net:_093_ net:dpath.a_lt_b$in1\[10\] congestion information: capacity:1 usage:2 overflow:1 @@ -3143,13 +2979,9 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 31.5 ) - ( 39.9, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_127_ net:_148_ net:_252_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 37.8, 33.6 ) - ( 39.9, 35.7) on Layer - -violation type: Vertical congestion - srcs: net:_252_ net:_302_ + srcs: net:_127_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 35.7 ) - ( 39.9, 37.8) on Layer - + bbox = ( 37.8, 33.6 ) - ( 39.9, 35.7) on Layer - violation type: Vertical congestion srcs: net:_219_ net:_252_ net:_302_ congestion information: capacity:1 usage:3 overflow:2 @@ -3163,124 +2995,140 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 42 ) - ( 39.9, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_204_ net:_298_ + srcs: net:_253_ net:_418_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 44.1 ) - ( 39.9, 46.2) on Layer - -violation type: Vertical congestion - srcs: net:_298_ net:_418_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 46.2 ) - ( 39.9, 48.3) on Layer - + bbox = ( 37.8, 48.3 ) - ( 39.9, 50.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:_058_ + srcs: net:_253_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 54.6 ) - ( 39.9, 56.7) on Layer - + bbox = ( 37.8, 50.4 ) - ( 39.9, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_152_ net:_157_ net:_161_ + srcs: net:_059_ net:_142_ net:_253_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 37.8, 52.5 ) - ( 39.9, 54.6) on Layer - +violation type: Vertical congestion + srcs: net:_002_ net:_150_ net:_160_ net:_253_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 37.8, 56.7 ) - ( 39.9, 58.8) on Layer - +violation type: Vertical congestion + srcs: net:_152_ net:_157_ net:_160_ net:_161_ net:_253_ + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 37.8, 58.8 ) - ( 39.9, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_378_ net:net33 + srcs: net:_253_ net:_402_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 37.8, 60.9 ) - ( 39.9, 63) on Layer - +violation type: Vertical congestion + srcs: net:net33 net:net50 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 37.8, 65.1 ) - ( 39.9, 67.2) on Layer - +violation type: Vertical congestion + srcs: net:net33 net:net50 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 37.8, 67.2 ) - ( 39.9, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_378_ net:net33 + srcs: net:_253_ net:net33 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 69.3 ) - ( 39.9, 71.4) on Layer - + bbox = ( 37.8, 73.5 ) - ( 39.9, 75.6) on Layer - violation type: Vertical congestion srcs: net:_253_ net:net33 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 37.8, 71.4 ) - ( 39.9, 73.5) on Layer - + bbox = ( 37.8, 75.6 ) - ( 39.9, 77.7) on Layer - +violation type: Vertical congestion + srcs: net:_401_ net:net37 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 39.9, 8.4 ) - ( 42, 10.5) on Layer - violation type: Vertical congestion - srcs: net:_380_ net:net31 + srcs: net:net31 net:net37 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 10.5 ) - ( 42, 12.6) on Layer - violation type: Vertical congestion - srcs: net:_352_ net:_410_ + srcs: net:_142_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 23.1 ) - ( 42, 25.2) on Layer - + bbox = ( 39.9, 12.6 ) - ( 42, 14.7) on Layer - violation type: Vertical congestion - srcs: net:_115_ net:_352_ + srcs: net:_142_ net:_390_ net:_409_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 39.9, 14.7 ) - ( 42, 16.8) on Layer - +violation type: Vertical congestion + srcs: net:_142_ net:_252_ net:_390_ net:_409_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 39.9, 16.8 ) - ( 42, 18.9) on Layer - +violation type: Vertical congestion + srcs: net:_115_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 25.2 ) - ( 42, 27.3) on Layer - + bbox = ( 39.9, 18.9 ) - ( 42, 21) on Layer - violation type: Vertical congestion - srcs: net:_227_ net:_352_ + srcs: net:_097_ net:_115_ net:_158_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 39.9, 21 ) - ( 42, 23.1) on Layer - +violation type: Vertical congestion + srcs: net:_115_ net:_158_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 27.3 ) - ( 42, 29.4) on Layer - + bbox = ( 39.9, 23.1 ) - ( 42, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_352_ net:_401_ + srcs: net:_115_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 29.4 ) - ( 42, 31.5) on Layer - + bbox = ( 39.9, 25.2 ) - ( 42, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_111_ net:_127_ net:_149_ + srcs: net:_352_ net:_370_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 39.9, 29.4 ) - ( 42, 31.5) on Layer - +violation type: Vertical congestion + srcs: net:_111_ net:_127_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 31.5 ) - ( 42, 33.6) on Layer - +violation type: Vertical congestion + srcs: net:_148_ net:_200_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 39.9, 33.6 ) - ( 42, 35.7) on Layer - violation type: Vertical congestion srcs: net:_200_ net:_202_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 35.7 ) - ( 42, 37.8) on Layer - +violation type: Vertical congestion + srcs: net:_202_ net:_220_ net:_311_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 39.9, 37.8 ) - ( 42, 39.9) on Layer - violation type: Vertical congestion srcs: net:_202_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 39.9 ) - ( 42, 42) on Layer - violation type: Vertical congestion - srcs: net:_204_ net:_252_ net:_375_ net:net43 - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 39.9, 42 ) - ( 42, 44.1) on Layer - -violation type: Vertical congestion - srcs: net:_253_ net:_294_ net:_385_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_253_ net:_298_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 46.2 ) - ( 42, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_158_ + srcs: net:_142_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 39.9, 48.3 ) - ( 42, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_109_ net:_158_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 52.5 ) - ( 42, 54.6) on Layer - -violation type: Vertical congestion - srcs: net:_058_ net:ctrl.state.out\[2\] + srcs: net:_109_ net:_142_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 54.6 ) - ( 42, 56.7) on Layer - + bbox = ( 39.9, 50.4 ) - ( 42, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_058_ net:_153_ net:_380_ + srcs: net:_058_ net:_150_ net:_153_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 39.9, 56.7 ) - ( 42, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_380_ + srcs: net:clk net:_412_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 58.8 ) - ( 42, 60.9) on Layer - + bbox = ( 39.9, 63 ) - ( 42, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_150_ net:_380_ + srcs: net:_409_ net:net3 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 60.9 ) - ( 42, 63) on Layer - -violation type: Vertical congestion - srcs: net:_384_ net:net50 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 65.1 ) - ( 42, 67.2) on Layer - + bbox = ( 42, 10.5 ) - ( 44.1, 12.6) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_384_ + srcs: net:_410_ net:net3 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 73.5 ) - ( 42, 75.6) on Layer - + bbox = ( 42, 12.6 ) - ( 44.1, 14.7) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_384_ + srcs: net:_142_ net:_158_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 39.9, 75.6 ) - ( 42, 77.7) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_390_ net:_409_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 42, 14.7 ) - ( 44.1, 16.8) on Layer - -violation type: Vertical congestion - srcs: net:_336_ net:_389_ net:_390_ net:_409_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 42, 16.8 ) - ( 44.1, 18.9) on Layer - -violation type: Vertical congestion - srcs: net:_142_ net:_158_ net:_389_ net:_409_ - congestion information: capacity:1 usage:4 overflow:3 bbox = ( 42, 18.9 ) - ( 44.1, 21) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_337_ net:_338_ net:_339_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_244_ net:_389_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 21 ) - ( 44.1, 23.1) on Layer - violation type: Vertical congestion srcs: net:_338_ net:_341_ @@ -3291,107 +3139,115 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 25.2 ) - ( 44.1, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_131_ net:_327_ net:_345_ + srcs: net:_131_ net:_227_ net:_345_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 27.3 ) - ( 44.1, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_227_ net:_228_ net:_327_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 42, 29.4 ) - ( 44.1, 31.5) on Layer - -violation type: Vertical congestion - srcs: net:_223_ net:_228_ net:_327_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_149_ net:_228_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 31.5 ) - ( 44.1, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_228_ net:_317_ net:_318_ net:_327_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_150_ net:_228_ net:_317_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 33.6 ) - ( 44.1, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_228_ net:_317_ net:_327_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_150_ net:_201_ net:_228_ net:_317_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 42, 35.7 ) - ( 44.1, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_220_ net:_228_ net:_311_ net:_327_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_150_ net:_228_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 37.8 ) - ( 44.1, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_228_ net:_419_ net:net43 + srcs: net:_150_ net:_228_ net:net43 congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 39.9 ) - ( 44.1, 42) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_150_ net:_228_ net:_252_ net:_375_ net:net43 + congestion information: capacity:1 usage:5 overflow:4 + bbox = ( 42, 42 ) - ( 44.1, 44.1) on Layer - +violation type: Vertical congestion + srcs: net:_150_ net:_244_ net:_252_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 42, 44.1 ) - ( 44.1, 46.2) on Layer - +violation type: Vertical congestion + srcs: net:_150_ net:_244_ net:_352_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 46.2 ) - ( 44.1, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_059_ net:_243_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_059_ net:_150_ net:_158_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 48.3 ) - ( 44.1, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_059_ net:_109_ net:_142_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_059_ net:_150_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 50.4 ) - ( 44.1, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_059_ net:_109_ + srcs: net:_150_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 42, 52.5 ) - ( 44.1, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_159_ net:_160_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_117_ net:_150_ net:_159_ net:_160_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 42, 54.6 ) - ( 44.1, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_384_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_380_ net:_384_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 56.7 ) - ( 44.1, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_384_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_353_ net:_380_ net:_384_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 42, 58.8 ) - ( 44.1, 60.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_159_ net:_384_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_159_ net:_353_ net:_380_ net:_384_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 42, 60.9 ) - ( 44.1, 63) on Layer - violation type: Vertical congestion - srcs: net:clk net:_029_ + srcs: net:_159_ net:_384_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 42, 63 ) - ( 44.1, 65.1) on Layer - +violation type: Vertical congestion + srcs: net:_029_ net:_159_ net:_384_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 42, 65.1 ) - ( 44.1, 67.2) on Layer - violation type: Vertical congestion - srcs: net:clk net:_159_ + srcs: net:_026_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 67.2 ) - ( 44.1, 69.3) on Layer - + bbox = ( 44.1, 14.7 ) - ( 46.2, 16.8) on Layer - violation type: Vertical congestion - srcs: net:clk net:_159_ + srcs: net:_080_ net:_336_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 69.3 ) - ( 44.1, 71.4) on Layer - + bbox = ( 44.1, 16.8 ) - ( 46.2, 18.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_159_ + srcs: net:_244_ net:_410_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 71.4 ) - ( 44.1, 73.5) on Layer - + bbox = ( 44.1, 18.9 ) - ( 46.2, 21) on Layer - violation type: Vertical congestion - srcs: net:clk net:net52 + srcs: net:_338_ net:_410_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 42, 73.5 ) - ( 44.1, 75.6) on Layer - + bbox = ( 44.1, 23.1 ) - ( 46.2, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_409_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 12.6 ) - ( 46.2, 14.7) on Layer - + srcs: net:_207_ net:_346_ net:_410_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 44.1, 27.3 ) - ( 46.2, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_337_ net:_338_ net:_339_ + srcs: net:_131_ net:_207_ net:_228_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 44.1, 21 ) - ( 46.2, 23.1) on Layer - + bbox = ( 44.1, 29.4 ) - ( 46.2, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_346_ net:_410_ + srcs: net:_207_ net:_221_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 27.3 ) - ( 46.2, 29.4) on Layer - + bbox = ( 44.1, 31.5 ) - ( 46.2, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_131_ net:_207_ + srcs: net:_128_ net:_318_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 29.4 ) - ( 46.2, 31.5) on Layer - + bbox = ( 44.1, 33.6 ) - ( 46.2, 35.7) on Layer - violation type: Vertical congestion srcs: net:_224_ net:_326_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 35.7 ) - ( 46.2, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_224_ net:_326_ + srcs: net:_326_ net:_327_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 37.8 ) - ( 46.2, 39.9) on Layer - violation type: Vertical congestion @@ -3399,19 +3255,23 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 42 ) - ( 46.2, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_353_ net:_401_ + srcs: net:_298_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 44.1, 44.1 ) - ( 46.2, 46.2) on Layer - +violation type: Vertical congestion + srcs: net:_252_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 46.2 ) - ( 46.2, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_242_ net:_353_ net:_401_ + srcs: net:_243_ net:_353_ net:_401_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 48.3 ) - ( 46.2, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_142_ net:_160_ net:_353_ + srcs: net:_158_ net:_160_ net:_353_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 44.1, 50.4 ) - ( 46.2, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_353_ + srcs: net:_158_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 52.5 ) - ( 46.2, 54.6) on Layer - violation type: Vertical congestion @@ -3423,43 +3283,27 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 56.7 ) - ( 46.2, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_045_ net:_133_ net:_353_ net:dpath.a_lt_b$in1\[1\] - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_045_ net:dpath.a_lt_b$in1\[1\] + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 58.8 ) - ( 46.2, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_007_ net:_353_ + srcs: net:_007_ net:_117_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 60.9 ) - ( 46.2, 63) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_353_ + srcs: net:_117_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 44.1, 63 ) - ( 46.2, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_249_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 69.3 ) - ( 46.2, 71.4) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_249_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 71.4 ) - ( 46.2, 73.5) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_249_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 73.5 ) - ( 46.2, 75.6) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_249_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 75.6 ) - ( 46.2, 77.7) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_249_ + srcs: net:_165_ net:_378_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 44.1, 77.7 ) - ( 46.2, 79.8) on Layer - + bbox = ( 44.1, 67.2 ) - ( 46.2, 69.3) on Layer - violation type: Vertical congestion - srcs: net:clk net:_114_ + srcs: net:_165_ net:_257_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 10.5 ) - ( 48.3, 12.6) on Layer - + bbox = ( 44.1, 69.3 ) - ( 46.2, 71.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:_114_ + srcs: net:clk net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 12.6 ) - ( 48.3, 14.7) on Layer - violation type: Vertical congestion @@ -3475,23 +3319,35 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 18.9 ) - ( 48.3, 21) on Layer - violation type: Vertical congestion - srcs: net:_210_ net:_327_ + srcs: net:_114_ net:_209_ net:_339_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 46.2, 21 ) - ( 48.3, 23.1) on Layer - +violation type: Vertical congestion + srcs: net:_327_ net:_337_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 23.1 ) - ( 48.3, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_210_ net:_327_ + srcs: net:_129_ net:_327_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 25.2 ) - ( 48.3, 27.3) on Layer - + bbox = ( 46.2, 27.3 ) - ( 48.3, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_116_ net:_221_ + srcs: net:_129_ net:_327_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 33.6 ) - ( 48.3, 35.7) on Layer - + bbox = ( 46.2, 29.4 ) - ( 48.3, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_116_ net:_222_ + srcs: net:_221_ net:_327_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 46.2, 31.5 ) - ( 48.3, 33.6) on Layer - +violation type: Vertical congestion + srcs: net:_116_ net:_221_ net:_327_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 46.2, 33.6 ) - ( 48.3, 35.7) on Layer - +violation type: Vertical congestion + srcs: net:_116_ net:_222_ net:_327_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 35.7 ) - ( 48.3, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_222_ net:_225_ + srcs: net:_224_ net:_225_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 37.8 ) - ( 48.3, 39.9) on Layer - violation type: Vertical congestion @@ -3503,92 +3359,64 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 42 ) - ( 48.3, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_205_ net:_215_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 46.2, 44.1 ) - ( 48.3, 46.2) on Layer - -violation type: Vertical congestion - srcs: net:_205_ net:_215_ + srcs: net:_242_ net:_251_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 46.2 ) - ( 48.3, 48.3) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_229_ net:_230_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 46.2, 50.4 ) - ( 48.3, 52.5) on Layer - + bbox = ( 46.2, 48.3 ) - ( 48.3, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_404_ + srcs: net:_117_ net:_133_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 46.2, 63 ) - ( 48.3, 65.1) on Layer - + bbox = ( 46.2, 58.8 ) - ( 48.3, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_404_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_083_ net:_249_ net:_404_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 46.2, 65.1 ) - ( 48.3, 67.2) on Layer - violation type: Vertical congestion srcs: net:_249_ net:net52 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 46.2, 67.2 ) - ( 48.3, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_409_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 10.5 ) - ( 50.4, 12.6) on Layer - -violation type: Vertical congestion - srcs: net:_244_ net:_408_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 12.6 ) - ( 50.4, 14.7) on Layer - -violation type: Vertical congestion - srcs: net:_244_ net:_252_ net:_408_ + srcs: net:_249_ net:net51 net:net52 congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 48.3, 14.7 ) - ( 50.4, 16.8) on Layer - + bbox = ( 46.2, 69.3 ) - ( 48.3, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_073_ net:_244_ net:_408_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 48.3, 16.8 ) - ( 50.4, 18.9) on Layer - + srcs: net:_249_ net:net52 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 46.2, 71.4 ) - ( 48.3, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_209_ net:_333_ + srcs: net:_073_ net:_408_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 18.9 ) - ( 50.4, 21) on Layer - + bbox = ( 48.3, 16.8 ) - ( 50.4, 18.9) on Layer - violation type: Vertical congestion srcs: net:_209_ net:_332_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 21 ) - ( 50.4, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_212_ net:_332_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_114_ net:_210_ net:_212_ net:_332_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 48.3, 23.1 ) - ( 50.4, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_212_ net:_332_ + srcs: net:_210_ net:_212_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 25.2 ) - ( 50.4, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_208_ net:_213_ + srcs: net:_131_ net:_410_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 48.3, 27.3 ) - ( 50.4, 29.4) on Layer - -violation type: Vertical congestion - srcs: net:_131_ net:_207_ net:_213_ net:_410_ - congestion information: capacity:1 usage:4 overflow:3 bbox = ( 48.3, 29.4 ) - ( 50.4, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_132_ net:_207_ net:_213_ net:_410_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 48.3, 31.5 ) - ( 50.4, 33.6) on Layer - -violation type: Vertical congestion - srcs: net:_213_ net:_319_ net:_320_ net:_410_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 48.3, 33.6 ) - ( 50.4, 35.7) on Layer - -violation type: Vertical congestion - srcs: net:_213_ net:_235_ net:_410_ + srcs: net:_319_ net:_320_ net:_410_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 48.3, 35.7 ) - ( 50.4, 37.8) on Layer - + bbox = ( 48.3, 33.6 ) - ( 50.4, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_116_ net:_213_ net:_235_ + srcs: net:_116_ net:_222_ net:_235_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 37.8 ) - ( 50.4, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_116_ net:_213_ net:_235_ net:_368_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_235_ net:_368_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 39.9 ) - ( 50.4, 42) on Layer - violation type: Vertical congestion - srcs: net:_168_ net:_213_ net:_235_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_213_ net:_235_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 42 ) - ( 50.4, 44.1) on Layer - violation type: Vertical congestion srcs: net:_229_ net:_235_ @@ -3599,20 +3427,20 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 46.2 ) - ( 50.4, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_165_ net:_229_ net:_235_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_160_ net:_229_ net:_235_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 48.3 ) - ( 50.4, 50.4) on Layer - violation type: Vertical congestion srcs: net:_229_ net:_235_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 50.4 ) - ( 50.4, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_404_ + srcs: net:_117_ net:_287_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 54.6 ) - ( 50.4, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_117_ net:_133_ net:_404_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_117_ net:_404_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 56.7 ) - ( 50.4, 58.8) on Layer - violation type: Vertical congestion srcs: net:_239_ net:_404_ @@ -3627,40 +3455,32 @@ violation type: Vertical congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 48.3, 63 ) - ( 50.4, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_083_ net:_253_ net:_411_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 48.3, 65.1 ) - ( 50.4, 67.2) on Layer - -violation type: Vertical congestion - srcs: net:_253_ net:_411_ + srcs: net:_257_ net:_411_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 67.2 ) - ( 50.4, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_253_ + srcs: net:_165_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 75.6 ) - ( 50.4, 77.7) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_253_ + srcs: net:_165_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 48.3, 77.7 ) - ( 50.4, 79.8) on Layer - violation type: Vertical congestion - srcs: net:req_msg[11] net:_409_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 6.3 ) - ( 52.5, 8.4) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[11] net:net39 + srcs: net:_160_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 8.4 ) - ( 52.5, 10.5) on Layer - + bbox = ( 48.3, 79.8 ) - ( 50.4, 81.9) on Layer - violation type: Vertical congestion - srcs: net:_114_ net:net39 + srcs: net:_114_ net:_252_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 10.5 ) - ( 52.5, 12.6) on Layer - + bbox = ( 50.4, 14.7 ) - ( 52.5, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_114_ net:_332_ + srcs: net:_332_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 23.1 ) - ( 52.5, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_129_ net:_233_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_129_ net:_233_ net:_332_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 25.2 ) - ( 52.5, 27.3) on Layer - violation type: Vertical congestion srcs: net:_130_ net:_234_ @@ -3671,33 +3491,57 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 29.4 ) - ( 52.5, 31.5) on Layer - violation type: Vertical congestion - srcs: net:_201_ net:_235_ + srcs: net:_132_ net:_235_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 50.4, 31.5 ) - ( 52.5, 33.6) on Layer - +violation type: Vertical congestion + srcs: net:_132_ net:_201_ net:_235_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 33.6 ) - ( 52.5, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_098_ net:_132_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_132_ net:_201_ net:_235_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 50.4, 35.7 ) - ( 52.5, 37.8) on Layer - +violation type: Vertical congestion + srcs: net:_098_ net:_132_ net:_347_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 37.8 ) - ( 52.5, 39.9) on Layer - +violation type: Vertical congestion + srcs: net:_205_ net:_215_ net:_245_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 50.4, 44.1 ) - ( 52.5, 46.2) on Layer - +violation type: Vertical congestion + srcs: net:_205_ net:_215_ net:_245_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 50.4, 46.2 ) - ( 52.5, 48.3) on Layer - violation type: Vertical congestion srcs: net:_240_ net:_404_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 50.4 ) - ( 52.5, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_235_ net:_236_ net:_240_ net:_404_ - congestion information: capacity:1 usage:5 overflow:4 + srcs: net:_236_ net:_240_ net:_404_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 52.5 ) - ( 52.5, 54.6) on Layer - +violation type: Vertical congestion + srcs: net:_239_ net:_404_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 50.4, 54.6 ) - ( 52.5, 56.7) on Layer - violation type: Vertical congestion srcs: net:_180_ net:_239_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 50.4, 56.7 ) - ( 52.5, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_259_ + srcs: net:_254_ net:_258_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 65.1 ) - ( 52.5, 67.2) on Layer - + bbox = ( 50.4, 58.8 ) - ( 52.5, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_062_ net:_245_ net:_257_ + srcs: net:_245_ net:_258_ net:_412_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 50.4, 67.2 ) - ( 52.5, 69.3) on Layer - + bbox = ( 50.4, 63 ) - ( 52.5, 65.1) on Layer - +violation type: Vertical congestion + srcs: net:_245_ net:_259_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 50.4, 65.1 ) - ( 52.5, 67.2) on Layer - violation type: Vertical congestion srcs: net:_084_ net:_118_ net:_245_ congestion information: capacity:1 usage:3 overflow:2 @@ -3707,13 +3551,9 @@ violation type: Vertical congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 50.4, 71.4 ) - ( 52.5, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 75.6 ) - ( 52.5, 77.7) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_370_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 50.4, 81.9 ) - ( 52.5, 84) on Layer - + srcs: net:_248_ net:_401_ net:net39 + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 52.5, 8.4 ) - ( 54.6, 10.5) on Layer - violation type: Vertical congestion srcs: net:_019_ net:dpath.a_lt_b$in1\[13\] congestion information: capacity:1 usage:2 overflow:1 @@ -3723,45 +3563,29 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 16.8 ) - ( 54.6, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_244_ net:_252_ net:_352_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_252_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 18.9 ) - ( 54.6, 21) on Layer - violation type: Vertical congestion - srcs: net:_252_ net:_328_ net:_352_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_252_ net:_328_ net:_330_ net:_352_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 52.5, 21 ) - ( 54.6, 23.1) on Layer - -violation type: Vertical congestion - srcs: net:_211_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 23.1 ) - ( 54.6, 25.2) on Layer - violation type: Vertical congestion srcs: net:_211_ net:_231_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 25.2 ) - ( 54.6, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_129_ net:_231_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_130_ net:_213_ net:_231_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 52.5, 27.3 ) - ( 54.6, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_129_ net:_364_ + srcs: net:_364_ net:_371_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 29.4 ) - ( 54.6, 31.5) on Layer - violation type: Vertical congestion srcs: net:_112_ net:_364_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 31.5 ) - ( 54.6, 33.6) on Layer - -violation type: Vertical congestion - srcs: net:_128_ net:_132_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 33.6 ) - ( 54.6, 35.7) on Layer - -violation type: Vertical congestion - srcs: net:clk net:dpath.a_lt_b$in1\[15\] - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 35.7 ) - ( 54.6, 37.8) on Layer - -violation type: Vertical congestion - srcs: net:_044_ net:_347_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 37.8 ) - ( 54.6, 39.9) on Layer - violation type: Vertical congestion srcs: net:_249_ net:_349_ net:_350_ congestion information: capacity:1 usage:3 overflow:2 @@ -3775,91 +3599,115 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 52.5, 48.3 ) - ( 54.6, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_174_ net:_237_ + srcs: net:_181_ net:_183_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 52.5, 56.7 ) - ( 54.6, 58.8) on Layer - +violation type: Vertical congestion + srcs: net:_126_ net:_182_ net:_250_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 52.5, 50.4 ) - ( 54.6, 52.5) on Layer - + bbox = ( 52.5, 58.8 ) - ( 54.6, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_174_ net:_178_ + srcs: net:_126_ net:_182_ net:_250_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 52.5, 60.9 ) - ( 54.6, 63) on Layer - +violation type: Vertical congestion + srcs: net:_110_ net:_126_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 52.5 ) - ( 54.6, 54.6) on Layer - + bbox = ( 52.5, 63 ) - ( 54.6, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_174_ net:_178_ + srcs: net:_062_ net:_126_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 54.6 ) - ( 54.6, 56.7) on Layer - + bbox = ( 52.5, 67.2 ) - ( 54.6, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_181_ net:_183_ + srcs: net:clk net:_126_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 52.5, 56.7 ) - ( 54.6, 58.8) on Layer - + bbox = ( 52.5, 71.4 ) - ( 54.6, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_042_ net:_401_ + srcs: net:_126_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 14.7 ) - ( 56.7, 16.8) on Layer - + bbox = ( 52.5, 73.5 ) - ( 54.6, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_072_ net:_407_ + srcs: net:_096_ net:_407_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 18.9 ) - ( 56.7, 21) on Layer - + bbox = ( 54.6, 16.8 ) - ( 56.7, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_330_ net:_407_ + srcs: net:_129_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 21 ) - ( 56.7, 23.1) on Layer - + bbox = ( 54.6, 25.2 ) - ( 56.7, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_352_ + srcs: net:_129_ net:_352_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 27.3 ) - ( 56.7, 29.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:_352_ net:dpath.a_lt_b$in1\[11\] - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_213_ net:_352_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 29.4 ) - ( 56.7, 31.5) on Layer - +violation type: Vertical congestion + srcs: net:_213_ net:_221_ net:_352_ net:_401_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 54.6, 31.5 ) - ( 56.7, 33.6) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_213_ net:_352_ net:_401_ net:dpath.a_lt_b$in1\[11\] + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 54.6, 33.6 ) - ( 56.7, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_021_ net:_352_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_213_ net:_352_ net:_401_ net:dpath.a_lt_b$in1\[15\] + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 54.6, 35.7 ) - ( 56.7, 37.8) on Layer - +violation type: Vertical congestion + srcs: net:_021_ net:_213_ net:_249_ net:_352_ net:_401_ + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 54.6, 37.8 ) - ( 56.7, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_075_ net:_245_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_075_ net:_213_ net:_401_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 39.9 ) - ( 56.7, 42) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_348_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_213_ net:_245_ net:_348_ net:_401_ + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 54.6, 42 ) - ( 56.7, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_298_ net:_348_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_165_ net:_348_ net:_401_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 54.6, 44.1 ) - ( 56.7, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_377_ net:_401_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_165_ net:_377_ net:_401_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 54.6, 46.2 ) - ( 56.7, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_377_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_165_ net:_377_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 48.3 ) - ( 56.7, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_184_ net:_250_ + srcs: net:_165_ net:_250_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 50.4 ) - ( 56.7, 52.5) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:_178_ net:_184_ net:_250_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 54.6, 52.5 ) - ( 56.7, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_184_ net:_250_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_178_ net:_184_ net:_250_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 54.6 ) - ( 56.7, 56.7) on Layer - violation type: Vertical congestion srcs: net:_174_ net:_250_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 56.7 ) - ( 56.7, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_146_ net:_174_ net:_250_ net:_258_ - congestion information: capacity:1 usage:5 overflow:4 + srcs: net:_146_ net:_174_ net:_262_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 58.8 ) - ( 56.7, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_126_ net:_174_ net:_258_ + srcs: net:_118_ net:_174_ net:_262_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 60.9 ) - ( 56.7, 63) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_126_ net:_173_ net:_258_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_118_ net:_262_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 63 ) - ( 56.7, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_173_ + srcs: net:_110_ net:_118_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 54.6, 65.1 ) - ( 56.7, 67.2) on Layer - violation type: Vertical congestion @@ -3867,8 +3715,8 @@ violation type: Vertical congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 54.6, 67.2 ) - ( 56.7, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_008_ net:_110_ net:_134_ net:_393_ net:dpath.a_lt_b$in1\[2\] - congestion information: capacity:1 usage:5 overflow:4 + srcs: net:_008_ net:_110_ net:_134_ net:dpath.a_lt_b$in1\[2\] + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 54.6, 69.3 ) - ( 56.7, 71.4) on Layer - violation type: Vertical congestion srcs: net:_046_ net:_100_ net:_110_ net:_393_ @@ -3881,110 +3729,122 @@ violation type: Vertical congestion violation type: Vertical congestion srcs: net:_110_ net:_393_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 54.6, 75.6 ) - ( 56.7, 77.7) on Layer - + bbox = ( 54.6, 75.6 ) - ( 56.7, 77.7) on Layer - +violation type: Vertical congestion + srcs: net:_110_ net:_393_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 77.7 ) - ( 56.7, 79.8) on Layer - +violation type: Vertical congestion + srcs: net:_110_ net:_393_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 54.6, 79.8 ) - ( 56.7, 81.9) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:net19 + srcs: net:_110_ net:_393_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 14.7 ) - ( 58.8, 16.8) on Layer - + bbox = ( 54.6, 81.9 ) - ( 56.7, 84) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_407_ + srcs: net:_110_ net:net5 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 16.8 ) - ( 58.8, 18.9) on Layer - + bbox = ( 54.6, 86.1 ) - ( 56.7, 88.2) on Layer - violation type: Vertical congestion - srcs: net:_072_ net:_248_ + srcs: net:_371_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 18.9 ) - ( 58.8, 21) on Layer - + bbox = ( 56.7, 14.7 ) - ( 58.8, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_025_ net:_072_ net:_248_ + srcs: net:clk net:_072_ net:_113_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 56.7, 21 ) - ( 58.8, 23.1) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_072_ - congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 23.1 ) - ( 58.8, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_041_ net:_113_ net:_129_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_041_ net:_113_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 25.2 ) - ( 58.8, 27.3) on Layer - violation type: Vertical congestion srcs: net:_095_ net:_113_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 27.3 ) - ( 58.8, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_071_ net:_249_ + srcs: net:_113_ net:_388_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 56.7, 29.4 ) - ( 58.8, 31.5) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_388_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 56.7, 31.5 ) - ( 58.8, 33.6) on Layer - +violation type: Vertical congestion + srcs: net:_017_ net:_388_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 56.7, 33.6 ) - ( 58.8, 35.7) on Layer - +violation type: Vertical congestion + srcs: net:_017_ net:_388_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 56.7, 35.7 ) - ( 58.8, 37.8) on Layer - +violation type: Vertical congestion + srcs: net:_071_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 37.8 ) - ( 58.8, 39.9) on Layer - +violation type: Vertical congestion + srcs: net:_245_ net:_315_ net:_388_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 56.7, 39.9 ) - ( 58.8, 42) on Layer - violation type: Vertical congestion srcs: net:_165_ net:dpath.a_lt_b$in0\[15\] congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 42 ) - ( 58.8, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_165_ + srcs: net:_160_ net:_298_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 44.1 ) - ( 58.8, 46.2) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_165_ net:_298_ net:_348_ - congestion information: capacity:1 usage:4 overflow:3 bbox = ( 56.7, 46.2 ) - ( 58.8, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_199_ net:_237_ net:_348_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_199_ net:_237_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 48.3 ) - ( 58.8, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_171_ net:_177_ net:_199_ net:_237_ net:_348_ - congestion information: capacity:1 usage:5 overflow:4 + srcs: net:_171_ net:_199_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 50.4 ) - ( 58.8, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_171_ net:_198_ net:_348_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_171_ net:_198_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 52.5 ) - ( 58.8, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_197_ net:_348_ + srcs: net:_197_ net:_236_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 54.6 ) - ( 58.8, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_197_ net:_262_ net:_348_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_143_ net:_197_ net:_236_ net:_262_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 56.7, 56.7 ) - ( 58.8, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_145_ net:_197_ net:_262_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_145_ net:_197_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 58.8 ) - ( 58.8, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_118_ net:_145_ net:_262_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 56.7, 60.9 ) - ( 58.8, 63) on Layer - -violation type: Vertical congestion - srcs: net:_118_ net:_145_ net:_262_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_145_ net:_173_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 63 ) - ( 58.8, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_118_ net:_134_ + srcs: net:_134_ net:_173_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 56.7, 65.1 ) - ( 58.8, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_393_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 67.2 ) - ( 58.8, 69.3) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_353_ + srcs: net:resp_msg[9] net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 71.4 ) - ( 58.8, 73.5) on Layer - + bbox = ( 58.8, 6.3 ) - ( 60.9, 8.4) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_353_ + srcs: net:resp_msg[9] net:net43 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 56.7, 73.5 ) - ( 58.8, 75.6) on Layer - + bbox = ( 58.8, 8.4 ) - ( 60.9, 10.5) on Layer - violation type: Vertical congestion - srcs: net:resp_msg[9] net:_409_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 6.3 ) - ( 60.9, 8.4) on Layer - + srcs: net:_025_ net:_248_ net:_371_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 58.8, 21 ) - ( 60.9, 23.1) on Layer - violation type: Vertical congestion - srcs: net:_024_ net:_112_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 31.5 ) - ( 60.9, 33.6) on Layer - + srcs: net:_130_ net:_371_ net:dpath.a_lt_b$in1\[12\] + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 58.8, 25.2 ) - ( 60.9, 27.3) on Layer - violation type: Vertical congestion - srcs: net:_078_ net:_221_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_078_ net:_221_ net:_406_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 33.6 ) - ( 60.9, 35.7) on Layer - violation type: Vertical congestion srcs: net:_322_ net:_406_ @@ -3994,17 +3854,29 @@ violation type: Vertical congestion srcs: net:_253_ net:_406_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 37.8 ) - ( 60.9, 39.9) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_315_ net:_388_ net:_397_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 58.8, 39.9 ) - ( 60.9, 42) on Layer - violation type: Vertical congestion srcs: net:_359_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 42 ) - ( 60.9, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_177_ net:_272_ + srcs: net:_122_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 58.8, 44.1 ) - ( 60.9, 46.2) on Layer - +violation type: Vertical congestion + srcs: net:_193_ net:_348_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 58.8, 46.2 ) - ( 60.9, 48.3) on Layer - +violation type: Vertical congestion + srcs: net:_272_ net:_348_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 58.8, 48.3 ) - ( 60.9, 50.4) on Layer - +violation type: Vertical congestion + srcs: net:_177_ net:_272_ net:_348_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 58.8, 50.4 ) - ( 60.9, 52.5) on Layer - +violation type: Vertical congestion + srcs: net:_177_ net:_272_ net:_348_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 58.8, 52.5 ) - ( 60.9, 54.6) on Layer - violation type: Vertical congestion srcs: net:_196_ net:_272_ @@ -4015,63 +3887,63 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 56.7 ) - ( 60.9, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_119_ net:_269_ net:_348_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_119_ net:_269_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 58.8 ) - ( 60.9, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_264_ net:_348_ + srcs: net:_119_ net:_264_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 58.8, 60.9 ) - ( 60.9, 63) on Layer - violation type: Vertical congestion - srcs: net:_047_ net:_135_ + srcs: net:_119_ net:_348_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 67.2 ) - ( 60.9, 69.3) on Layer - + bbox = ( 58.8, 63 ) - ( 60.9, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_394_ + srcs: net:_353_ net:_356_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 58.8, 79.8 ) - ( 60.9, 81.9) on Layer - + bbox = ( 58.8, 69.3 ) - ( 60.9, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_397_ net:_401_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 14.7 ) - ( 63, 16.8) on Layer - + srcs: net:_160_ net:_353_ net:_394_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 58.8, 71.4 ) - ( 60.9, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_397_ net:_401_ + srcs: net:_353_ net:_394_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 16.8 ) - ( 63, 18.9) on Layer - + bbox = ( 58.8, 73.5 ) - ( 60.9, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_401_ + srcs: net:_353_ net:_394_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 18.9 ) - ( 63, 21) on Layer - + bbox = ( 58.8, 75.6 ) - ( 60.9, 77.7) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_401_ + srcs: net:_248_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 21 ) - ( 63, 23.1) on Layer - + bbox = ( 60.9, 8.4 ) - ( 63, 10.5) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_401_ + srcs: net:_248_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 23.1 ) - ( 63, 25.2) on Layer - + bbox = ( 60.9, 14.7 ) - ( 63, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_130_ net:_401_ + srcs: net:_248_ net:_401_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 25.2 ) - ( 63, 27.3) on Layer - + bbox = ( 60.9, 16.8 ) - ( 63, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_397_ net:_401_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 60.9, 29.4 ) - ( 63, 31.5) on Layer - + srcs: net:_397_ net:_401_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 60.9, 27.3 ) - ( 63, 29.4) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_388_ net:_397_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_112_ net:_397_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 31.5 ) - ( 63, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_388_ net:_397_ net:_406_ - congestion information: capacity:1 usage:4 overflow:3 + srcs: net:_249_ net:_397_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 33.6 ) - ( 63, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_388_ net:_397_ + srcs: net:_248_ net:_249_ net:_397_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 35.7 ) - ( 63, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_388_ net:_397_ + srcs: net:_245_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 37.8 ) - ( 63, 39.9) on Layer - violation type: Vertical congestion @@ -4079,109 +3951,85 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 42 ) - ( 63, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_193_ + srcs: net:_138_ net:_177_ net:_193_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 60.9, 48.3 ) - ( 63, 50.4) on Layer - +violation type: Vertical congestion + srcs: net:_191_ net:_192_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 46.2 ) - ( 63, 48.3) on Layer - + bbox = ( 60.9, 52.5 ) - ( 63, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_193_ + srcs: net:_287_ net:_348_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 48.3 ) - ( 63, 50.4) on Layer - + bbox = ( 60.9, 54.6 ) - ( 63, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_144_ net:_236_ + srcs: net:_144_ net:_348_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 56.7 ) - ( 63, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_144_ net:_236_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_144_ net:_236_ net:_348_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 58.8 ) - ( 63, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_119_ net:_172_ + srcs: net:_172_ net:_348_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 60.9 ) - ( 63, 63) on Layer - -violation type: Vertical congestion - srcs: net:_119_ net:_135_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 63 ) - ( 63, 65.1) on Layer - violation type: Vertical congestion srcs: net:_119_ net:_135_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 60.9, 65.1 ) - ( 63, 67.2) on Layer - violation type: Vertical congestion - srcs: net:clk net:_119_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_047_ net:_119_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 67.2 ) - ( 63, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_047_ net:_101_ net:_119_ + srcs: net:clk net:_047_ net:_101_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 60.9, 69.3 ) - ( 63, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_249_ + srcs: net:_160_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 71.4 ) - ( 63, 73.5) on Layer - + bbox = ( 60.9, 81.9 ) - ( 63, 84) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_249_ + srcs: net:_397_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 73.5 ) - ( 63, 75.6) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_249_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 75.6 ) - ( 63, 77.7) on Layer - + bbox = ( 63, 10.5 ) - ( 65.1, 12.6) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_249_ + srcs: net:_397_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 77.7 ) - ( 63, 79.8) on Layer - + bbox = ( 63, 12.6 ) - ( 65.1, 14.7) on Layer - violation type: Vertical congestion - srcs: net:req_msg[10] net:_248_ + srcs: net:_397_ net:_409_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 60.9, 88.2 ) - ( 63, 90.3) on Layer - + bbox = ( 63, 14.7 ) - ( 65.1, 16.8) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_397_ + srcs: net:_130_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 21 ) - ( 65.1, 23.1) on Layer - + bbox = ( 63, 18.9 ) - ( 65.1, 21) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_397_ + srcs: net:_130_ net:_397_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 27.3 ) - ( 65.1, 29.4) on Layer - + bbox = ( 63, 23.1 ) - ( 65.1, 25.2) on Layer - violation type: Vertical congestion - srcs: net:clk net:net46 + srcs: net:_012_ net:_050_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 33.6 ) - ( 65.1, 35.7) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_159_ net:_245_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 63, 37.8 ) - ( 65.1, 39.9) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_012_ net:_050_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 39.9 ) - ( 65.1, 42) on Layer - violation type: Vertical congestion - srcs: net:clk net:_138_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 42 ) - ( 65.1, 44.1) on Layer - -violation type: Vertical congestion - srcs: net:_353_ net:_377_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 44.1 ) - ( 65.1, 46.2) on Layer - + srcs: net:_177_ net:_272_ net:_288_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 63, 46.2 ) - ( 65.1, 48.3) on Layer - violation type: Vertical congestion srcs: net:_289_ net:_290_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 48.3 ) - ( 65.1, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_169_ net:_189_ + srcs: net:_169_ net:_291_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 50.4 ) - ( 65.1, 52.5) on Layer - -violation type: Vertical congestion - srcs: net:_169_ net:_191_ net:_291_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 52.5 ) - ( 65.1, 54.6) on Layer - violation type: Vertical congestion srcs: net:_292_ net:_293_ net:_417_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 63, 56.7 ) - ( 65.1, 58.8) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_253_ net:_417_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 63, 58.8 ) - ( 65.1, 60.9) on Layer - violation type: Vertical congestion srcs: net:_144_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 @@ -4195,69 +4043,61 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 65.1 ) - ( 65.1, 67.2) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ + srcs: net:_119_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 67.2 ) - ( 65.1, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_249_ + srcs: net:_119_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 63, 69.3 ) - ( 65.1, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:net20 + srcs: net:_031_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 84 ) - ( 65.1, 86.1) on Layer - + bbox = ( 63, 71.4 ) - ( 65.1, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:net1 + srcs: net:_248_ net:_391_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 63, 86.1 ) - ( 65.1, 88.2) on Layer - + bbox = ( 63, 73.5 ) - ( 65.1, 75.6) on Layer - violation type: Vertical congestion - srcs: net:net38 net:net46 + srcs: net:_159_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 10.5 ) - ( 67.2, 12.6) on Layer - + bbox = ( 63, 81.9 ) - ( 65.1, 84) on Layer - violation type: Vertical congestion - srcs: net:net38 net:net46 + srcs: net:_248_ net:net22 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 12.6 ) - ( 67.2, 14.7) on Layer - + bbox = ( 63, 86.1 ) - ( 65.1, 88.2) on Layer - violation type: Vertical congestion - srcs: net:net38 net:net46 + srcs: net:_160_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 14.7 ) - ( 67.2, 16.8) on Layer - + bbox = ( 63, 88.2 ) - ( 65.1, 90.3) on Layer - violation type: Vertical congestion - srcs: net:net38 net:net46 + srcs: net:_397_ net:net38 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 16.8 ) - ( 67.2, 18.9) on Layer - violation type: Vertical congestion - srcs: net:_113_ net:net46 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 23.1 ) - ( 67.2, 25.2) on Layer - -violation type: Vertical congestion - srcs: net:_113_ net:net46 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 25.2 ) - ( 67.2, 27.3) on Layer - -violation type: Vertical congestion - srcs: net:_372_ net:net46 + srcs: net:_248_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 27.3 ) - ( 67.2, 29.4) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:_372_ net:net46 - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 65.1, 29.4 ) - ( 67.2, 31.5) on Layer - -violation type: Vertical congestion - srcs: net:_248_ net:net46 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 31.5 ) - ( 67.2, 33.6) on Layer - violation type: Vertical congestion srcs: net:_088_ net:_248_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 33.6 ) - ( 67.2, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_248_ net:_286_ net:_416_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_286_ net:_416_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 35.7 ) - ( 67.2, 37.8) on Layer - violation type: Vertical congestion srcs: net:_245_ net:_253_ net:_416_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 65.1, 37.8 ) - ( 67.2, 39.9) on Layer - +violation type: Vertical congestion + srcs: net:_138_ net:_416_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 65.1, 42 ) - ( 67.2, 44.1) on Layer - +violation type: Vertical congestion + srcs: net:_170_ net:_416_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 65.1, 44.1 ) - ( 67.2, 46.2) on Layer - violation type: Vertical congestion srcs: net:_170_ net:_284_ congestion information: capacity:1 usage:2 overflow:1 @@ -4271,161 +4111,193 @@ violation type: Vertical congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 65.1, 50.4 ) - ( 67.2, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_123_ net:_169_ net:_190_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_123_ net:_143_ net:_169_ net:_190_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 65.1, 52.5 ) - ( 67.2, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_123_ net:_139_ + srcs: net:_123_ net:_143_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 54.6 ) - ( 67.2, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_013_ net:_067_ net:_123_ net:_143_ net:_245_ - congestion information: capacity:1 usage:5 overflow:4 + srcs: net:_013_ net:_067_ net:_123_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 65.1, 56.7 ) - ( 67.2, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_035_ net:_245_ + srcs: net:_035_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 58.8 ) - ( 67.2, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_253_ + srcs: net:_236_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 65.1, 60.9 ) - ( 67.2, 63) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_253_ net:_413_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 65.1, 63 ) - ( 67.2, 65.1) on Layer - -violation type: Vertical congestion - srcs: net:_245_ net:_266_ + srcs: net:_253_ net:_413_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 65.1 ) - ( 67.2, 67.2) on Layer - + bbox = ( 65.1, 63 ) - ( 67.2, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_261_ + srcs: net:_031_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 67.2 ) - ( 67.2, 69.3) on Layer - + bbox = ( 65.1, 69.3 ) - ( 67.2, 71.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:dpath.a_lt_b$in0\[3\] + srcs: net:resp_msg[14] net:net46 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 71.4 ) - ( 67.2, 73.5) on Layer - + bbox = ( 67.2, 8.4 ) - ( 69.3, 10.5) on Layer - violation type: Vertical congestion - srcs: net:clk net:_391_ + srcs: net:_253_ net:net48 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 73.5 ) - ( 67.2, 75.6) on Layer - + bbox = ( 67.2, 27.3 ) - ( 69.3, 29.4) on Layer - violation type: Vertical congestion - srcs: net:clk net:net1 + srcs: net:_253_ net:net48 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 65.1, 88.2 ) - ( 67.2, 90.3) on Layer - + bbox = ( 67.2, 29.4 ) - ( 69.3, 31.5) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ net:_371_ + srcs: net:clk net:_253_ net:_414_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 67.2, 25.2 ) - ( 69.3, 27.3) on Layer - + bbox = ( 67.2, 31.5 ) - ( 69.3, 33.6) on Layer - violation type: Vertical congestion - srcs: net:clk net:_248_ net:_371_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 67.2, 27.3 ) - ( 69.3, 29.4) on Layer - + srcs: net:clk net:_253_ net:_414_ net:dpath.a_lt_b$in0\[6\] + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 67.2, 33.6 ) - ( 69.3, 35.7) on Layer - violation type: Vertical congestion - srcs: net:clk net:_388_ net:_414_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 67.2, 29.4 ) - ( 69.3, 31.5) on Layer - + srcs: net:clk net:_122_ net:_253_ net:_414_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 67.2, 35.7 ) - ( 69.3, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_122_ net:_281_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_122_ net:_253_ net:_281_ net:_414_ + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 67.2, 37.8 ) - ( 69.3, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_122_ net:_416_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:clk net:_122_ net:_414_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 39.9 ) - ( 69.3, 42) on Layer - violation type: Vertical congestion - srcs: net:_122_ net:_377_ net:_416_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_122_ net:_136_ net:_353_ net:_377_ net:_414_ + congestion information: capacity:1 usage:5 overflow:4 bbox = ( 67.2, 42 ) - ( 69.3, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_272_ net:_416_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_136_ net:_138_ net:_272_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 44.1 ) - ( 69.3, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_136_ net:_272_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_136_ net:_177_ net:_272_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 67.2, 46.2 ) - ( 69.3, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_136_ net:_177_ net:_283_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_136_ net:_283_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 48.3 ) - ( 69.3, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_137_ net:_143_ net:_177_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_137_ net:_143_ net:_189_ net:_283_ + congestion information: capacity:1 usage:4 overflow:3 bbox = ( 67.2, 50.4 ) - ( 69.3, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_139_ net:_143_ net:_177_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 67.2, 52.5 ) - ( 69.3, 54.6) on Layer - -violation type: Vertical congestion - srcs: net:_139_ net:_143_ + srcs: net:clk net:_245_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 54.6 ) - ( 69.3, 56.7) on Layer - + bbox = ( 67.2, 56.7 ) - ( 69.3, 58.8) on Layer - violation type: Vertical congestion - srcs: net:clk net:_353_ + srcs: net:clk net:_245_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 58.8 ) - ( 69.3, 60.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_353_ + srcs: net:clk net:_245_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 60.9 ) - ( 69.3, 63) on Layer - violation type: Vertical congestion - srcs: net:clk net:_353_ + srcs: net:clk net:_245_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 63 ) - ( 69.3, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_092_ net:_379_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 67.2, 67.2 ) - ( 69.3, 69.3) on Layer - + srcs: net:_038_ net:_165_ net:_245_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 67.2, 65.1 ) - ( 69.3, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_031_ net:_245_ net:_379_ + srcs: net:_092_ net:_245_ net:_379_ congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 67.2, 67.2 ) - ( 69.3, 69.3) on Layer - +violation type: Vertical congestion + srcs: net:_245_ net:_379_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 69.3 ) - ( 69.3, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_031_ net:_245_ + srcs: net:_245_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 71.4 ) - ( 69.3, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_391_ + srcs: net:_249_ net:net13 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 67.2, 73.5 ) - ( 69.3, 75.6) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:net13 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 75.6 ) - ( 69.3, 77.7) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_391_ + srcs: net:_249_ net:net13 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 67.2, 77.7 ) - ( 69.3, 79.8) on Layer - violation type: Vertical congestion - srcs: net:_371_ net:net48 + srcs: net:_249_ net:net13 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 67.2, 79.8 ) - ( 69.3, 81.9) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:net13 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 67.2, 81.9 ) - ( 69.3, 84) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:net48 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 21 ) - ( 71.4, 23.1) on Layer - +violation type: Vertical congestion + srcs: net:_248_ net:net48 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 69.3, 23.1 ) - ( 71.4, 25.2) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_253_ net:_383_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 69.3, 35.7 ) - ( 71.4, 37.8) on Layer - + srcs: net:_248_ net:net48 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 25.2 ) - ( 71.4, 27.3) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_248_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 27.3 ) - ( 71.4, 29.4) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:net41 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 31.5 ) - ( 71.4, 33.6) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:_253_ + srcs: net:_159_ net:_165_ net:_383_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 69.3, 37.8 ) - ( 71.4, 39.9) on Layer - + bbox = ( 69.3, 35.7 ) - ( 71.4, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_414_ + srcs: net:_159_ net:_165_ congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 37.8 ) - ( 71.4, 39.9) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_165_ net:_381_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 39.9 ) - ( 71.4, 42) on Layer - violation type: Vertical congestion - srcs: net:_272_ net:_414_ + srcs: net:_138_ net:_186_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 42 ) - ( 71.4, 44.1) on Layer - + bbox = ( 69.3, 48.3 ) - ( 71.4, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_176_ + srcs: net:_139_ net:_188_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 44.1 ) - ( 71.4, 46.2) on Layer - + bbox = ( 69.3, 50.4 ) - ( 71.4, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_138_ net:_177_ + srcs: net:_105_ net:_139_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 69.3, 46.2 ) - ( 71.4, 48.3) on Layer - + bbox = ( 69.3, 56.7 ) - ( 71.4, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_123_ net:_160_ net:_360_ + srcs: net:_123_ net:_160_ net:_353_ congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 58.8 ) - ( 71.4, 60.9) on Layer - +violation type: Vertical congestion + srcs: net:_160_ net:_353_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 60.9 ) - ( 71.4, 63) on Layer - +violation type: Vertical congestion + srcs: net:_060_ net:_166_ net:_246_ net:_353_ + congestion information: capacity:1 usage:4 overflow:3 + bbox = ( 69.3, 63 ) - ( 71.4, 65.1) on Layer - violation type: Vertical congestion srcs: net:_353_ net:dpath.a_lt_b$in1\[0\] congestion information: capacity:1 usage:2 overflow:1 @@ -4435,72 +4307,56 @@ violation type: Vertical congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 69.3, 67.2 ) - ( 71.4, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:net10 + srcs: net:_126_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 27.3 ) - ( 73.5, 29.4) on Layer - + bbox = ( 69.3, 69.3 ) - ( 71.4, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:net10 + srcs: net:_126_ net:_379_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 29.4 ) - ( 73.5, 31.5) on Layer - + bbox = ( 69.3, 71.4 ) - ( 71.4, 73.5) on Layer - +violation type: Vertical congestion + srcs: net:clk net:_126_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 69.3, 73.5 ) - ( 71.4, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:net10 + srcs: net:clk net:_159_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 31.5 ) - ( 73.5, 33.6) on Layer - + bbox = ( 69.3, 81.9 ) - ( 71.4, 84) on Layer - violation type: Vertical congestion srcs: net:_249_ net:_383_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 33.6 ) - ( 73.5, 35.7) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_381_ + srcs: net:_245_ net:_268_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 35.7 ) - ( 73.5, 37.8) on Layer - -violation type: Vertical congestion - srcs: net:_245_ net:_268_ net:_381_ - congestion information: capacity:1 usage:3 overflow:2 bbox = ( 71.4, 37.8 ) - ( 73.5, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_120_ net:_377_ + srcs: net:_136_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 42 ) - ( 73.5, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_136_ net:_276_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 44.1 ) - ( 73.5, 46.2) on Layer - -violation type: Vertical congestion - srcs: net:_277_ net:_278_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_175_ net:_277_ net:_278_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 71.4, 46.2 ) - ( 73.5, 48.3) on Layer - violation type: Vertical congestion srcs: net:_282_ net:_415_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 48.3 ) - ( 73.5, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_188_ net:_415_ + srcs: net:_283_ net:_415_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 50.4 ) - ( 73.5, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_139_ net:_415_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 52.5 ) - ( 73.5, 54.6) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:_398_ + srcs: net:_360_ net:_398_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 58.8 ) - ( 73.5, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_236_ net:_249_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 60.9 ) - ( 73.5, 63) on Layer - -violation type: Vertical congestion - srcs: net:_166_ net:_246_ net:_249_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 71.4, 63 ) - ( 73.5, 65.1) on Layer - -violation type: Vertical congestion - srcs: net:_110_ net:_166_ + srcs: net:_165_ net:_166_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 71.4, 65.1 ) - ( 73.5, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_376_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_165_ net:_376_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 71.4, 67.2 ) - ( 73.5, 69.3) on Layer - violation type: Vertical congestion srcs: net:_165_ net:_376_ @@ -4509,43 +4365,27 @@ violation type: Vertical congestion violation type: Vertical congestion srcs: net:_165_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 73.5 ) - ( 73.5, 75.6) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_165_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 75.6 ) - ( 73.5, 77.7) on Layer - + bbox = ( 71.4, 71.4 ) - ( 73.5, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_249_ + srcs: net:_165_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 71.4, 84 ) - ( 73.5, 86.1) on Layer - + bbox = ( 71.4, 73.5 ) - ( 73.5, 75.6) on Layer - violation type: Vertical congestion - srcs: net:_381_ net:net19 + srcs: net:_165_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 10.5 ) - ( 75.6, 12.6) on Layer - + bbox = ( 71.4, 75.6 ) - ( 73.5, 77.7) on Layer - violation type: Vertical congestion - srcs: net:_381_ net:net19 + srcs: net:_165_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 12.6 ) - ( 75.6, 14.7) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_381_ net:_414_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 73.5, 29.4 ) - ( 75.6, 31.5) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_381_ net:_414_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 73.5, 31.5 ) - ( 75.6, 33.6) on Layer - -violation type: Vertical congestion - srcs: net:_165_ net:_381_ net:_414_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 73.5, 33.6 ) - ( 75.6, 35.7) on Layer - + bbox = ( 71.4, 77.7 ) - ( 73.5, 79.8) on Layer - violation type: Vertical congestion - srcs: net:_086_ net:_414_ + srcs: net:_086_ net:_381_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 35.7 ) - ( 75.6, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_120_ net:_136_ + srcs: net:_010_ net:_381_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 42 ) - ( 75.6, 44.1) on Layer - + bbox = ( 73.5, 39.9 ) - ( 75.6, 42) on Layer - violation type: Vertical congestion srcs: net:_120_ net:_136_ congestion information: capacity:1 usage:2 overflow:1 @@ -4554,10 +4394,6 @@ violation type: Vertical congestion srcs: net:_136_ net:_185_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 46.2 ) - ( 75.6, 48.3) on Layer - -violation type: Vertical congestion - srcs: net:_121_ net:_186_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 48.3 ) - ( 75.6, 50.4) on Layer - violation type: Vertical congestion srcs: net:_121_ net:_187_ congestion information: capacity:1 usage:2 overflow:1 @@ -4567,95 +4403,75 @@ violation type: Vertical congestion congestion information: capacity:1 usage:3 overflow:2 bbox = ( 73.5, 54.6 ) - ( 75.6, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_275_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 56.7 ) - ( 75.6, 58.8) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_275_ - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_159_ net:_275_ net:_382_ + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 73.5, 58.8 ) - ( 75.6, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_160_ + srcs: net:_159_ net:_382_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 60.9 ) - ( 75.6, 63) on Layer - violation type: Vertical congestion - srcs: net:_076_ net:_159_ net:_160_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_076_ net:_160_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 63 ) - ( 75.6, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_160_ + srcs: net:_110_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 73.5, 65.1 ) - ( 75.6, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_159_ net:_160_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 73.5, 67.2 ) - ( 75.6, 69.3) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_160_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 69.3 ) - ( 75.6, 71.4) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_165_ net:_376_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 73.5, 71.4 ) - ( 75.6, 73.5) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_376_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 73.5 ) - ( 75.6, 75.6) on Layer - -violation type: Vertical congestion - srcs: net:_245_ net:_376_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 75.6 ) - ( 75.6, 77.7) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_376_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 81.9 ) - ( 75.6, 84) on Layer - -violation type: Vertical congestion - srcs: net:clk net:net16 + srcs: net:clk net:_165_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 73.5, 86.1 ) - ( 75.6, 88.2) on Layer - + bbox = ( 75.6, 31.5 ) - ( 77.7, 33.6) on Layer - violation type: Vertical congestion srcs: net:clk net:_032_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 35.7 ) - ( 77.7, 37.8) on Layer - violation type: Vertical congestion - srcs: net:_175_ net:_353_ + srcs: net:_102_ net:_136_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 46.2 ) - ( 77.7, 48.3) on Layer - + bbox = ( 75.6, 42 ) - ( 77.7, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_175_ net:_353_ + srcs: net:_136_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 48.3 ) - ( 77.7, 50.4) on Layer - + bbox = ( 75.6, 44.1 ) - ( 77.7, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_011_ net:_137_ + srcs: net:clk net:_011_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 52.5 ) - ( 77.7, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_065_ net:_121_ + srcs: net:clk net:_417_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 75.6, 54.6 ) - ( 77.7, 56.7) on Layer - violation type: Vertical congestion - srcs: net:clk net:_382_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 58.8 ) - ( 77.7, 60.9) on Layer - + srcs: net:clk net:_033_ net:_165_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 75.6, 56.7 ) - ( 77.7, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_110_ net:_391_ + srcs: net:clk net:_413_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 75.6, 77.7 ) - ( 77.7, 79.8) on Layer - + bbox = ( 75.6, 60.9 ) - ( 77.7, 63) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_165_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 35.7 ) - ( 79.8, 37.8) on Layer - + srcs: net:clk net:_249_ net:dpath.a_lt_b$in0\[0\] + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 75.6, 65.1 ) - ( 77.7, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_165_ net:dpath.a_lt_b$in0\[4\] + srcs: net:clk net:_110_ net:_249_ congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 77.7, 37.8 ) - ( 79.8, 39.9) on Layer - + bbox = ( 75.6, 67.2 ) - ( 77.7, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_010_ net:_120_ + srcs: net:_110_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 39.9 ) - ( 79.8, 42) on Layer - + bbox = ( 75.6, 69.3 ) - ( 77.7, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_120_ net:_396_ + srcs: net:_110_ net:_165_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 75.6, 73.5 ) - ( 77.7, 75.6) on Layer - +violation type: Vertical congestion + srcs: net:_110_ net:_253_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 75.6, 86.1 ) - ( 77.7, 88.2) on Layer - +violation type: Vertical congestion + srcs: net:_102_ net:_396_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 44.1 ) - ( 79.8, 46.2) on Layer - violation type: Vertical congestion @@ -4663,314 +4479,294 @@ violation type: Vertical congestion congestion information: capacity:1 usage:2 overflow:1 bbox = ( 77.7, 46.2 ) - ( 79.8, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_049_ net:_353_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 50.4 ) - ( 79.8, 52.5) on Layer - + srcs: net:_121_ net:_160_ net:_358_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 77.7, 48.3 ) - ( 79.8, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_398_ net:net45 + srcs: net:_049_ net:_121_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 60.9 ) - ( 79.8, 63) on Layer - + bbox = ( 77.7, 50.4 ) - ( 79.8, 52.5) on Layer - violation type: Vertical congestion - srcs: net:clk net:_159_ + srcs: net:_121_ net:_137_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 71.4 ) - ( 79.8, 73.5) on Layer - + bbox = ( 77.7, 52.5 ) - ( 79.8, 54.6) on Layer - violation type: Vertical congestion - srcs: net:clk net:_159_ + srcs: net:_065_ net:_121_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 73.5 ) - ( 79.8, 75.6) on Layer - + bbox = ( 77.7, 54.6 ) - ( 79.8, 56.7) on Layer - violation type: Vertical congestion - srcs: net:clk net:_159_ + srcs: net:_417_ net:dpath.a_lt_b$in0\[5\] congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 75.6 ) - ( 79.8, 77.7) on Layer - + bbox = ( 77.7, 56.7 ) - ( 79.8, 58.8) on Layer - violation type: Vertical congestion - srcs: net:clk net:_159_ + srcs: net:_417_ net:net49 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 77.7 ) - ( 79.8, 79.8) on Layer - + bbox = ( 77.7, 58.8 ) - ( 79.8, 60.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_159_ + srcs: net:req_msg[16] net:_160_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 77.7, 79.8 ) - ( 79.8, 81.9) on Layer - + bbox = ( 77.7, 88.2 ) - ( 79.8, 90.3) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_253_ + srcs: net:_120_ net:_396_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 39.9 ) - ( 81.9, 42) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_396_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 42 ) - ( 81.9, 44.1) on Layer - -violation type: Vertical congestion - srcs: net:clk net:dpath.a_lt_b$in1\[5\] + srcs: net:_160_ net:dpath.a_lt_b$in1\[5\] congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 52.5 ) - ( 81.9, 54.6) on Layer - violation type: Vertical congestion - srcs: net:clk net:_353_ - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 56.7 ) - ( 81.9, 58.8) on Layer - -violation type: Vertical congestion - srcs: net:clk net:_353_ + srcs: net:_159_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 58.8 ) - ( 81.9, 60.9) on Layer - violation type: Vertical congestion - srcs: net:clk net:_353_ + srcs: net:_159_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 60.9 ) - ( 81.9, 63) on Layer - violation type: Vertical congestion - srcs: net:clk net:_353_ + srcs: net:_159_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 63 ) - ( 81.9, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_160_ net:_353_ - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_159_ net:_160_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 65.1 ) - ( 81.9, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_353_ + srcs: net:_159_ net:_160_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 67.2 ) - ( 81.9, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_353_ + srcs: net:_160_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 79.8, 69.3 ) - ( 81.9, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:net30 + srcs: net:_159_ net:_160_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 79.8, 77.7 ) - ( 81.9, 79.8) on Layer - +violation type: Vertical congestion + srcs: net:_159_ net:_372_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 79.8, 81.9 ) - ( 81.9, 84) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:_249_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 81.9, 35.7 ) - ( 84, 37.8) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:_249_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 81.9, 37.8 ) - ( 84, 39.9) on Layer - +violation type: Vertical congestion + srcs: net:_165_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 79.8, 75.6 ) - ( 81.9, 77.7) on Layer - + bbox = ( 81.9, 39.9 ) - ( 84, 42) on Layer - +violation type: Vertical congestion + srcs: net:_120_ net:_165_ net:_377_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 81.9, 42 ) - ( 84, 44.1) on Layer - +violation type: Vertical congestion + srcs: net:_120_ net:_165_ net:_377_ + congestion information: capacity:1 usage:3 overflow:2 + bbox = ( 81.9, 44.1 ) - ( 84, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_396_ net:net27 + srcs: net:_165_ net:_415_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 81.9, 12.6 ) - ( 84, 14.7) on Layer - + bbox = ( 81.9, 46.2 ) - ( 84, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_395_ + srcs: net:_395_ net:_415_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 81.9, 48.3 ) - ( 84, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:net28 + srcs: net:_165_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 81.9, 50.4 ) - ( 84, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:net28 + srcs: net:_165_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 81.9, 52.5 ) - ( 84, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:net28 + srcs: net:_165_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 81.9, 54.6 ) - ( 84, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:net45 + srcs: net:_353_ net:_382_ + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 81.9, 60.9 ) - ( 84, 63) on Layer - +violation type: Vertical congestion + srcs: net:_249_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 81.9, 63 ) - ( 84, 65.1) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:net45 + srcs: net:_249_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 81.9, 65.1 ) - ( 84, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_253_ net:net45 - congestion information: capacity:1 usage:3 overflow:2 + srcs: net:_249_ net:_353_ + congestion information: capacity:1 usage:2 overflow:1 bbox = ( 81.9, 67.2 ) - ( 84, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_253_ + srcs: net:_159_ net:_353_ congestion information: capacity:1 usage:2 overflow:1 bbox = ( 81.9, 69.3 ) - ( 84, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_253_ + srcs: net:_159_ net:_245_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 81.9, 73.5 ) - ( 84, 75.6) on Layer - + bbox = ( 81.9, 71.4 ) - ( 84, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_253_ net:_391_ + srcs: net:_159_ net:net30 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 81.9, 75.6 ) - ( 84, 77.7) on Layer - violation type: Vertical congestion - srcs: net:req_msg[31] net:_253_ + srcs: net:net10 net:net40 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 81.9, 88.2 ) - ( 84, 90.3) on Layer - + bbox = ( 84, 12.6 ) - ( 86.1, 14.7) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:net45 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 84, 71.4 ) - ( 86.1, 73.5) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:net47 + srcs: net:_165_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 39.9 ) - ( 88.2, 42) on Layer - + bbox = ( 84, 48.3 ) - ( 86.1, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:net47 + srcs: net:_249_ net:_253_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 42 ) - ( 88.2, 44.1) on Layer - + bbox = ( 84, 54.6 ) - ( 86.1, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_165_ net:_377_ net:net47 + srcs: net:_165_ net:_253_ net:net49 congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 86.1, 44.1 ) - ( 88.2, 46.2) on Layer - + bbox = ( 84, 56.7 ) - ( 86.1, 58.8) on Layer - violation type: Vertical congestion - srcs: net:req_msg[24] net:_165_ + srcs: net:_249_ net:net47 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 46.2 ) - ( 88.2, 48.3) on Layer - -violation type: Vertical congestion - srcs: net:_160_ net:_165_ net:_385_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 86.1, 48.3 ) - ( 88.2, 50.4) on Layer - + bbox = ( 86.1, 42 ) - ( 88.2, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_165_ + srcs: net:_165_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 50.4 ) - ( 88.2, 52.5) on Layer - + bbox = ( 86.1, 58.8 ) - ( 88.2, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_165_ + srcs: net:_245_ net:net45 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 52.5 ) - ( 88.2, 54.6) on Layer - -violation type: Vertical congestion - srcs: net:req_msg[4] net:_160_ net:_165_ net:_245_ - congestion information: capacity:1 usage:4 overflow:3 - bbox = ( 86.1, 54.6 ) - ( 88.2, 56.7) on Layer - + bbox = ( 86.1, 67.2 ) - ( 88.2, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_165_ net:_245_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 86.1, 56.7 ) - ( 88.2, 58.8) on Layer - + srcs: net:_245_ net:net45 + congestion information: capacity:1 usage:2 overflow:1 + bbox = ( 86.1, 69.3 ) - ( 88.2, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_165_ + srcs: net:_159_ net:net15 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 58.8 ) - ( 88.2, 60.9) on Layer - + bbox = ( 88.2, 39.9 ) - ( 90.3, 42) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_165_ + srcs: net:_159_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 60.9 ) - ( 88.2, 63) on Layer - + bbox = ( 88.2, 46.2 ) - ( 90.3, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_160_ net:_165_ + srcs: net:_159_ net:_249_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 86.1, 63 ) - ( 88.2, 65.1) on Layer - + bbox = ( 88.2, 48.3 ) - ( 90.3, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_245_ net:_385_ + srcs: net:_159_ net:_249_ net:net28 congestion information: capacity:1 usage:3 overflow:2 bbox = ( 88.2, 50.4 ) - ( 90.3, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_245_ + srcs: net:_159_ net:net28 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 88.2, 52.5 ) - ( 90.3, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_249_ + srcs: net:_159_ net:net28 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 88.2, 56.7 ) - ( 90.3, 58.8) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_245_ net:_249_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 88.2, 58.8 ) - ( 90.3, 60.9) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_249_ net:net11 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 88.2, 60.9 ) - ( 90.3, 63) on Layer - + bbox = ( 88.2, 54.6 ) - ( 90.3, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_249_ + srcs: net:_165_ net:net11 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 88.2, 63 ) - ( 90.3, 65.1) on Layer - + bbox = ( 88.2, 60.9 ) - ( 90.3, 63) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:net25 + srcs: net:_165_ net:net25 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 88.2, 65.1 ) - ( 90.3, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:net32 - congestion information: capacity:1 usage:2 overflow:1 + srcs: net:_165_ net:net25 net:net32 + congestion information: capacity:1 usage:3 overflow:2 bbox = ( 88.2, 67.2 ) - ( 90.3, 69.3) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_249_ + srcs: net:_165_ net:net25 congestion information: capacity:1 usage:2 overflow:1 bbox = ( 88.2, 69.3 ) - ( 90.3, 71.4) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_249_ net:net25 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 88.2, 71.4 ) - ( 90.3, 73.5) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:net25 - congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 88.2, 73.5 ) - ( 90.3, 75.6) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:net25 + srcs: net:_165_ net:net25 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 88.2, 75.6 ) - ( 90.3, 77.7) on Layer - + bbox = ( 88.2, 71.4 ) - ( 90.3, 73.5) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:net49 + srcs: net:_159_ net:net49 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 35.7 ) - ( 92.4, 37.8) on Layer - + bbox = ( 90.3, 42 ) - ( 92.4, 44.1) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:net49 + srcs: net:_159_ net:net49 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 37.8 ) - ( 92.4, 39.9) on Layer - + bbox = ( 90.3, 44.1 ) - ( 92.4, 46.2) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:net49 + srcs: net:_372_ net:net49 congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 39.9 ) - ( 92.4, 42) on Layer - + bbox = ( 90.3, 54.6 ) - ( 92.4, 56.7) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:net49 + srcs: net:_245_ net:_372_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 42 ) - ( 92.4, 44.1) on Layer - + bbox = ( 90.3, 65.1 ) - ( 92.4, 67.2) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_249_ + srcs: net:_372_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 44.1 ) - ( 92.4, 46.2) on Layer - + bbox = ( 92.4, 48.3 ) - ( 94.5, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_249_ + srcs: net:_372_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 46.2 ) - ( 92.4, 48.3) on Layer - + bbox = ( 92.4, 50.4 ) - ( 94.5, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_249_ net:net49 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 90.3, 48.3 ) - ( 92.4, 50.4) on Layer - -violation type: Vertical congestion - srcs: net:_249_ net:net49 + srcs: net:_372_ net:_385_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 50.4 ) - ( 92.4, 52.5) on Layer - + bbox = ( 92.4, 52.5 ) - ( 94.5, 54.6) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:net49 + srcs: net:_245_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 52.5 ) - ( 92.4, 54.6) on Layer - + bbox = ( 94.5, 37.8 ) - ( 96.6, 39.9) on Layer - violation type: Vertical congestion - srcs: net:_249_ net:_388_ + srcs: net:_245_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 54.6 ) - ( 92.4, 56.7) on Layer - + bbox = ( 94.5, 39.9 ) - ( 96.6, 42) on Layer - violation type: Vertical congestion srcs: net:_245_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 60.9 ) - ( 92.4, 63) on Layer - + bbox = ( 94.5, 42 ) - ( 96.6, 44.1) on Layer - violation type: Vertical congestion srcs: net:_245_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 63 ) - ( 92.4, 65.1) on Layer - + bbox = ( 94.5, 44.1 ) - ( 96.6, 46.2) on Layer - violation type: Vertical congestion srcs: net:_245_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 65.1 ) - ( 92.4, 67.2) on Layer - + bbox = ( 94.5, 46.2 ) - ( 96.6, 48.3) on Layer - violation type: Vertical congestion - srcs: net:_388_ net:net25 + srcs: net:_245_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 67.2 ) - ( 92.4, 69.3) on Layer - + bbox = ( 94.5, 48.3 ) - ( 96.6, 50.4) on Layer - violation type: Vertical congestion - srcs: net:_388_ net:net25 + srcs: net:_245_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 90.3, 69.3 ) - ( 92.4, 71.4) on Layer - + bbox = ( 94.5, 50.4 ) - ( 96.6, 52.5) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:_388_ + srcs: net:_245_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 92.4, 31.5 ) - ( 94.5, 33.6) on Layer - + bbox = ( 94.5, 52.5 ) - ( 96.6, 54.6) on Layer - violation type: Vertical congestion srcs: net:_245_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 92.4, 37.8 ) - ( 94.5, 39.9) on Layer - + bbox = ( 94.5, 54.6 ) - ( 96.6, 56.7) on Layer - violation type: Vertical congestion srcs: net:_245_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 92.4, 39.9 ) - ( 94.5, 42) on Layer - -violation type: Vertical congestion - srcs: net:_159_ net:_245_ net:_388_ - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 92.4, 42 ) - ( 94.5, 44.1) on Layer - + bbox = ( 94.5, 56.7 ) - ( 96.6, 58.8) on Layer - violation type: Vertical congestion - srcs: net:_159_ net:_388_ net:net49 - congestion information: capacity:1 usage:3 overflow:2 - bbox = ( 92.4, 44.1 ) - ( 94.5, 46.2) on Layer - -violation type: Vertical congestion - srcs: net:_388_ net:net49 + srcs: net:_245_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 92.4, 46.2 ) - ( 94.5, 48.3) on Layer - + bbox = ( 94.5, 58.8 ) - ( 96.6, 60.9) on Layer - violation type: Vertical congestion - srcs: net:_372_ net:_388_ + srcs: net:_245_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 92.4, 52.5 ) - ( 94.5, 54.6) on Layer - + bbox = ( 94.5, 60.9 ) - ( 96.6, 63) on Layer - violation type: Vertical congestion - srcs: net:_245_ net:_372_ + srcs: net:_245_ net:_388_ congestion information: capacity:1 usage:2 overflow:1 - bbox = ( 92.4, 67.2 ) - ( 94.5, 69.3) on Layer - + bbox = ( 94.5, 63 ) - ( 96.6, 65.1) on Layer - diff --git a/src/grt/test/critical_nets_percentage.guideok b/src/grt/test/critical_nets_percentage.guideok index 18f36077313..8b58349b9d8 100644 --- a/src/grt/test/critical_nets_percentage.guideok +++ b/src/grt/test/critical_nets_percentage.guideok @@ -755,15 +755,13 @@ _083_ 230400 136800 237600 144000 li1 230400 136800 237600 144000 met1 230400 129600 237600 144000 met2 +230400 129600 237600 136800 met1 216000 122400 223200 129600 li1 216000 122400 237600 129600 met1 230400 122400 237600 129600 met1 230400 122400 237600 136800 met2 223200 129600 230400 136800 li1 -223200 129600 230400 136800 met1 -223200 129600 230400 136800 met2 -223200 129600 237600 136800 met3 -230400 129600 237600 136800 met2 +223200 129600 237600 136800 met1 ) _084_ ( @@ -849,15 +847,15 @@ _090_ ) _091_ ( -223200 144000 230400 151200 li1 -223200 144000 244800 151200 met1 -237600 144000 244800 151200 met1 -237600 129600 244800 151200 met2 -237600 129600 244800 136800 met1 -223200 129600 244800 136800 met1 -223200 129600 230400 136800 li1 216000 144000 223200 151200 li1 +208800 144000 223200 151200 met1 +208800 144000 216000 151200 met1 +208800 129600 216000 151200 met2 +208800 129600 216000 136800 met1 +208800 129600 230400 136800 met1 +223200 129600 230400 136800 li1 216000 144000 230400 151200 met1 +223200 144000 230400 151200 li1 ) _092_ ( @@ -887,10 +885,10 @@ _094_ 172800 115200 180000 122400 li1 172800 115200 180000 122400 met1 172800 115200 180000 122400 met2 -172800 115200 216000 122400 met3 -208800 115200 216000 122400 met2 -208800 115200 216000 122400 met1 -208800 115200 223200 122400 met1 +172800 115200 201600 122400 met3 +194400 115200 201600 122400 met2 +194400 115200 201600 122400 met1 +194400 115200 223200 122400 met1 216000 115200 223200 122400 li1 ) _095_ @@ -1310,21 +1308,21 @@ _137_ ) _138_ ( -208800 136800 216000 144000 met1 -208800 129600 216000 144000 met2 -208800 129600 216000 136800 met1 -208800 129600 230400 136800 met1 -223200 129600 230400 136800 li1 -208800 136800 216000 151200 met2 -208800 144000 216000 151200 met2 -208800 144000 237600 151200 met3 -230400 144000 237600 151200 met2 -230400 136800 237600 151200 met2 230400 136800 237600 144000 met1 +230400 136800 237600 144000 met2 +230400 136800 237600 144000 met3 +230400 129600 237600 144000 met4 +230400 129600 237600 136800 met4 +223200 129600 237600 136800 met5 +223200 129600 230400 136800 met4 +223200 129600 230400 136800 met3 +223200 129600 230400 136800 met2 +223200 129600 230400 136800 met1 +223200 129600 230400 136800 li1 230400 136800 244800 144000 met1 237600 136800 244800 144000 li1 172800 136800 180000 144000 li1 -172800 136800 216000 144000 met1 +172800 136800 237600 144000 met1 ) _139_ ( @@ -1434,10 +1432,10 @@ _149_ 187200 172800 194400 208800 met2 187200 172800 194400 180000 met2 187200 172800 194400 180000 met3 -187200 165600 194400 180000 met4 -187200 165600 194400 172800 met3 -187200 165600 194400 172800 met2 -187200 151200 194400 172800 met2 +187200 158400 194400 180000 met4 +187200 158400 194400 165600 met3 +187200 158400 194400 165600 met2 +187200 151200 194400 165600 met2 187200 151200 194400 158400 met1 187200 151200 194400 158400 li1 ) @@ -1447,11 +1445,11 @@ _150_ 129600 136800 136800 144000 met1 129600 136800 136800 151200 met2 129600 144000 136800 151200 met1 -129600 144000 172800 151200 met1 -165600 144000 172800 151200 met1 -165600 144000 172800 158400 met2 -165600 151200 172800 158400 met1 -165600 151200 194400 158400 met1 +129600 144000 180000 151200 met1 +172800 144000 180000 151200 met1 +172800 144000 180000 158400 met2 +172800 151200 180000 158400 met1 +172800 151200 194400 158400 met1 187200 151200 194400 158400 li1 ) _151_ @@ -1481,13 +1479,10 @@ _154_ ) _155_ ( -165600 72000 172800 79200 li1 -165600 72000 172800 79200 met1 -165600 72000 172800 79200 met2 -165600 72000 172800 79200 met3 -165600 72000 172800 79200 met4 -165600 72000 230400 79200 met5 -223200 72000 230400 79200 met4 +165600 86400 172800 93600 met4 +165600 86400 230400 93600 met5 +223200 86400 230400 93600 met4 +223200 72000 230400 93600 met4 223200 72000 230400 79200 met3 223200 72000 230400 79200 met2 223200 72000 230400 79200 met1 @@ -1558,9 +1553,15 @@ _155_ 165600 93600 172800 100800 met1 165600 93600 172800 100800 met2 165600 93600 172800 100800 met3 -165600 72000 172800 100800 met4 +165600 86400 172800 100800 met4 115200 180000 129600 187200 met1 144000 93600 172800 100800 met1 +165600 79200 172800 93600 met4 +165600 79200 172800 86400 met3 +165600 79200 172800 86400 met2 +165600 72000 172800 86400 met2 +165600 72000 172800 79200 met1 +165600 72000 172800 79200 li1 ) _156_ ( @@ -1697,22 +1698,20 @@ _166_ 187200 108000 194400 115200 met1 187200 108000 194400 122400 met2 187200 115200 194400 122400 met1 +187200 115200 194400 144000 met2 +187200 136800 194400 144000 met1 +172800 136800 194400 144000 met1 +172800 136800 180000 144000 met1 +172800 136800 180000 165600 met2 +172800 158400 180000 165600 met1 +172800 158400 194400 165600 met1 +187200 158400 194400 165600 met1 +187200 158400 194400 172800 met2 +187200 165600 194400 172800 met1 +187200 165600 201600 172800 met1 +194400 165600 201600 172800 li1 187200 115200 201600 122400 met1 194400 115200 201600 122400 li1 -194400 115200 201600 122400 met1 -194400 115200 201600 122400 met2 -194400 115200 201600 122400 met3 -194400 115200 201600 144000 met4 -194400 136800 201600 144000 met4 -194400 136800 208800 144000 met5 -201600 136800 208800 144000 met4 -201600 136800 208800 158400 met4 -201600 151200 208800 158400 met3 -201600 151200 208800 158400 met2 -201600 151200 208800 172800 met2 -201600 165600 208800 172800 met1 -194400 165600 208800 172800 met1 -194400 165600 201600 172800 li1 ) _167_ ( @@ -1871,12 +1870,6 @@ _172_ 201600 64800 230400 72000 met1 223200 64800 230400 72000 li1 180000 64800 208800 72000 met1 -100800 158400 108000 165600 li1 -100800 158400 108000 165600 met1 -100800 158400 108000 165600 met2 -100800 158400 108000 165600 met3 -100800 158400 108000 187200 met4 -100800 180000 108000 187200 met3 194400 187200 223200 194400 met3 216000 187200 223200 194400 met2 216000 187200 223200 208800 met2 @@ -1884,10 +1877,7 @@ _172_ 216000 201600 223200 208800 li1 144000 122400 151200 129600 li1 144000 122400 201600 129600 met1 -122400 86400 165600 93600 met3 -158400 86400 165600 93600 met2 -158400 86400 165600 93600 met1 -158400 86400 172800 93600 met1 +122400 86400 172800 93600 met1 165600 86400 172800 93600 li1 194400 122400 201600 129600 met1 194400 122400 201600 129600 met2 @@ -1915,10 +1905,6 @@ _172_ 144000 180000 151200 187200 met2 144000 180000 172800 187200 met3 165600 180000 172800 187200 met2 -108000 180000 115200 187200 li1 -108000 180000 115200 187200 met1 -108000 180000 115200 187200 met2 -100800 180000 115200 187200 met3 194400 158400 201600 187200 met4 194400 158400 201600 165600 met3 194400 158400 201600 165600 met2 @@ -1941,14 +1927,22 @@ _172_ 122400 100800 129600 108000 met3 122400 86400 129600 108000 met4 122400 86400 129600 93600 met3 +122400 86400 129600 93600 met2 +122400 86400 129600 93600 met1 223200 86400 237600 93600 met1 230400 86400 237600 93600 met1 230400 64800 237600 93600 met2 230400 64800 237600 72000 met1 223200 64800 237600 72000 met1 -100800 158400 129600 165600 met3 -122400 158400 129600 165600 met2 -122400 122400 129600 165600 met2 +100800 151200 108000 158400 li1 +100800 151200 108000 158400 met1 +100800 151200 108000 158400 met2 +100800 151200 108000 158400 met3 +100800 136800 108000 158400 met4 +100800 136800 108000 144000 met3 +100800 136800 129600 144000 met3 +122400 136800 129600 144000 met2 +122400 122400 129600 144000 met2 122400 122400 129600 129600 met1 122400 108000 129600 129600 met2 122400 79200 129600 93600 met4 @@ -1961,11 +1955,13 @@ _172_ 201600 72000 208800 79200 met1 194400 72000 208800 79200 met1 194400 72000 201600 79200 li1 -100800 151200 108000 165600 met4 -100800 151200 108000 158400 met3 -100800 151200 108000 158400 met2 -100800 151200 108000 158400 met1 -100800 151200 108000 158400 li1 +100800 158400 108000 165600 li1 +100800 158400 108000 165600 met1 +100800 158400 108000 165600 met2 +100800 158400 108000 165600 met3 +100800 158400 108000 187200 met4 +100800 180000 108000 187200 met3 +100800 180000 115200 187200 met3 194400 208800 201600 216000 met1 194400 208800 201600 216000 met2 194400 208800 201600 216000 met3 @@ -1976,6 +1972,7 @@ _172_ 115200 86400 122400 93600 met1 115200 86400 122400 93600 met2 115200 86400 129600 93600 met3 +100800 151200 108000 165600 met4 165600 172800 172800 187200 met2 165600 172800 172800 180000 met1 165600 172800 172800 180000 li1 @@ -1985,11 +1982,14 @@ _172_ 223200 129600 230400 136800 li1 194400 208800 223200 216000 met1 216000 208800 223200 216000 li1 -100800 180000 108000 223200 met4 -100800 216000 108000 223200 met3 -100800 216000 108000 223200 met2 -100800 216000 108000 223200 met1 -100800 216000 115200 223200 met1 +108000 180000 115200 187200 li1 +108000 180000 115200 187200 met1 +108000 180000 115200 187200 met2 +108000 180000 115200 187200 met3 +108000 180000 115200 223200 met4 +108000 216000 115200 223200 met3 +108000 216000 115200 223200 met2 +108000 216000 115200 223200 met1 108000 216000 115200 223200 li1 ) _174_ @@ -2190,10 +2190,12 @@ _201_ ) _202_ ( -151200 129600 223200 136800 met1 -216000 129600 223200 136800 met1 -216000 129600 223200 136800 met2 -216000 129600 230400 136800 met3 +151200 129600 158400 136800 met2 +151200 129600 158400 136800 met3 +151200 129600 158400 136800 met4 +151200 129600 230400 136800 met5 +223200 129600 230400 136800 met4 +223200 129600 230400 136800 met3 223200 129600 230400 136800 met2 223200 129600 230400 136800 met1 223200 129600 230400 136800 li1 @@ -2217,7 +2219,6 @@ _202_ 136800 165600 158400 172800 met1 151200 165600 158400 172800 met1 151200 129600 158400 172800 met2 -151200 129600 158400 136800 met1 115200 187200 122400 216000 met4 115200 187200 122400 194400 met3 115200 187200 122400 194400 met2 @@ -2274,23 +2275,16 @@ _203_ 122400 208800 129600 216000 met3 122400 208800 136800 216000 met3 129600 208800 136800 216000 met2 -180000 136800 187200 144000 met2 -180000 136800 201600 144000 met3 -194400 136800 201600 144000 met2 -194400 136800 201600 144000 met1 -194400 136800 201600 144000 li1 -180000 100800 216000 108000 met1 +165600 158400 187200 165600 met1 +180000 100800 230400 108000 met1 +223200 100800 230400 108000 li1 158400 100800 165600 108000 li1 158400 100800 187200 108000 met1 -208800 100800 216000 108000 met1 -208800 93600 216000 108000 met2 -208800 93600 216000 100800 met2 -208800 93600 216000 100800 met3 -208800 64800 216000 100800 met4 -208800 64800 216000 72000 met3 -208800 64800 230400 72000 met3 -223200 64800 230400 72000 met2 -223200 64800 230400 72000 met1 +223200 100800 252000 108000 met1 +244800 100800 252000 108000 met1 +244800 64800 252000 108000 met2 +244800 64800 252000 72000 met1 +223200 64800 252000 72000 met1 223200 64800 230400 72000 li1 129600 108000 136800 115200 li1 129600 108000 136800 115200 met1 @@ -2301,17 +2295,12 @@ _203_ 129600 158400 136800 165600 met1 129600 158400 136800 201600 met2 129600 194400 136800 201600 met1 -194400 136800 208800 144000 met3 -201600 136800 208800 144000 met2 -201600 136800 208800 151200 met2 -201600 144000 208800 151200 met1 -201600 144000 230400 151200 met1 +180000 158400 230400 165600 met1 216000 208800 223200 216000 li1 216000 208800 230400 216000 met1 223200 208800 230400 216000 met1 -223200 144000 230400 216000 met2 -223200 144000 230400 151200 met1 -223200 144000 230400 151200 li1 +223200 158400 230400 216000 met2 +223200 158400 230400 165600 met1 129600 208800 165600 216000 met3 158400 208800 165600 216000 met2 158400 208800 165600 216000 met1 @@ -2334,18 +2323,23 @@ _203_ 180000 115200 187200 144000 met2 180000 100800 187200 122400 met2 180000 100800 187200 108000 met1 -165600 158400 187200 165600 met1 -180000 158400 187200 165600 met1 -180000 136800 187200 165600 met2 +180000 136800 187200 144000 met2 +180000 136800 201600 144000 met3 +194400 136800 201600 144000 met2 +194400 136800 201600 144000 met1 +194400 136800 201600 144000 li1 129600 72000 136800 108000 met2 122400 72000 129600 79200 li1 122400 72000 136800 79200 met1 115200 194400 122400 201600 li1 115200 194400 136800 201600 met1 -208800 100800 230400 108000 met1 -223200 100800 230400 108000 li1 +223200 144000 230400 165600 met2 +223200 144000 230400 151200 met1 +223200 144000 230400 151200 li1 129600 158400 172800 165600 met1 129600 194400 136800 216000 met2 +180000 158400 187200 165600 met1 +180000 136800 187200 165600 met2 ) _205_ ( @@ -2544,9 +2538,10 @@ _231_ 194400 151200 201600 158400 met3 194400 151200 201600 165600 met4 194400 158400 201600 165600 met3 -194400 158400 230400 165600 met3 -223200 158400 230400 165600 met2 -223200 158400 230400 165600 met1 +194400 158400 223200 165600 met3 +216000 158400 223200 165600 met2 +216000 158400 223200 165600 met1 +216000 158400 230400 165600 met1 223200 158400 230400 165600 li1 ) _232_ @@ -2659,9 +2654,9 @@ _244_ 230400 79200 237600 86400 met4 230400 72000 237600 86400 met4 230400 72000 237600 79200 met3 -230400 72000 237600 79200 met2 -230400 72000 237600 79200 met1 -223200 72000 237600 79200 met1 +223200 72000 237600 79200 met3 +223200 72000 230400 79200 met2 +223200 72000 230400 79200 met1 223200 72000 230400 79200 li1 ) _245_ @@ -2826,15 +2821,15 @@ clknet_2_1__leaf_clk 194400 108000 208800 115200 met5 201600 108000 208800 115200 met4 201600 108000 208800 115200 met3 -172800 86400 180000 100800 met4 -172800 86400 180000 93600 met3 -172800 86400 180000 93600 met2 -172800 64800 180000 93600 met2 +172800 64800 180000 100800 met4 +172800 64800 180000 72000 met3 +172800 64800 180000 72000 met2 172800 64800 180000 72000 met1 172800 64800 180000 72000 li1 -201600 108000 208800 144000 met4 -201600 136800 208800 144000 met3 -201600 136800 208800 144000 met2 +201600 108000 208800 129600 met4 +201600 122400 208800 129600 met3 +201600 122400 208800 129600 met2 +201600 122400 208800 144000 met2 201600 136800 208800 144000 met1 201600 136800 223200 144000 met1 216000 136800 223200 144000 li1 @@ -2910,26 +2905,32 @@ clknet_2_3__leaf_clk 201600 194400 208800 201600 li1 201600 180000 216000 187200 met1 208800 180000 216000 187200 li1 -172800 172800 208800 180000 met3 -201600 194400 208800 216000 met2 -201600 208800 208800 216000 met1 -201600 208800 208800 216000 li1 172800 172800 180000 180000 li1 172800 172800 180000 180000 met1 172800 172800 180000 180000 met2 172800 172800 180000 180000 met3 +172800 158400 180000 180000 met4 +172800 158400 180000 165600 met3 +172800 158400 180000 165600 met2 +172800 158400 180000 165600 met1 +158400 158400 180000 165600 met1 +158400 158400 165600 165600 li1 +201600 194400 208800 216000 met2 +201600 208800 208800 216000 met1 +201600 208800 208800 216000 li1 172800 172800 180000 216000 met4 172800 208800 180000 216000 met3 172800 208800 180000 216000 met2 172800 208800 180000 216000 met1 172800 208800 180000 216000 li1 -172800 158400 180000 180000 met4 -172800 158400 180000 165600 met3 -172800 158400 180000 165600 met2 -172800 158400 180000 165600 met1 -172800 151200 180000 165600 met2 -172800 151200 180000 158400 met1 -172800 151200 201600 158400 met1 +172800 172800 208800 180000 met3 +201600 172800 208800 180000 li1 +201600 172800 208800 180000 met1 +201600 172800 208800 180000 met2 +201600 172800 208800 180000 met3 +201600 144000 208800 180000 met4 +201600 144000 208800 151200 met3 +194400 144000 208800 151200 met3 194400 144000 223200 151200 met1 216000 144000 223200 151200 li1 201600 194400 216000 201600 met1 @@ -2939,12 +2940,6 @@ clknet_2_3__leaf_clk 208800 201600 216000 208800 li1 187200 144000 201600 151200 met1 187200 144000 194400 151200 li1 -158400 158400 165600 165600 li1 -158400 158400 180000 165600 met1 -201600 172800 208800 180000 li1 -201600 172800 208800 180000 met1 -201600 172800 208800 180000 met2 -201600 172800 208800 180000 met3 201600 172800 208800 187200 met4 201600 180000 208800 187200 met3 201600 180000 208800 187200 met2 @@ -3408,19 +3403,19 @@ dpath.a_lt_b$in1\[8\] ( 165600 172800 172800 180000 li1 165600 172800 187200 180000 met1 -180000 158400 208800 165600 met1 -201600 158400 208800 165600 met1 -201600 144000 208800 165600 met2 +180000 165600 208800 172800 met1 +201600 165600 208800 172800 met1 +201600 144000 208800 172800 met2 201600 144000 208800 151200 met1 201600 144000 208800 151200 li1 -180000 172800 187200 180000 li1 -180000 172800 187200 180000 met1 -180000 165600 187200 180000 met2 -180000 165600 187200 172800 met1 165600 158400 172800 165600 li1 165600 158400 187200 165600 met1 180000 158400 187200 165600 met1 180000 158400 187200 172800 met2 +180000 165600 187200 172800 met1 +180000 172800 187200 180000 li1 +180000 172800 187200 180000 met1 +180000 165600 187200 180000 met2 172800 165600 180000 172800 li1 172800 165600 187200 172800 met1 ) @@ -3584,13 +3579,13 @@ req_msg[11] ) req_msg[12] ( -194400 0 201600 57600 met2 -194400 50400 201600 57600 met2 -194400 50400 208800 57600 met3 -201600 50400 208800 57600 met2 -201600 50400 208800 79200 met2 -201600 72000 208800 79200 met1 -194400 72000 208800 79200 met1 +194400 0 201600 72000 met2 +194400 64800 201600 72000 met2 +194400 64800 201600 72000 met3 +194400 64800 201600 79200 met4 +194400 72000 201600 79200 met3 +194400 72000 201600 79200 met2 +194400 72000 201600 79200 met1 194400 72000 201600 79200 li1 ) req_msg[13] @@ -3608,11 +3603,11 @@ req_msg[14] ( 180000 64800 187200 72000 li1 180000 64800 187200 72000 met1 -180000 7200 187200 72000 met2 -180000 7200 187200 14400 met2 -180000 7200 194400 14400 met3 -187200 7200 194400 14400 met2 -187200 0 194400 14400 met2 +180000 0 187200 72000 met2 +180000 0 187200 7200 met1 +180000 0 194400 7200 met1 +187200 0 194400 7200 met1 +187200 0 194400 7200 met2 ) req_msg[15] ( @@ -3735,11 +3730,15 @@ req_msg[25] req_msg[26] ( 216000 136800 223200 144000 li1 -216000 136800 299960 144000 met1 -288000 136800 299960 144000 met1 -288000 129600 299960 144000 met2 -288000 129600 299960 136800 met2 -288000 129600 299960 136800 met3 +216000 136800 223200 144000 met1 +216000 136800 223200 144000 met2 +216000 136800 223200 144000 met3 +216000 136800 223200 144000 met4 +216000 136800 273600 144000 met5 +266400 136800 273600 144000 met4 +266400 129600 273600 144000 met4 +266400 129600 273600 136800 met3 +266400 129600 299960 136800 met3 ) req_msg[27] ( @@ -3776,13 +3775,13 @@ req_msg[2] ) req_msg[30] ( -165600 0 172800 72000 met2 -165600 64800 172800 72000 met2 -165600 64800 172800 72000 met3 -165600 64800 172800 79200 met4 -165600 72000 172800 79200 met3 -165600 72000 172800 79200 met2 -165600 72000 172800 79200 met1 +165600 0 172800 57600 met2 +165600 50400 172800 57600 met2 +165600 50400 180000 57600 met3 +172800 50400 180000 57600 met2 +172800 50400 180000 79200 met2 +172800 72000 180000 79200 met1 +165600 72000 180000 79200 met1 165600 72000 172800 79200 li1 ) req_msg[31] @@ -3900,25 +3899,14 @@ req_rdy 208800 108000 216000 115200 met2 208800 108000 216000 115200 met3 208800 108000 216000 136800 met4 -223200 86400 230400 93600 li1 -223200 86400 230400 93600 met1 -223200 86400 230400 93600 met2 -223200 86400 230400 93600 met3 -223200 72000 230400 93600 met4 -223200 72000 230400 79200 met3 -223200 72000 230400 79200 met2 -223200 72000 230400 79200 met1 -223200 72000 230400 79200 li1 +208800 129600 216000 136800 met3 +208800 129600 223200 136800 met3 +216000 129600 223200 136800 met2 +208800 72000 216000 79200 met3 +208800 72000 216000 93600 met4 +208800 86400 216000 93600 met3 165600 72000 172800 79200 li1 165600 72000 187200 79200 met1 -180000 72000 187200 79200 met1 -180000 72000 187200 79200 met2 -180000 72000 187200 79200 met3 -180000 64800 187200 79200 met4 -180000 64800 187200 72000 met3 -180000 64800 187200 72000 met2 -180000 64800 187200 72000 met1 -180000 64800 187200 72000 li1 144000 180000 187200 187200 met1 180000 180000 187200 187200 li1 100800 158400 108000 165600 li1 @@ -3935,26 +3923,20 @@ req_rdy 100800 216000 108000 223200 met1 100800 216000 115200 223200 met1 108000 216000 115200 223200 li1 -208800 129600 216000 136800 met3 -208800 129600 216000 136800 met4 -208800 129600 237600 136800 met5 -230400 129600 237600 136800 met4 -230400 129600 237600 136800 met3 +216000 129600 237600 136800 met3 230400 129600 237600 136800 met2 230400 129600 237600 136800 met1 230400 129600 237600 136800 li1 -208800 100800 230400 108000 met3 -223200 100800 230400 108000 met3 -223200 86400 230400 108000 met4 +208800 86400 216000 108000 met4 +208800 100800 216000 108000 met3 +208800 100800 216000 108000 met2 +208800 100800 216000 108000 met1 +208800 100800 216000 108000 li1 122400 86400 129600 115200 met2 122400 86400 129600 93600 met1 115200 86400 129600 93600 met1 115200 108000 129600 115200 met1 208800 100800 216000 115200 met4 -208800 100800 216000 108000 met3 -208800 100800 216000 108000 met2 -208800 100800 216000 108000 met1 -208800 100800 216000 108000 li1 194400 187200 208800 194400 met1 201600 187200 208800 194400 li1 108000 115200 115200 122400 li1 @@ -3970,7 +3952,12 @@ req_rdy 144000 172800 151200 180000 met2 144000 172800 151200 180000 met3 144000 122400 151200 180000 met4 -194400 72000 230400 79200 met3 +194400 72000 216000 79200 met3 +180000 64800 187200 79200 met4 +180000 64800 187200 72000 met3 +180000 64800 187200 72000 met2 +180000 64800 187200 72000 met1 +180000 64800 187200 72000 li1 50400 158400 57600 165600 li1 50400 158400 108000 165600 met1 21600 158400 28800 165600 met1 @@ -4006,15 +3993,16 @@ req_rdy 216000 165600 223200 172800 met1 216000 158400 223200 172800 met2 216000 129600 223200 144000 met2 -216000 129600 223200 136800 met2 -208800 129600 223200 136800 met3 194400 165600 201600 187200 met2 194400 165600 201600 172800 met1 194400 165600 201600 172800 li1 194400 194400 216000 201600 met1 -180000 64800 201600 72000 met3 -194400 64800 201600 72000 met3 -194400 64800 201600 79200 met4 +180000 72000 187200 79200 met1 +180000 72000 187200 79200 met2 +180000 72000 187200 79200 met3 +180000 72000 187200 79200 met4 +180000 72000 201600 79200 met5 +194400 72000 201600 79200 met4 194400 72000 201600 79200 met3 194400 72000 201600 79200 met2 194400 72000 201600 79200 met1 @@ -4034,6 +4022,15 @@ req_rdy 216000 208800 223200 216000 met2 216000 208800 223200 216000 met1 216000 208800 223200 216000 li1 +208800 86400 223200 93600 met3 +216000 86400 223200 93600 met2 +216000 86400 223200 93600 met1 +216000 86400 230400 93600 met1 +223200 86400 230400 93600 li1 +208800 72000 230400 79200 met3 +223200 72000 230400 79200 met2 +223200 72000 230400 79200 met1 +223200 72000 230400 79200 li1 ) req_val ( @@ -4077,10 +4074,10 @@ resp_msg[0] 108000 93600 115200 108000 met2 108000 93600 115200 100800 met2 108000 93600 115200 100800 met3 -108000 50400 115200 100800 met4 -108000 50400 115200 57600 met3 -108000 50400 115200 57600 met2 -108000 0 115200 57600 met2 +108000 21600 115200 100800 met4 +108000 21600 115200 28800 met3 +108000 21600 115200 28800 met2 +108000 0 115200 28800 met2 108000 108000 115200 115200 li1 108000 108000 115200 115200 met1 108000 108000 115200 115200 met2 diff --git a/src/grt/test/critical_nets_percentage.ok b/src/grt/test/critical_nets_percentage.ok index 5aac9527556..5df7ee92092 100644 --- a/src/grt/test/critical_nets_percentage.ok +++ b/src/grt/test/critical_nets_percentage.ok @@ -36,24 +36,24 @@ met5 Horizontal 3403 1640 51.81% --------------------------------------------------------------- [INFO GRT-0101] Running extra iterations to remove overflow. -[INFO GRT-0197] Via related to pin nodes: 2136 -[INFO GRT-0198] Via related Steiner nodes: 80 +[INFO GRT-0197] Via related to pin nodes: 2140 +[INFO GRT-0198] Via related Steiner nodes: 91 [INFO GRT-0199] Via filling finished. -[INFO GRT-0111] Final number of vias: 3022 -[INFO GRT-0112] Final usage 3D: 11368 +[INFO GRT-0111] Final number of vias: 3028 +[INFO GRT-0112] Final usage 3D: 11390 [INFO GRT-0096] Final congestion report: Layer Resource Demand Usage (%) Max H / Max V / Total Overflow --------------------------------------------------------------------------------------- li1 0 0 0.00% 0 / 0 / 0 met1 4924 760 15.43% 0 / 0 / 0 -met2 3360 836 24.88% 0 / 0 / 0 -met3 1720 324 18.84% 0 / 0 / 0 -met4 1680 222 13.21% 0 / 0 / 0 -met5 1640 160 9.76% 0 / 0 / 0 +met2 3360 832 24.76% 0 / 0 / 0 +met3 1720 311 18.08% 0 / 0 / 0 +met4 1680 227 13.51% 0 / 0 / 0 +met5 1640 176 10.73% 0 / 0 / 0 --------------------------------------------------------------------------------------- -Total 13324 2302 17.28% 0 / 0 / 0 +Total 13324 2306 17.31% 0 / 0 / 0 -[INFO GRT-0018] Total wirelength: 24177 um +[INFO GRT-0018] Total wirelength: 24199 um [INFO GRT-0014] Routed nets: 348 No differences found. diff --git a/src/grt/test/macro_obs_not_aligned.guideok b/src/grt/test/macro_obs_not_aligned.guideok index d175ea822d7..7f011b4a251 100644 --- a/src/grt/test/macro_obs_not_aligned.guideok +++ b/src/grt/test/macro_obs_not_aligned.guideok @@ -1,18 +1,17 @@ _012772_ ( 1497300 1559400 1504200 1566300 li1 -1497300 1559400 1731900 1566300 met1 -1725000 1559400 1731900 1566300 met1 -1725000 1559400 1731900 1911300 met2 +1497300 1559400 1504200 1566300 met1 +1497300 1552500 1504200 1566300 met2 +1497300 1552500 1504200 1559400 met1 +1497300 1552500 1731900 1559400 met1 +1725000 1552500 1731900 1559400 met1 +1725000 1552500 1731900 1911300 met2 1725000 1904400 1731900 1911300 met1 1725000 1904400 2525400 1911300 met1 2518500 1904400 2525400 1911300 met1 2518500 1904400 2525400 1911300 met2 -1725000 1559400 1738800 1566300 met1 -1731900 1559400 1738800 1566300 met1 -1731900 1552500 1738800 1566300 met2 -1731900 1552500 1738800 1559400 met1 -1731900 1552500 1745700 1559400 met1 +1725000 1552500 1745700 1559400 met1 1738800 1552500 1745700 1559400 met1 1738800 876300 1745700 1559400 met2 1738800 876300 1745700 883200 met1 diff --git a/src/grt/test/macro_obs_not_aligned.ok b/src/grt/test/macro_obs_not_aligned.ok index 2cf9c256ca6..22442133f72 100644 --- a/src/grt/test/macro_obs_not_aligned.ok +++ b/src/grt/test/macro_obs_not_aligned.ok @@ -34,23 +34,23 @@ met5 Horizontal 431286 196316 54.48% --------------------------------------------------------------- [INFO GRT-0101] Running extra iterations to remove overflow. -[INFO GRT-0197] Via related to pin nodes: 4 +[INFO GRT-0197] Via related to pin nodes: 5 [INFO GRT-0198] Via related Steiner nodes: 1 [INFO GRT-0199] Via filling finished. [INFO GRT-0111] Final number of vias: 10 -[INFO GRT-0112] Final usage 3D: 359 +[INFO GRT-0112] Final usage 3D: 360 [INFO GRT-0096] Final congestion report: Layer Resource Demand Usage (%) Max H / Max V / Total Overflow --------------------------------------------------------------------------------------- li1 0 0 0.00% 0 / 0 / 0 met1 1166898 180 0.02% 0 / 0 / 0 -met2 778506 149 0.02% 0 / 0 / 0 +met2 778506 150 0.02% 0 / 0 / 0 met3 583741 0 0.00% 0 / 0 / 0 met4 196216 0 0.00% 0 / 0 / 0 met5 196316 0 0.00% 0 / 0 / 0 --------------------------------------------------------------------------------------- -Total 2921677 329 0.01% 0 / 0 / 0 +Total 2921677 330 0.01% 0 / 0 / 0 [INFO GRT-0018] Total wirelength: 2325 um [INFO GRT-0014] Routed nets: 1 diff --git a/src/grt/test/overlapping_edges.guideok b/src/grt/test/overlapping_edges.guideok index a005085b8bb..b45c5d14824 100644 --- a/src/grt/test/overlapping_edges.guideok +++ b/src/grt/test/overlapping_edges.guideok @@ -16,10 +16,10 @@ _01454_ _01455_ ( 117300 255300 124200 262200 li1 -117300 255300 131100 262200 met1 -124200 255300 131100 262200 met1 -124200 255300 131100 269100 met2 -124200 262200 131100 269100 met1 +117300 255300 124200 262200 met1 +117300 255300 124200 269100 met2 +117300 262200 124200 269100 met1 +117300 262200 131100 269100 met1 124200 262200 131100 269100 li1 ) _01456_ @@ -718,10 +718,11 @@ _01561_ _01562_ ( 241500 151800 248400 158700 li1 -241500 151800 262200 158700 met1 -255300 151800 262200 158700 met1 -255300 151800 262200 165600 met2 -255300 158700 262200 165600 met1 +241500 151800 255300 158700 met1 +248400 151800 255300 158700 met1 +248400 151800 255300 165600 met2 +248400 158700 255300 165600 met1 +248400 158700 262200 165600 met1 255300 158700 262200 165600 li1 ) _01563_ @@ -1249,10 +1250,10 @@ _01641_ _01642_ ( 241500 241500 248400 248400 li1 -241500 241500 248400 248400 met1 -241500 234600 248400 248400 met2 -241500 234600 248400 241500 met1 -241500 234600 255300 241500 met1 +241500 241500 255300 248400 met1 +248400 241500 255300 248400 met1 +248400 234600 255300 248400 met2 +248400 234600 255300 241500 met1 248400 234600 255300 241500 li1 ) _01643_ @@ -1461,10 +1462,10 @@ _01673_ _01674_ ( 234600 220800 241500 227700 li1 -234600 220800 241500 227700 met1 -234600 213900 241500 227700 met2 -234600 213900 241500 220800 met1 -234600 213900 248400 220800 met1 +234600 220800 248400 227700 met1 +241500 220800 248400 227700 met1 +241500 213900 248400 227700 met2 +241500 213900 248400 220800 met1 241500 213900 248400 220800 li1 ) _01675_ @@ -1508,10 +1509,10 @@ _01681_ _01682_ ( 262200 207000 269100 213900 li1 -262200 207000 269100 213900 met1 -262200 200100 269100 213900 met2 -262200 200100 269100 207000 met1 -262200 200100 276000 207000 met1 +262200 207000 276000 213900 met1 +269100 207000 276000 213900 met1 +269100 200100 276000 213900 met2 +269100 200100 276000 207000 met1 269100 200100 276000 207000 li1 ) _01683_ @@ -1666,10 +1667,10 @@ _01704_ _01705_ ( 248400 138000 255300 144900 li1 -248400 138000 255300 144900 met1 -248400 138000 255300 151800 met2 -248400 144900 255300 151800 met1 -248400 144900 262200 151800 met1 +248400 138000 262200 144900 met1 +255300 138000 262200 144900 met1 +255300 138000 262200 151800 met2 +255300 144900 262200 151800 met1 255300 144900 262200 151800 li1 ) _01706_ @@ -1896,10 +1897,10 @@ _01740_ _01741_ ( 338100 69000 345000 75900 li1 -338100 69000 351900 75900 met1 -345000 69000 351900 75900 met1 -345000 69000 351900 82800 met2 -345000 75900 351900 82800 met1 +338100 69000 345000 75900 met1 +338100 69000 345000 82800 met2 +338100 75900 345000 82800 met1 +338100 75900 351900 82800 met1 345000 75900 351900 82800 li1 ) _01742_ @@ -2133,10 +2134,10 @@ _01778_ _01779_ ( 338100 200100 345000 207000 li1 -338100 200100 345000 207000 met1 -338100 193200 345000 207000 met2 -338100 193200 345000 200100 met1 -338100 193200 351900 200100 met1 +338100 200100 351900 207000 met1 +345000 200100 351900 207000 met1 +345000 193200 351900 207000 met2 +345000 193200 351900 200100 met1 345000 193200 351900 200100 li1 ) _01780_ @@ -2871,10 +2872,10 @@ _01891_ _01892_ ( 324300 117300 331200 124200 li1 -324300 117300 338100 124200 met1 -331200 117300 338100 124200 met1 -331200 117300 338100 131100 met2 -331200 124200 338100 131100 met1 +324300 117300 331200 124200 met1 +324300 117300 331200 131100 met2 +324300 124200 331200 131100 met1 +324300 124200 338100 131100 met1 331200 124200 338100 131100 li1 ) _01893_ @@ -3856,24 +3857,26 @@ _02147_ 117300 248400 124200 255300 li1 117300 248400 124200 255300 met1 117300 248400 124200 255300 met2 -117300 248400 186300 255300 met3 -179400 248400 186300 255300 met3 -179400 158700 186300 255300 met4 -179400 158700 186300 165600 met3 +117300 248400 193200 255300 met3 +186300 248400 193200 255300 met3 +186300 158700 193200 255300 met4 +186300 158700 193200 165600 met3 +179400 158700 193200 165600 met3 179400 158700 186300 165600 met2 179400 158700 186300 165600 met1 179400 55200 186300 62100 met1 179400 55200 186300 62100 met2 179400 55200 186300 62100 met3 -179400 55200 186300 165600 met4 +179400 55200 186300 96600 met4 +179400 89700 186300 96600 met3 +179400 89700 186300 96600 met2 +179400 89700 186300 165600 met2 55200 131100 62100 138000 li1 55200 131100 62100 138000 met1 -55200 131100 62100 138000 met2 -55200 131100 62100 138000 met3 -55200 69000 62100 138000 met4 -55200 69000 62100 75900 met3 -55200 69000 69000 75900 met3 -62100 69000 69000 75900 met2 +55200 69000 62100 138000 met2 +55200 69000 62100 75900 met1 +55200 69000 69000 75900 met1 +62100 69000 69000 75900 met1 62100 55200 69000 75900 met2 62100 55200 69000 62100 met1 62100 55200 69000 62100 li1 @@ -3960,7 +3963,12 @@ _02153_ ) _02154_ ( -55200 255300 138000 262200 met1 +55200 248400 62100 255300 li1 +55200 248400 131100 255300 met1 +124200 248400 131100 255300 met1 +124200 248400 131100 262200 met2 +124200 255300 131100 262200 met1 +124200 255300 138000 262200 met1 131100 255300 138000 262200 li1 55200 48300 62100 55200 li1 55200 48300 131100 55200 met1 @@ -3974,15 +3982,11 @@ _02154_ 131100 20700 138000 27600 li1 131100 20700 144900 27600 met1 138000 20700 144900 27600 li1 -0 255300 62100 262200 met1 -0 255300 6900 262200 met1 -0 48300 6900 262200 met2 +0 248400 62100 255300 met1 +0 248400 6900 255300 met1 +0 48300 6900 255300 met2 0 48300 6900 55200 met1 0 48300 62100 55200 met1 -55200 255300 62100 262200 met1 -55200 248400 62100 262200 met2 -55200 248400 62100 255300 met1 -55200 248400 62100 255300 li1 ) _02155_ ( @@ -4050,38 +4054,38 @@ _02159_ ) _02160_ ( -69000 75900 89700 82800 met1 +75900 220800 82800 227700 li1 +75900 220800 89700 227700 met1 +82800 220800 89700 227700 met1 +82800 220800 89700 234600 met2 +82800 227700 89700 234600 met1 +82800 227700 89700 234600 li1 +75900 75900 89700 82800 met1 82800 75900 89700 82800 met1 82800 62100 89700 82800 met2 82800 62100 89700 69000 met1 82800 62100 89700 69000 li1 -41400 124200 48300 131100 met1 -41400 75900 48300 131100 met2 -41400 75900 48300 82800 met2 -41400 75900 75900 82800 met3 -69000 75900 75900 82800 met2 -69000 75900 75900 82800 met1 -69000 75900 75900 82800 li1 -0 124200 48300 131100 met1 -0 124200 6900 131100 met1 -0 124200 6900 234600 met2 -0 227700 6900 234600 met1 -0 227700 89700 234600 met1 -41400 124200 75900 131100 met1 -69000 124200 75900 131100 met1 -69000 117300 75900 131100 met2 +75900 75900 82800 82800 met1 +75900 75900 82800 96600 met2 +75900 89700 82800 96600 met2 +62100 89700 82800 96600 met3 +62100 89700 69000 96600 met3 +62100 89700 69000 117300 met4 +62100 110400 69000 117300 met3 +62100 110400 69000 117300 met2 +62100 110400 69000 117300 met1 +0 110400 69000 117300 met1 +0 110400 6900 117300 met1 +0 110400 6900 227700 met2 +0 220800 6900 227700 met1 +0 220800 82800 227700 met1 +62100 110400 75900 117300 met1 +69000 110400 75900 117300 met1 +69000 110400 75900 124200 met2 69000 117300 75900 124200 met1 69000 117300 75900 124200 li1 -75900 220800 82800 227700 li1 -75900 220800 82800 227700 met1 -75900 220800 82800 227700 met2 -75900 220800 89700 227700 met3 -82800 220800 89700 227700 met3 -82800 220800 89700 234600 met4 -82800 227700 89700 234600 met3 -82800 227700 89700 234600 met2 -82800 227700 89700 234600 met1 -82800 227700 89700 234600 li1 +69000 75900 75900 82800 li1 +69000 75900 82800 82800 met1 ) _02161_ ( @@ -4167,10 +4171,10 @@ _02165_ _02166_ ( 55200 110400 62100 117300 li1 -55200 110400 69000 117300 met1 -62100 110400 69000 117300 met1 -62100 103500 69000 117300 met2 -62100 103500 69000 110400 met1 +55200 110400 62100 117300 met1 +55200 103500 62100 117300 met2 +55200 103500 62100 110400 met1 +55200 103500 69000 110400 met1 62100 103500 69000 110400 li1 ) _02167_ @@ -4183,11 +4187,13 @@ _02167_ 62100 207000 69000 213900 met3 62100 138000 69000 213900 met4 62100 138000 69000 144900 met3 -48300 138000 69000 144900 met3 -48300 138000 55200 144900 met2 -48300 62100 55200 144900 met2 -48300 62100 55200 69000 met1 -48300 62100 117300 69000 met1 +41400 138000 69000 144900 met3 +41400 138000 48300 144900 met3 +41400 62100 48300 144900 met4 +41400 62100 48300 69000 met3 +41400 62100 117300 69000 met3 +110400 62100 117300 69000 met2 +110400 62100 117300 69000 met1 110400 62100 117300 69000 li1 69000 227700 75900 234600 li1 69000 227700 75900 234600 met1 @@ -4245,8 +4251,8 @@ _02170_ 131100 234600 138000 241500 li1 131100 234600 138000 241500 met1 131100 227700 138000 241500 met2 -131100 227700 138000 234600 met2 -96600 227700 138000 234600 met3 +131100 227700 138000 234600 met1 +96600 227700 138000 234600 met1 62100 220800 75900 227700 met3 69000 220800 75900 227700 met2 69000 220800 75900 227700 met1 @@ -4301,28 +4307,28 @@ _02174_ ) _02175_ ( -55200 144900 62100 151800 li1 -55200 144900 62100 151800 met1 -55200 144900 62100 151800 met2 -55200 144900 62100 151800 met3 -55200 144900 62100 234600 met4 -55200 227700 62100 234600 met3 -55200 227700 69000 234600 met3 -62100 227700 69000 234600 met2 -62100 227700 69000 255300 met2 -62100 248400 69000 255300 met1 -62100 248400 89700 255300 met1 +55200 144900 69000 151800 met1 +62100 144900 69000 151800 met1 +62100 144900 69000 165600 met2 +62100 158700 69000 165600 met2 +62100 158700 69000 165600 met3 +62100 158700 69000 255300 met4 +62100 248400 69000 255300 met3 +62100 248400 89700 255300 met3 +82800 248400 89700 255300 met2 +82800 248400 89700 255300 met1 82800 248400 89700 255300 li1 179400 62100 193200 69000 met1 186300 62100 193200 69000 met1 186300 62100 193200 158700 met2 186300 151800 193200 158700 met1 186300 151800 193200 158700 li1 +55200 62100 62100 151800 met2 +55200 144900 62100 151800 met1 +55200 144900 62100 151800 li1 55200 62100 62100 69000 li1 55200 62100 62100 69000 met1 55200 62100 62100 69000 met2 -55200 62100 62100 69000 met3 -55200 62100 62100 151800 met4 55200 62100 186300 69000 met3 179400 62100 186300 69000 met2 179400 62100 186300 69000 met1 @@ -4483,15 +4489,16 @@ _02190_ ) _02191_ ( -55200 151800 62100 179400 met2 -55200 172500 62100 179400 met2 -55200 172500 69000 179400 met3 -62100 172500 69000 179400 met3 -62100 172500 69000 248400 met4 -62100 241500 69000 248400 met3 -62100 241500 103500 248400 met3 -96600 241500 103500 248400 met2 -96600 241500 103500 248400 met1 +55200 151800 62100 158700 met1 +55200 151800 62100 158700 met2 +55200 151800 62100 158700 met3 +55200 151800 62100 234600 met4 +55200 227700 62100 234600 met3 +55200 227700 69000 234600 met3 +62100 227700 69000 234600 met2 +62100 227700 69000 248400 met2 +62100 241500 69000 248400 met1 +62100 241500 103500 248400 met1 96600 241500 103500 248400 li1 186300 55200 193200 62100 met1 186300 55200 193200 62100 met2 @@ -4512,9 +4519,6 @@ _02191_ 55200 55200 62100 62100 met2 55200 55200 62100 62100 met3 55200 55200 62100 158700 met4 -55200 151800 62100 158700 met3 -55200 151800 62100 158700 met2 -55200 151800 62100 158700 met1 ) _02192_ ( @@ -4589,10 +4593,10 @@ _02198_ _02199_ ( 48300 131100 55200 138000 li1 -48300 131100 62100 138000 met1 -55200 131100 62100 138000 met1 -55200 124200 62100 138000 met2 -55200 124200 62100 131100 met1 +48300 131100 55200 138000 met1 +48300 124200 55200 138000 met2 +48300 124200 55200 131100 met1 +48300 124200 62100 131100 met1 55200 124200 62100 131100 li1 ) _02200_ @@ -4758,31 +4762,35 @@ _02215_ ) _02216_ ( -41400 179400 48300 248400 met2 -41400 241500 48300 248400 met1 -41400 241500 110400 248400 met1 +48300 179400 75900 186300 met1 +69000 179400 75900 186300 met1 +69000 179400 75900 213900 met2 +69000 207000 75900 213900 met2 +69000 207000 82800 213900 met3 +75900 207000 82800 213900 met3 +75900 207000 82800 248400 met4 +75900 241500 82800 248400 met3 +75900 241500 110400 248400 met3 +103500 241500 110400 248400 met2 +103500 241500 110400 248400 met1 103500 241500 110400 248400 li1 -179400 55200 186300 62100 met3 -179400 55200 186300 138000 met4 -179400 131100 186300 138000 met3 -179400 131100 186300 138000 met2 +179400 55200 186300 62100 met1 +179400 55200 186300 138000 met2 179400 131100 186300 138000 met1 179400 131100 186300 138000 li1 +41400 179400 48300 186300 li1 +41400 179400 55200 186300 met1 +69000 55200 186300 62100 met1 69000 55200 75900 62100 li1 69000 55200 75900 62100 met1 69000 55200 75900 62100 met2 -69000 55200 186300 62100 met3 -41400 179400 48300 186300 li1 -41400 179400 48300 186300 met1 -41400 179400 48300 186300 met2 -41400 179400 55200 186300 met3 -48300 179400 55200 186300 met3 -48300 55200 55200 186300 met4 -48300 55200 55200 62100 met3 48300 55200 75900 62100 met3 -179400 55200 193200 62100 met3 -186300 55200 193200 62100 met2 -186300 55200 193200 62100 met1 +48300 55200 55200 62100 met3 +48300 55200 55200 186300 met4 +48300 179400 55200 186300 met3 +48300 179400 55200 186300 met2 +48300 179400 55200 186300 met1 +179400 55200 193200 62100 met1 186300 55200 193200 62100 li1 ) _02217_ @@ -4909,11 +4917,11 @@ _02227_ 69000 200100 75900 220800 met2 69000 213900 75900 220800 met1 69000 213900 75900 220800 li1 -48300 82800 75900 89700 met1 -48300 82800 55200 89700 met1 -48300 82800 55200 207000 met2 -48300 200100 55200 207000 met1 -48300 200100 75900 207000 met1 +41400 82800 75900 89700 met1 +41400 82800 48300 89700 met1 +41400 82800 48300 207000 met2 +41400 200100 48300 207000 met1 +41400 200100 75900 207000 met1 69000 62100 75900 69000 li1 69000 62100 75900 69000 met1 69000 55200 75900 69000 met2 @@ -4963,11 +4971,9 @@ _02231_ 69000 193200 75900 207000 met2 69000 193200 75900 200100 met1 69000 193200 75900 200100 li1 -69000 179400 75900 200100 met2 -69000 179400 75900 186300 met2 -62100 179400 75900 186300 met3 -62100 179400 69000 186300 met2 -62100 172500 69000 186300 met2 +62100 193200 75900 200100 met1 +62100 193200 69000 200100 met1 +62100 172500 69000 200100 met2 62100 172500 69000 179400 met1 62100 172500 75900 179400 met1 69000 172500 75900 179400 li1 @@ -5011,13 +5017,16 @@ _02235_ 34500 241500 41400 248400 met1 34500 241500 103500 248400 met1 96600 241500 103500 248400 li1 -186300 55200 193200 62100 met1 186300 55200 193200 138000 met2 186300 131100 193200 138000 met1 186300 131100 193200 138000 li1 34500 179400 48300 186300 met1 41400 179400 48300 186300 li1 -75900 55200 193200 62100 met1 +75900 55200 82800 62100 li1 +75900 55200 82800 62100 met1 +75900 55200 82800 62100 met2 +75900 55200 193200 62100 met3 +186300 55200 193200 62100 met2 34500 179400 41400 186300 met1 34500 179400 41400 186300 met2 27600 179400 41400 186300 met3 @@ -5025,9 +5034,6 @@ _02235_ 27600 55200 34500 186300 met4 27600 55200 34500 62100 met3 27600 55200 82800 62100 met3 -75900 55200 82800 62100 met2 -75900 55200 82800 62100 met1 -75900 55200 82800 62100 li1 186300 48300 193200 55200 li1 186300 48300 193200 55200 met1 186300 48300 193200 62100 met2 @@ -5087,22 +5093,22 @@ _02241_ ) _02242_ ( +69000 172500 75900 179400 li1 +69000 172500 75900 179400 met1 69000 172500 75900 220800 met2 69000 213900 75900 220800 met1 69000 213900 75900 220800 li1 69000 82800 75900 89700 li1 69000 82800 75900 89700 met1 -69000 82800 75900 103500 met2 -69000 96600 75900 103500 met2 -69000 96600 82800 103500 met3 -75900 96600 82800 103500 met3 -75900 96600 82800 151800 met4 -75900 144900 82800 151800 met3 -69000 144900 82800 151800 met3 -69000 144900 75900 151800 met2 -69000 144900 75900 179400 met2 -69000 172500 75900 179400 met1 -69000 172500 75900 179400 li1 +69000 82800 75900 89700 met2 +55200 82800 75900 89700 met3 +55200 82800 62100 89700 met3 +55200 82800 62100 124200 met4 +55200 117300 62100 124200 met3 +55200 117300 62100 124200 met2 +55200 117300 62100 179400 met2 +55200 172500 62100 179400 met1 +55200 172500 75900 179400 met1 69000 55200 82800 62100 met1 75900 55200 82800 62100 li1 69000 55200 75900 89700 met2 @@ -5158,15 +5164,18 @@ _02248_ _02249_ ( 138000 248400 144900 255300 li1 -138000 248400 213900 255300 met1 -207000 248400 213900 255300 met1 -207000 34500 213900 255300 met2 -207000 34500 213900 41400 met1 -179400 34500 213900 41400 met1 +138000 248400 144900 255300 met1 +138000 248400 144900 255300 met2 +138000 248400 213900 255300 met3 +207000 248400 213900 255300 met3 +207000 34500 213900 255300 met4 +207000 34500 213900 41400 met3 +179400 34500 213900 41400 met3 +179400 34500 186300 41400 met2 +179400 34500 186300 41400 met1 179400 27600 186300 34500 li1 179400 27600 186300 34500 met1 179400 27600 186300 41400 met2 -179400 34500 186300 41400 met1 172500 34500 179400 41400 li1 172500 34500 186300 41400 met1 ) @@ -5179,19 +5188,25 @@ _02250_ 82800 34500 89700 48300 met2 82800 41400 89700 48300 met1 82800 41400 89700 48300 li1 -179400 131100 186300 138000 li1 -179400 131100 186300 138000 met1 -179400 131100 186300 138000 met2 -179400 131100 186300 138000 met3 -179400 131100 186300 200100 met4 -179400 193200 186300 200100 met3 -82800 193200 186300 200100 met3 +179400 124200 234600 131100 met1 +227700 124200 234600 131100 met1 +227700 124200 234600 193200 met2 +227700 186300 234600 193200 met2 +89700 186300 234600 193200 met3 +89700 186300 96600 193200 met3 +89700 186300 96600 200100 met4 +89700 193200 96600 200100 met3 +82800 193200 96600 200100 met3 82800 193200 89700 200100 met2 82800 193200 89700 200100 met1 82800 193200 89700 200100 li1 179400 34500 186300 41400 li1 179400 34500 186300 41400 met1 -179400 34500 186300 138000 met2 +179400 34500 186300 131100 met2 +179400 124200 186300 131100 met1 +179400 124200 186300 138000 met2 +179400 131100 186300 138000 met1 +179400 131100 186300 138000 li1 ) _02251_ ( @@ -5334,22 +5349,25 @@ _02264_ 193200 241500 200100 248400 met1 131100 241500 200100 248400 met1 131100 241500 138000 248400 li1 -179400 41400 186300 48300 li1 -179400 41400 186300 48300 met1 -179400 41400 186300 48300 met2 82800 41400 186300 48300 met3 82800 41400 89700 48300 met2 82800 41400 89700 48300 met1 82800 41400 89700 48300 li1 -179400 89700 213900 96600 met1 -207000 89700 213900 96600 met1 +179400 89700 213900 96600 met3 +207000 89700 213900 96600 met2 207000 89700 213900 207000 met2 207000 200100 213900 207000 met2 193200 200100 213900 207000 met3 193200 200100 200100 207000 met2 -179400 41400 186300 96600 met2 -179400 89700 186300 96600 met1 -179400 89700 186300 103500 met2 +179400 41400 186300 48300 li1 +179400 41400 186300 48300 met1 +179400 41400 186300 48300 met2 +179400 41400 186300 48300 met3 +179400 41400 186300 96600 met4 +179400 89700 186300 96600 met3 +179400 89700 186300 103500 met4 +179400 96600 186300 103500 met3 +179400 96600 186300 103500 met2 179400 96600 186300 103500 met1 179400 96600 186300 103500 li1 82800 200100 89700 207000 li1 @@ -5618,10 +5636,11 @@ _02287_ _02288_ ( 110400 55200 117300 62100 li1 -110400 55200 117300 62100 met1 -110400 48300 117300 62100 met2 -110400 48300 117300 55200 met1 -110400 48300 138000 55200 met1 +110400 55200 124200 62100 met1 +117300 55200 124200 62100 met1 +117300 48300 124200 62100 met2 +117300 48300 124200 55200 met1 +117300 48300 138000 55200 met1 131100 48300 138000 55200 li1 96600 55200 103500 62100 li1 96600 55200 103500 62100 met1 @@ -5702,23 +5721,14 @@ _02295_ _02296_ ( 131100 241500 138000 248400 li1 -131100 241500 138000 248400 met1 -131100 241500 138000 248400 met2 -131100 241500 207000 248400 met3 -200100 241500 207000 248400 met3 -200100 96600 207000 248400 met4 -200100 96600 207000 103500 met3 -172500 96600 207000 103500 met3 -172500 96600 179400 103500 met2 +0 241500 138000 248400 met1 +0 241500 6900 248400 met1 +0 89700 6900 248400 met2 +0 89700 6900 96600 met1 +0 89700 89700 96600 met1 +172500 41400 179400 103500 met2 172500 96600 179400 103500 met1 172500 96600 179400 103500 li1 -172500 41400 179400 103500 met2 -82800 89700 89700 96600 li1 -82800 89700 89700 96600 met1 -82800 89700 89700 96600 met2 -82800 89700 103500 96600 met3 -96600 89700 103500 96600 met3 -96600 41400 103500 96600 met4 96600 41400 103500 48300 met3 96600 34500 103500 48300 met4 96600 34500 103500 41400 met3 @@ -5729,6 +5739,12 @@ _02296_ 172500 41400 179400 48300 met2 172500 41400 179400 48300 met1 172500 41400 179400 48300 li1 +82800 89700 89700 96600 li1 +82800 89700 89700 96600 met1 +82800 89700 89700 96600 met2 +82800 89700 103500 96600 met3 +96600 89700 103500 96600 met3 +96600 41400 103500 96600 met4 ) _02297_ ( @@ -6189,10 +6205,10 @@ _02338_ 69000 75900 75900 82800 li1 69000 75900 75900 82800 met1 69000 75900 75900 82800 met2 -69000 75900 138000 82800 met3 -131100 75900 138000 82800 met2 -131100 75900 138000 82800 met1 -131100 75900 158700 82800 met1 +69000 75900 151800 82800 met3 +144900 75900 151800 82800 met2 +144900 75900 151800 82800 met1 +144900 75900 158700 82800 met1 151800 75900 158700 82800 li1 ) _02339_ @@ -6222,16 +6238,19 @@ _02341_ ( 20700 103500 34500 110400 met1 27600 103500 34500 110400 li1 -20700 124200 27600 131100 li1 -20700 124200 27600 131100 met1 20700 103500 27600 131100 met2 20700 103500 27600 110400 met1 20700 103500 27600 110400 li1 -20700 124200 34500 131100 met1 -27600 124200 34500 131100 met1 -27600 124200 34500 255300 met2 -27600 248400 34500 255300 met1 -27600 248400 55200 255300 met1 +20700 124200 27600 131100 li1 +20700 124200 27600 131100 met1 +20700 124200 27600 131100 met2 +20700 124200 34500 131100 met3 +27600 124200 34500 131100 met3 +27600 124200 34500 255300 met4 +27600 248400 34500 255300 met3 +27600 248400 55200 255300 met3 +48300 248400 55200 255300 met2 +48300 248400 55200 255300 met1 48300 248400 55200 255300 li1 48300 248400 62100 255300 met1 55200 248400 62100 255300 met1 @@ -6243,11 +6262,7 @@ _02342_ ( 48300 248400 55200 255300 li1 48300 248400 55200 255300 met1 -48300 248400 55200 255300 met2 -48300 248400 55200 255300 met3 -48300 193200 55200 255300 met4 -48300 193200 55200 200100 met3 -48300 193200 55200 200100 met2 +48300 193200 55200 255300 met2 48300 193200 55200 200100 met1 48300 193200 55200 200100 li1 48300 248400 62100 255300 met1 @@ -6257,10 +6272,10 @@ _02342_ 55200 75900 62100 89700 met2 55200 75900 62100 82800 met1 55200 75900 62100 82800 li1 -48300 89700 55200 200100 met4 -48300 89700 55200 96600 met3 -48300 89700 62100 96600 met3 -55200 89700 62100 96600 met2 +48300 89700 55200 200100 met2 +48300 89700 55200 96600 met1 +48300 89700 62100 96600 met1 +55200 89700 62100 96600 met1 55200 82800 62100 96600 met2 ) _02343_ @@ -6297,21 +6312,21 @@ _02344_ ) _02345_ ( -62100 172500 69000 179400 met1 -62100 172500 69000 186300 met2 -62100 179400 69000 186300 met1 -62100 179400 75900 186300 met1 +55200 172500 62100 179400 li1 +55200 172500 62100 179400 met1 +55200 172500 62100 186300 met2 +55200 179400 62100 186300 met1 +55200 179400 75900 186300 met1 69000 179400 75900 186300 li1 -62100 144900 69000 179400 met2 -62100 144900 69000 151800 met1 -62100 144900 69000 151800 li1 -62100 138000 69000 144900 li1 -62100 138000 69000 144900 met1 -62100 138000 69000 151800 met2 +55200 144900 62100 179400 met2 +55200 144900 62100 151800 met1 55200 138000 62100 144900 li1 +55200 138000 62100 144900 met1 +55200 138000 62100 151800 met2 +55200 144900 69000 151800 met1 +62100 144900 69000 151800 li1 55200 138000 69000 144900 met1 -55200 172500 62100 179400 li1 -55200 172500 69000 179400 met1 +62100 138000 69000 144900 li1 ) _02346_ ( @@ -6553,10 +6568,10 @@ _02361_ _02362_ ( 41400 179400 48300 186300 li1 -41400 179400 48300 186300 met1 -41400 172500 48300 186300 met2 -41400 172500 48300 179400 met1 -41400 172500 55200 179400 met1 +41400 179400 55200 186300 met1 +48300 179400 55200 186300 met1 +48300 172500 55200 186300 met2 +48300 172500 55200 179400 met1 48300 172500 55200 179400 li1 ) _02363_ @@ -6596,9 +6611,10 @@ _02364_ 62100 75900 69000 82800 li1 62100 75900 69000 82800 met1 62100 75900 69000 82800 met2 -62100 75900 158700 82800 met3 -151800 75900 158700 82800 met2 -151800 75900 158700 82800 met1 +62100 75900 131100 82800 met3 +124200 75900 131100 82800 met2 +124200 75900 131100 82800 met1 +124200 75900 158700 82800 met1 151800 75900 158700 82800 li1 ) _02365_ @@ -6933,18 +6949,19 @@ _02395_ _02396_ ( 48300 179400 55200 186300 li1 -48300 179400 69000 186300 met1 +48300 179400 62100 186300 met1 48300 200100 55200 207000 li1 -48300 200100 69000 207000 met1 -62100 200100 69000 207000 met1 -62100 193200 69000 207000 met2 -62100 193200 69000 200100 met1 -62100 193200 69000 200100 li1 -62100 179400 69000 186300 li1 -62100 179400 69000 186300 met1 -62100 179400 69000 200100 met2 +48300 200100 62100 207000 met1 +55200 200100 62100 207000 met1 +55200 193200 62100 207000 met2 +55200 193200 62100 200100 met1 55200 193200 62100 200100 li1 +55200 179400 62100 186300 met1 +55200 179400 62100 200100 met2 +55200 179400 69000 186300 met1 +62100 179400 69000 186300 li1 55200 193200 69000 200100 met1 +62100 193200 69000 200100 li1 ) _02397_ ( @@ -7274,10 +7291,11 @@ _02427_ _02428_ ( 27600 200100 34500 207000 li1 -27600 200100 48300 207000 met1 -41400 200100 48300 207000 met1 -41400 193200 48300 207000 met2 -41400 193200 48300 200100 met1 +27600 200100 41400 207000 met1 +34500 200100 41400 207000 met1 +34500 193200 41400 207000 met2 +34500 193200 41400 200100 met1 +34500 193200 48300 200100 met1 41400 193200 48300 200100 li1 ) _02429_ @@ -7798,28 +7816,24 @@ _02484_ 82800 200100 89700 207000 li1 82800 96600 89700 103500 li1 82800 96600 89700 103500 met1 -82800 96600 89700 138000 met2 -82800 131100 89700 138000 met2 -82800 131100 89700 138000 met3 -82800 131100 89700 179400 met4 -82800 172500 89700 179400 met3 -75900 172500 89700 179400 met3 -75900 172500 82800 179400 met2 -75900 172500 82800 186300 met2 -75900 179400 82800 186300 met1 -75900 179400 89700 186300 met1 -82800 179400 89700 186300 met1 -82800 179400 89700 200100 met2 +82800 96600 89700 103500 met2 +82800 96600 96600 103500 met3 +89700 96600 96600 103500 met3 +89700 96600 96600 193200 met4 +89700 186300 96600 193200 met3 +82800 186300 96600 193200 met3 +82800 186300 89700 193200 met2 +82800 186300 89700 200100 met2 82800 193200 89700 200100 met1 82800 193200 89700 200100 li1 ) _02485_ ( 27600 200100 34500 207000 li1 -27600 200100 34500 207000 met1 -27600 193200 34500 207000 met2 -27600 193200 34500 200100 met1 -27600 193200 89700 200100 met1 +27600 200100 89700 207000 met1 +82800 200100 89700 207000 met1 +82800 193200 89700 207000 met2 +82800 193200 89700 200100 met1 82800 193200 89700 200100 li1 20700 200100 27600 207000 li1 20700 200100 34500 207000 met1 @@ -8163,30 +8177,34 @@ _02519_ ) _02520_ ( -75900 103500 82800 110400 li1 -75900 103500 82800 110400 met1 -75900 103500 82800 110400 met2 -75900 103500 82800 110400 met3 -75900 103500 82800 144900 met4 -75900 138000 82800 144900 met3 -75900 138000 103500 144900 met3 -96600 138000 103500 144900 met2 -96600 138000 103500 165600 met2 -96600 158700 103500 165600 met1 -96600 158700 103500 165600 li1 -75900 103500 110400 110400 met1 +82800 103500 89700 110400 met1 +82800 103500 89700 110400 met2 +82800 103500 89700 110400 met3 +82800 103500 89700 158700 met4 +82800 151800 89700 158700 met3 +82800 103500 110400 110400 met1 103500 103500 110400 110400 li1 -75900 96600 82800 103500 li1 -75900 96600 82800 103500 met1 +82800 96600 89700 110400 met4 +82800 96600 89700 103500 met3 +75900 96600 89700 103500 met3 75900 96600 82800 103500 met2 -75900 96600 82800 103500 met3 -75900 96600 82800 110400 met4 +75900 96600 82800 103500 met1 +75900 96600 82800 103500 li1 75900 186300 82800 193200 li1 -75900 186300 96600 193200 met1 -89700 186300 96600 193200 met1 -89700 158700 96600 193200 met2 +75900 186300 82800 193200 met1 +75900 186300 82800 193200 met2 +75900 186300 82800 193200 met3 +75900 151800 82800 193200 met4 +75900 151800 82800 158700 met3 +75900 151800 89700 158700 met3 +75900 103500 82800 110400 li1 +75900 103500 89700 110400 met1 +82800 151800 96600 158700 met3 +89700 151800 96600 158700 met2 +89700 151800 96600 165600 met2 89700 158700 96600 165600 met1 89700 158700 103500 165600 met1 +96600 158700 103500 165600 li1 ) _02521_ ( @@ -8290,11 +8308,15 @@ _02532_ ( 75900 117300 89700 124200 met1 82800 117300 89700 124200 met1 -82800 117300 89700 165600 met2 -82800 158700 89700 165600 met1 -82800 158700 89700 179400 met2 -82800 172500 89700 179400 met1 -82800 172500 96600 179400 met1 +82800 117300 89700 158700 met2 +82800 151800 89700 158700 met2 +82800 151800 96600 158700 met3 +89700 151800 96600 158700 met2 +89700 151800 96600 165600 met2 +89700 158700 96600 165600 met1 +89700 158700 96600 165600 li1 +89700 158700 96600 179400 met2 +89700 172500 96600 179400 met1 89700 172500 96600 179400 li1 75900 96600 82800 103500 li1 75900 96600 82800 103500 met1 @@ -8305,8 +8327,6 @@ _02532_ 75900 96600 82800 124200 met2 75900 117300 82800 124200 met1 75900 117300 82800 124200 li1 -82800 158700 96600 165600 met1 -89700 158700 96600 165600 li1 ) _02533_ ( @@ -8354,9 +8374,8 @@ _02538_ 41400 96600 48300 103500 met2 41400 96600 103500 103500 met3 96600 96600 103500 103500 met2 -96600 96600 158700 103500 met3 -151800 96600 158700 103500 met2 -151800 96600 158700 103500 met1 +96600 96600 103500 103500 met1 +96600 96600 158700 103500 met1 151800 96600 158700 103500 li1 ) _02539_ @@ -8410,9 +8429,9 @@ _02544_ 96600 117300 103500 186300 met2 96600 103500 110400 110400 met1 103500 103500 110400 110400 li1 -96600 103500 103500 110400 li1 -96600 103500 103500 110400 met1 96600 103500 103500 124200 met2 +96600 103500 103500 110400 met1 +96600 103500 103500 110400 li1 ) _02545_ ( @@ -8605,9 +8624,9 @@ _02563_ 172500 48300 179400 62100 met2 172500 48300 179400 55200 met1 172500 48300 179400 55200 li1 -165600 75900 179400 82800 met1 -172500 75900 179400 82800 met1 -172500 55200 179400 82800 met2 +165600 55200 172500 82800 met2 +165600 55200 172500 62100 met1 +165600 55200 179400 62100 met1 ) _02564_ ( @@ -8642,14 +8661,18 @@ _02565_ ) _02566_ ( -179400 117300 186300 124200 li1 +172500 117300 186300 124200 met3 +179400 117300 186300 124200 met2 179400 117300 186300 124200 met1 -179400 117300 186300 186300 met2 -179400 179400 186300 186300 met2 -172500 179400 186300 186300 met3 -172500 179400 179400 186300 met2 -172500 179400 179400 193200 met2 -172500 186300 179400 193200 met1 +179400 117300 186300 124200 li1 +172500 117300 179400 124200 met3 +172500 117300 179400 179400 met4 +172500 172500 179400 179400 met3 +172500 172500 186300 179400 met3 +179400 172500 186300 179400 met2 +179400 172500 186300 193200 met2 +179400 186300 186300 193200 met1 +172500 186300 186300 193200 met1 172500 186300 179400 193200 li1 172500 55200 179400 62100 li1 172500 55200 179400 62100 met1 @@ -8659,9 +8682,10 @@ _02566_ 172500 48300 179400 62100 met2 172500 48300 179400 55200 met1 172500 48300 179400 55200 li1 -172500 62100 186300 69000 met1 -179400 62100 186300 69000 met1 -179400 62100 186300 124200 met2 +172500 62100 179400 96600 met2 +172500 89700 179400 96600 met2 +172500 89700 179400 96600 met3 +172500 89700 179400 124200 met4 ) _02567_ ( @@ -8717,20 +8741,20 @@ _02570_ ) _02571_ ( -172500 110400 200100 117300 met1 -193200 110400 200100 117300 li1 -193200 110400 207000 117300 met1 -200100 110400 207000 117300 met1 -200100 103500 207000 117300 met2 -200100 103500 207000 110400 met1 +172500 103500 200100 110400 met1 +172500 103500 179400 110400 li1 +172500 103500 179400 110400 met1 +172500 103500 179400 117300 met2 +172500 110400 179400 117300 met1 +172500 110400 179400 117300 li1 200100 103500 207000 110400 li1 200100 103500 213900 110400 met1 207000 103500 213900 110400 li1 -172500 110400 179400 117300 li1 -172500 110400 179400 117300 met1 -172500 103500 179400 117300 met2 -172500 103500 179400 110400 met1 -172500 103500 179400 110400 li1 +193200 103500 200100 110400 met1 +193200 103500 200100 117300 met2 +193200 110400 200100 117300 met1 +193200 110400 200100 117300 li1 +193200 103500 207000 110400 met1 ) _02572_ ( @@ -8760,22 +8784,20 @@ _02573_ ) _02574_ ( -165600 234600 186300 241500 met1 -179400 234600 186300 241500 met1 -179400 234600 186300 282900 met2 -179400 276000 186300 282900 met1 -179400 276000 193200 282900 met1 -186300 276000 193200 282900 li1 -186300 276000 200100 282900 met1 193200 276000 200100 282900 li1 -165600 200100 193200 207000 met1 -186300 200100 193200 207000 li1 +193200 276000 200100 282900 met1 +193200 234600 200100 282900 met2 +193200 234600 200100 241500 met1 158700 200100 165600 207000 li1 -158700 200100 172500 207000 met1 +158700 200100 193200 207000 met1 +186300 200100 193200 207000 li1 +193200 200100 200100 241500 met2 +193200 200100 200100 207000 met1 +186300 200100 200100 207000 met1 +186300 276000 193200 282900 li1 +186300 276000 200100 282900 met1 165600 234600 172500 241500 li1 -165600 234600 172500 241500 met1 -165600 200100 172500 241500 met2 -165600 200100 172500 207000 met1 +165600 234600 200100 241500 met1 ) _02575_ ( @@ -8820,11 +8842,11 @@ _02577_ ) _02578_ ( -165600 234600 179400 241500 met1 -172500 234600 179400 241500 met1 -172500 234600 179400 282900 met2 -172500 276000 179400 282900 met1 -172500 276000 186300 282900 met1 +165600 234600 172500 241500 li1 +165600 234600 172500 241500 met1 +165600 234600 172500 282900 met2 +165600 276000 172500 282900 met1 +165600 276000 186300 282900 met1 179400 276000 186300 282900 li1 179400 276000 200100 282900 met1 193200 276000 200100 282900 li1 @@ -8832,8 +8854,6 @@ _02578_ 186300 193200 193200 200100 li1 158700 193200 165600 200100 li1 158700 193200 172500 200100 met1 -165600 234600 172500 241500 li1 -165600 234600 172500 241500 met1 165600 193200 172500 241500 met2 165600 193200 172500 200100 met1 ) @@ -8904,22 +8924,23 @@ _02583_ ) _02584_ ( -186300 200100 193200 207000 li1 -186300 200100 200100 207000 met1 -193200 200100 200100 207000 met1 -193200 200100 200100 234600 met2 +179400 200100 186300 207000 met1 +179400 200100 186300 234600 met2 +179400 227700 186300 234600 met1 +179400 227700 186300 234600 li1 +179400 227700 200100 234600 met1 193200 227700 200100 234600 met1 -193200 248400 200100 255300 li1 -193200 248400 200100 255300 met1 193200 227700 200100 255300 met2 +193200 248400 200100 255300 met1 +193200 248400 200100 255300 li1 165600 200100 172500 207000 li1 165600 200100 172500 207000 met1 165600 200100 172500 213900 met2 165600 207000 172500 213900 met1 165600 207000 172500 213900 li1 -165600 200100 193200 207000 met1 -179400 227700 186300 234600 li1 -179400 227700 200100 234600 met1 +165600 200100 186300 207000 met1 +179400 200100 193200 207000 met1 +186300 200100 193200 207000 li1 ) _02585_ ( @@ -8929,11 +8950,11 @@ _02585_ 158700 207000 165600 213900 li1 151800 172500 158700 179400 li1 151800 172500 158700 179400 met1 -151800 172500 158700 186300 met2 -151800 179400 158700 186300 met1 -151800 179400 165600 186300 met1 -158700 179400 165600 186300 met1 -158700 179400 165600 207000 met2 +151800 172500 158700 193200 met2 +151800 186300 158700 193200 met2 +151800 186300 165600 193200 met3 +158700 186300 165600 193200 met2 +158700 186300 165600 207000 met2 151800 151800 158700 158700 li1 151800 151800 158700 158700 met1 151800 138000 158700 158700 met2 @@ -9023,10 +9044,10 @@ _02593_ _02594_ ( 144900 124200 151800 131100 li1 -144900 124200 158700 131100 met1 -151800 124200 158700 131100 met1 -151800 117300 158700 131100 met2 -151800 117300 158700 124200 met1 +144900 124200 151800 131100 met1 +144900 117300 151800 131100 met2 +144900 117300 151800 124200 met1 +144900 117300 158700 124200 met1 151800 117300 158700 124200 li1 ) _02595_ @@ -9113,11 +9134,16 @@ _02603_ 186300 303600 193200 310500 met1 186300 303600 193200 310500 met2 186300 303600 193200 310500 met3 -186300 172500 193200 310500 met4 -186300 172500 193200 179400 met3 +186300 186300 193200 310500 met4 +186300 186300 193200 193200 met3 +186300 186300 193200 193200 met2 +186300 172500 193200 193200 met2 +186300 172500 193200 179400 met2 186300 172500 200100 179400 met3 -193200 172500 200100 179400 met2 -193200 48300 200100 179400 met2 +193200 172500 200100 179400 met3 +193200 48300 200100 179400 met4 +193200 48300 200100 55200 met3 +193200 48300 200100 55200 met2 193200 48300 200100 55200 met1 193200 48300 200100 55200 li1 179400 317400 186300 324300 li1 @@ -9372,10 +9398,10 @@ _02629_ _02630_ ( 165600 165600 172500 172500 li1 -165600 165600 172500 172500 met1 -165600 158700 172500 172500 met2 -165600 158700 172500 165600 met1 -165600 158700 179400 165600 met1 +165600 165600 179400 172500 met1 +172500 165600 179400 172500 met1 +172500 158700 179400 172500 met2 +172500 158700 179400 165600 met1 172500 158700 179400 165600 li1 ) _02631_ @@ -9473,19 +9499,19 @@ _02640_ ) _02641_ ( +200100 117300 213900 124200 met1 207000 117300 213900 124200 li1 207000 117300 213900 124200 met1 207000 103500 213900 124200 met2 207000 103500 213900 110400 met1 207000 103500 213900 110400 li1 200100 151800 207000 158700 li1 -200100 151800 213900 158700 met1 -207000 151800 213900 158700 met1 -207000 117300 213900 158700 met2 +200100 151800 207000 158700 met1 +200100 117300 207000 158700 met2 +200100 117300 207000 124200 met1 +200100 117300 207000 124200 li1 193200 151800 200100 158700 li1 193200 151800 207000 158700 met1 -200100 117300 207000 124200 li1 -200100 117300 213900 124200 met1 ) _02642_ ( @@ -9513,10 +9539,10 @@ _02643_ _02644_ ( 193200 117300 200100 124200 li1 -193200 117300 207000 124200 met1 -200100 117300 207000 124200 met1 -200100 103500 207000 124200 met2 -200100 103500 207000 110400 met1 +193200 117300 200100 124200 met1 +193200 103500 200100 124200 met2 +193200 103500 200100 110400 met1 +193200 103500 207000 110400 met1 200100 103500 207000 110400 li1 ) _02645_ @@ -9638,14 +9664,13 @@ _02654_ 179400 131100 186300 138000 met1 179400 131100 193200 138000 met1 186300 131100 193200 138000 li1 -179400 172500 193200 179400 met1 -186300 172500 193200 179400 met1 -186300 172500 193200 193200 met2 -186300 186300 193200 193200 met1 +179400 172500 186300 179400 li1 +179400 172500 186300 179400 met1 +179400 172500 186300 193200 met2 +179400 186300 186300 193200 met1 +179400 186300 193200 193200 met1 186300 186300 193200 193200 li1 179400 138000 186300 179400 met2 -179400 172500 186300 179400 met1 -179400 172500 186300 179400 li1 ) _02655_ ( @@ -9750,10 +9775,10 @@ _02665_ _02666_ ( 179400 193200 186300 200100 li1 -179400 193200 193200 200100 met1 -186300 193200 193200 200100 met1 -186300 186300 193200 200100 met2 -186300 186300 193200 193200 met1 +179400 193200 186300 200100 met1 +179400 186300 186300 200100 met2 +179400 186300 186300 193200 met1 +179400 186300 193200 193200 met1 186300 186300 193200 193200 li1 ) _02667_ @@ -9989,7 +10014,11 @@ _02693_ ( 186300 131100 193200 138000 li1 186300 131100 193200 138000 met1 -186300 131100 193200 234600 met2 +186300 131100 193200 138000 met2 +186300 131100 193200 138000 met3 +186300 131100 193200 234600 met4 +186300 227700 193200 234600 met3 +186300 227700 193200 234600 met2 186300 227700 193200 234600 met1 186300 227700 193200 234600 li1 186300 89700 193200 138000 met2 @@ -10169,15 +10198,13 @@ _02709_ 179400 220800 186300 234600 met2 179400 220800 186300 227700 met1 179400 220800 186300 227700 li1 -172500 227700 186300 234600 met1 -172500 227700 179400 234600 li1 -172500 227700 179400 234600 met1 -172500 220800 179400 234600 met2 -172500 220800 179400 227700 met1 -172500 220800 179400 227700 li1 179400 227700 186300 241500 met2 179400 234600 186300 241500 met1 179400 234600 186300 241500 li1 +172500 220800 179400 227700 li1 +172500 220800 186300 227700 met1 +172500 227700 179400 234600 li1 +172500 227700 186300 234600 met1 ) _02710_ ( @@ -10228,10 +10255,10 @@ _02714_ _02715_ ( 179400 89700 186300 96600 li1 -179400 89700 193200 96600 met1 -186300 89700 193200 96600 met1 -186300 75900 193200 96600 met2 -186300 75900 193200 82800 met1 +179400 89700 186300 96600 met1 +179400 75900 186300 96600 met2 +179400 75900 186300 82800 met1 +179400 75900 193200 82800 met1 186300 75900 193200 82800 li1 ) _02716_ @@ -10668,10 +10695,10 @@ _02756_ _02757_ ( 151800 131100 158700 138000 li1 -151800 131100 165600 138000 met1 -158700 131100 165600 138000 met1 -158700 124200 165600 138000 met2 -158700 124200 165600 131100 met1 +151800 131100 158700 138000 met1 +151800 124200 158700 138000 met2 +151800 124200 158700 131100 met1 +151800 124200 165600 131100 met1 158700 124200 165600 131100 li1 ) _02758_ @@ -10709,11 +10736,9 @@ _02760_ 172500 200100 179400 207000 met1 172500 193200 179400 207000 met2 158700 138000 165600 144900 li1 -158700 138000 186300 144900 met1 -179400 138000 186300 144900 met1 -179400 138000 186300 186300 met2 -179400 179400 186300 186300 met1 -172500 179400 186300 186300 met1 +158700 138000 179400 144900 met1 +172500 138000 179400 144900 met1 +172500 138000 179400 186300 met2 165600 193200 172500 200100 li1 165600 193200 179400 200100 met1 165600 179400 172500 186300 li1 @@ -10730,20 +10755,20 @@ _02761_ ) _02762_ ( -158700 158700 165600 165600 met1 -158700 158700 165600 172500 met2 -158700 165600 165600 172500 met1 -158700 165600 165600 172500 li1 -158700 144900 165600 151800 li1 -158700 144900 165600 151800 met1 -158700 144900 165600 165600 met2 +165600 165600 172500 172500 met1 +165600 158700 172500 172500 met2 +165600 158700 172500 165600 met1 +165600 158700 172500 165600 li1 165600 207000 172500 213900 li1 165600 207000 172500 213900 met1 165600 165600 172500 213900 met2 -165600 165600 172500 172500 met1 -158700 165600 172500 172500 met1 -165600 158700 172500 165600 li1 +158700 144900 165600 151800 li1 +158700 144900 165600 151800 met1 +158700 144900 165600 165600 met2 +158700 158700 165600 165600 met1 158700 158700 172500 165600 met1 +158700 165600 165600 172500 li1 +158700 165600 172500 172500 met1 ) _02763_ ( @@ -10809,18 +10834,20 @@ _02769_ ) _02770_ ( -165600 213900 179400 220800 met1 -172500 213900 179400 220800 met1 -172500 200100 179400 220800 met2 +165600 213900 172500 220800 li1 +165600 213900 172500 220800 met1 +165600 200100 172500 220800 met2 +165600 200100 172500 207000 met1 +165600 200100 179400 207000 met1 172500 110400 179400 117300 li1 -172500 110400 179400 117300 met1 -172500 110400 179400 207000 met2 -172500 200100 179400 207000 met1 +172500 110400 207000 117300 met1 +200100 110400 207000 117300 met1 +200100 110400 207000 207000 met2 +200100 200100 207000 207000 met1 +172500 200100 207000 207000 met1 172500 200100 179400 207000 li1 165600 241500 186300 248400 met1 179400 241500 186300 248400 li1 -165600 213900 172500 220800 li1 -165600 213900 172500 220800 met1 165600 213900 172500 248400 met2 165600 241500 172500 248400 met1 165600 241500 172500 248400 li1 @@ -11153,10 +11180,12 @@ _02808_ ( 179400 200100 186300 207000 li1 179400 200100 186300 207000 met1 -179400 117300 186300 207000 met2 -179400 117300 186300 124200 met1 -179400 117300 200100 124200 met1 -193200 117300 200100 124200 met1 +179400 200100 186300 207000 met2 +179400 200100 186300 207000 met3 +179400 117300 186300 207000 met4 +179400 117300 186300 124200 met3 +179400 117300 200100 124200 met3 +193200 117300 200100 124200 met2 193200 48300 200100 124200 met2 193200 48300 200100 55200 met1 193200 48300 200100 55200 li1 @@ -11182,14 +11211,13 @@ _02809_ 103500 248400 110400 255300 li1 103500 248400 117300 255300 met1 110400 248400 117300 255300 li1 -138000 255300 144900 262200 li1 138000 255300 151800 262200 met1 144900 255300 151800 262200 li1 -110400 248400 138000 255300 met1 -131100 248400 138000 255300 met1 -131100 248400 138000 262200 met2 -131100 255300 138000 262200 met1 -131100 255300 144900 262200 met1 +110400 248400 144900 255300 met1 +138000 248400 144900 255300 met1 +138000 248400 144900 262200 met2 +138000 255300 144900 262200 met1 +138000 255300 144900 262200 li1 ) _02810_ ( @@ -11569,17 +11597,17 @@ _02846_ ) _02847_ ( -62100 276000 138000 282900 met1 -131100 276000 138000 282900 li1 -131100 276000 138000 282900 met1 -131100 255300 138000 282900 met2 -131100 255300 138000 262200 met1 -131100 255300 138000 262200 li1 -62100 276000 69000 282900 li1 -62100 276000 69000 282900 met1 -62100 255300 69000 282900 met2 -62100 255300 69000 262200 met1 +62100 255300 138000 262200 met1 62100 255300 69000 262200 li1 +62100 255300 69000 262200 met1 +62100 255300 69000 282900 met2 +62100 276000 69000 282900 met1 +62100 276000 69000 282900 li1 +131100 255300 138000 262200 li1 +131100 255300 138000 262200 met1 +131100 255300 138000 282900 met2 +131100 276000 138000 282900 met1 +131100 276000 138000 282900 li1 ) _02848_ ( @@ -11588,25 +11616,22 @@ _02848_ ) _02849_ ( -69000 255300 131100 262200 met1 +69000 269100 131100 276000 met1 +124200 269100 131100 276000 met1 +124200 262200 131100 276000 met2 +124200 262200 131100 269100 met1 +69000 269100 75900 276000 li1 +69000 269100 75900 276000 met1 +69000 255300 75900 276000 met2 +69000 255300 75900 262200 met1 +69000 255300 75900 262200 li1 124200 248400 131100 255300 li1 124200 248400 131100 255300 met1 -124200 248400 131100 262200 met2 -124200 255300 131100 262200 met1 -131100 262200 138000 269100 li1 -131100 262200 144900 269100 met1 -138000 262200 144900 269100 met1 -138000 262200 144900 276000 met2 -138000 269100 144900 276000 met1 +124200 248400 131100 269100 met2 +124200 269100 144900 276000 met1 138000 269100 144900 276000 li1 -124200 255300 131100 269100 met2 -124200 262200 131100 269100 met1 124200 262200 138000 269100 met1 -69000 255300 75900 262200 li1 -69000 255300 75900 262200 met1 -69000 255300 75900 276000 met2 -69000 269100 75900 276000 met1 -69000 269100 75900 276000 li1 +131100 262200 138000 269100 li1 ) _02850_ ( @@ -12541,11 +12566,11 @@ _02948_ 82800 227700 89700 241500 met2 82800 234600 89700 241500 met1 82800 234600 89700 241500 li1 -124200 227700 138000 234600 met1 -131100 227700 138000 234600 met1 -131100 227700 138000 248400 met2 -131100 241500 138000 248400 met1 -131100 241500 172500 248400 met1 +124200 227700 144900 234600 met1 +138000 227700 144900 234600 met1 +138000 227700 144900 248400 met2 +138000 241500 144900 248400 met1 +138000 241500 172500 248400 met1 165600 241500 172500 248400 li1 ) _02949_ @@ -12575,14 +12600,15 @@ _02950_ ) _02951_ ( -82800 213900 131100 220800 met1 +75900 213900 131100 220800 met1 124200 213900 131100 220800 li1 +82800 241500 89700 248400 li1 82800 241500 103500 248400 met1 96600 241500 103500 248400 li1 -82800 213900 89700 220800 met1 -82800 213900 89700 248400 met2 -82800 241500 89700 248400 met1 -82800 241500 89700 248400 li1 +75900 213900 82800 220800 met1 +75900 213900 82800 248400 met2 +75900 241500 82800 248400 met1 +75900 241500 89700 248400 met1 124200 213900 151800 220800 met1 144900 213900 151800 220800 met1 144900 213900 151800 248400 met2 @@ -12592,8 +12618,6 @@ _02951_ 75900 207000 82800 213900 li1 75900 207000 82800 213900 met1 75900 207000 82800 220800 met2 -75900 213900 82800 220800 met1 -75900 213900 89700 220800 met1 ) _02952_ ( @@ -12606,20 +12630,21 @@ _02952_ ) _02953_ ( +117300 234600 124200 241500 li1 +117300 234600 131100 241500 met1 138000 234600 144900 241500 met1 138000 234600 144900 248400 met2 138000 241500 144900 248400 met1 -117300 234600 124200 241500 li1 -117300 234600 144900 241500 met1 -138000 241500 144900 255300 met2 -138000 248400 144900 255300 met1 -124200 248400 144900 255300 met1 +138000 241500 158700 248400 met1 +151800 241500 158700 248400 li1 +124200 234600 131100 241500 met1 +124200 234600 131100 255300 met2 +124200 248400 131100 255300 met1 124200 248400 131100 255300 li1 138000 220800 144900 227700 li1 138000 220800 144900 227700 met1 138000 220800 144900 241500 met2 -138000 241500 158700 248400 met1 -151800 241500 158700 248400 li1 +124200 234600 144900 241500 met1 ) _02954_ ( @@ -12632,17 +12657,18 @@ _02954_ _02955_ ( 131100 234600 138000 241500 li1 -131100 234600 158700 241500 met1 -151800 234600 158700 241500 met1 -151800 234600 158700 255300 met2 -151800 248400 158700 255300 met1 -144900 248400 158700 255300 met1 -144900 248400 151800 255300 li1 +131100 234600 144900 241500 met1 +138000 234600 144900 241500 met1 +138000 234600 144900 255300 met2 +138000 248400 144900 255300 met1 138000 248400 144900 255300 li1 -138000 248400 151800 255300 met1 -151800 227700 158700 234600 li1 -151800 227700 158700 234600 met1 +138000 234600 158700 241500 met1 +151800 234600 158700 241500 met1 151800 227700 158700 241500 met2 +151800 227700 158700 234600 met1 +151800 227700 158700 234600 li1 +138000 248400 151800 255300 met1 +144900 248400 151800 255300 li1 ) _02956_ ( @@ -12653,14 +12679,15 @@ _02956_ _02957_ ( 131100 241500 138000 248400 li1 -131100 241500 144900 248400 met1 -138000 241500 144900 248400 met1 -138000 241500 144900 255300 met2 -138000 248400 144900 255300 met1 -138000 248400 144900 255300 li1 -138000 248400 144900 262200 met2 -138000 255300 144900 262200 met1 +131100 241500 138000 248400 met1 +131100 241500 138000 255300 met2 +131100 248400 138000 255300 met1 +131100 248400 138000 262200 met2 +131100 255300 138000 262200 met1 +131100 255300 144900 262200 met1 138000 255300 144900 262200 li1 +131100 248400 144900 255300 met1 +138000 248400 144900 255300 li1 ) _02958_ ( @@ -12710,22 +12737,20 @@ _02962_ ) _02963_ ( -138000 248400 144900 255300 li1 -138000 248400 151800 255300 met1 144900 248400 151800 255300 li1 -144900 248400 158700 255300 met1 -151800 248400 158700 255300 met1 -151800 241500 158700 255300 met2 -151800 241500 158700 248400 met1 -151800 241500 158700 248400 li1 +144900 248400 151800 255300 met1 +144900 241500 151800 255300 met2 +144900 241500 151800 248400 met1 +138000 248400 151800 255300 met1 +138000 248400 144900 255300 li1 +82800 241500 151800 248400 met1 82800 241500 89700 248400 li1 82800 241500 89700 248400 met1 -82800 241500 89700 255300 met2 -82800 248400 89700 255300 met1 -82800 248400 144900 255300 met1 82800 234600 89700 248400 met2 82800 234600 89700 241500 met1 82800 234600 89700 241500 li1 +144900 241500 158700 248400 met1 +151800 241500 158700 248400 li1 ) _02964_ ( @@ -12956,10 +12981,10 @@ _02988_ _02989_ ( 131100 213900 138000 220800 li1 -131100 213900 138000 220800 met1 -131100 213900 138000 227700 met2 -131100 220800 138000 227700 met1 -131100 220800 144900 227700 met1 +131100 213900 144900 220800 met1 +138000 213900 144900 220800 met1 +138000 213900 144900 227700 met2 +138000 220800 144900 227700 met1 138000 220800 144900 227700 li1 ) _02990_ @@ -13075,11 +13100,11 @@ _03001_ _03002_ ( 179400 207000 186300 213900 li1 -179400 207000 193200 213900 met1 -186300 207000 193200 213900 met1 -186300 207000 193200 227700 met2 -186300 220800 193200 227700 met1 -186300 220800 207000 227700 met1 +179400 207000 200100 213900 met1 +193200 207000 200100 213900 met1 +193200 207000 200100 227700 met2 +193200 220800 200100 227700 met1 +193200 220800 207000 227700 met1 200100 220800 207000 227700 li1 ) _03003_ @@ -13154,10 +13179,10 @@ _03009_ _03010_ ( 200100 220800 207000 227700 li1 -200100 220800 207000 227700 met1 -200100 213900 207000 227700 met2 -200100 213900 207000 220800 met1 -200100 213900 213900 220800 met1 +200100 220800 213900 227700 met1 +207000 220800 213900 227700 met1 +207000 213900 213900 227700 met2 +207000 213900 213900 220800 met1 207000 213900 213900 220800 li1 ) _03011_ @@ -13707,10 +13732,10 @@ _03061_ _03062_ ( 138000 69000 144900 75900 li1 -138000 69000 151800 75900 met1 -144900 69000 151800 75900 met1 -144900 62100 151800 75900 met2 -144900 62100 151800 69000 met1 +138000 69000 144900 75900 met1 +138000 62100 144900 75900 met2 +138000 62100 144900 69000 met1 +138000 62100 151800 69000 met1 144900 62100 151800 69000 li1 144900 62100 158700 69000 met1 151800 62100 158700 69000 li1 @@ -13862,17 +13887,17 @@ _03080_ 289800 20700 296700 34500 met2 289800 20700 296700 27600 met1 289800 20700 296700 27600 li1 -213900 262200 296700 269100 met1 -213900 262200 220800 269100 met1 -213900 207000 220800 269100 met2 -213900 207000 220800 213900 met1 -213900 207000 227700 213900 met1 -220800 207000 227700 213900 met1 -220800 96600 227700 213900 met2 -220800 96600 227700 103500 met1 -220800 96600 296700 103500 met1 -289800 96600 296700 103500 met1 -289800 27600 296700 103500 met2 +289800 255300 296700 269100 met2 +289800 255300 296700 262200 met2 +234600 255300 296700 262200 met3 +234600 255300 241500 262200 met2 +234600 200100 241500 262200 met2 +234600 200100 241500 207000 met1 +234600 200100 248400 207000 met1 +241500 200100 248400 207000 met1 +241500 27600 248400 207000 met2 +241500 27600 248400 34500 met1 +241500 27600 296700 34500 met1 ) _03081_ ( @@ -14024,18 +14049,19 @@ _03093_ ) _03094_ ( +324300 269100 338100 276000 met1 331200 269100 338100 276000 li1 331200 269100 338100 276000 met1 331200 262200 338100 276000 met2 331200 262200 338100 269100 met1 331200 262200 338100 269100 li1 +324300 276000 338100 282900 met1 331200 276000 338100 282900 li1 -331200 276000 338100 282900 met1 -331200 269100 338100 282900 met2 -324300 269100 331200 276000 li1 -324300 269100 338100 276000 met1 324300 276000 331200 282900 li1 -324300 276000 338100 282900 met1 +324300 276000 331200 282900 met1 +324300 269100 331200 282900 met2 +324300 269100 331200 276000 met1 +324300 269100 331200 276000 li1 ) _03095_ ( @@ -14047,22 +14073,22 @@ _03095_ 338100 193200 351900 200100 met1 345000 193200 351900 200100 li1 289800 276000 296700 282900 li1 -289800 276000 303600 282900 met1 -296700 276000 303600 282900 met1 -296700 269100 303600 282900 met2 -296700 269100 303600 276000 met1 -296700 269100 317400 276000 met1 +289800 276000 310500 282900 met1 +303600 276000 310500 282900 met1 +303600 269100 310500 282900 met2 +303600 269100 310500 276000 met1 +303600 269100 317400 276000 met1 310500 269100 317400 276000 li1 -310500 269100 331200 276000 met1 -324300 269100 345000 276000 met1 +310500 269100 345000 276000 met1 338100 269100 345000 276000 met1 338100 269100 345000 282900 met2 338100 276000 345000 282900 met1 338100 276000 345000 282900 li1 -324300 269100 331200 276000 met1 -324300 193200 331200 276000 met2 -324300 193200 331200 200100 met1 -324300 193200 345000 200100 met1 +338100 276000 358800 282900 met1 +351900 276000 358800 282900 met1 +351900 193200 358800 282900 met2 +351900 193200 358800 200100 met1 +345000 193200 358800 200100 met1 ) _03096_ ( @@ -14222,15 +14248,17 @@ _03106_ 317400 276000 324300 282900 met1 317400 276000 324300 282900 li1 317400 248400 324300 262200 met2 -317400 248400 324300 255300 met1 -317400 41400 324300 48300 li1 317400 41400 331200 48300 met1 324300 41400 331200 48300 li1 -241500 248400 324300 255300 met1 -241500 248400 248400 255300 met1 -241500 41400 248400 255300 met2 -241500 41400 248400 48300 met1 -241500 41400 324300 48300 met1 +317400 248400 324300 255300 met2 +241500 248400 324300 255300 met3 +241500 248400 248400 255300 met3 +241500 41400 248400 255300 met4 +241500 41400 248400 48300 met3 +241500 41400 324300 48300 met3 +317400 41400 324300 48300 met2 +317400 41400 324300 48300 met1 +317400 41400 324300 48300 li1 317400 241500 324300 255300 met2 317400 241500 324300 248400 met1 317400 241500 324300 248400 li1 @@ -14268,11 +14296,11 @@ _03109_ 324300 296700 331200 303600 met1 324300 289800 331200 303600 met2 324300 289800 331200 296700 met2 -241500 289800 331200 296700 met3 -241500 289800 248400 296700 met3 -241500 20700 248400 296700 met4 -241500 20700 248400 27600 met3 -241500 20700 324300 27600 met3 +234600 289800 331200 296700 met3 +234600 289800 241500 296700 met3 +234600 20700 241500 296700 met4 +234600 20700 241500 27600 met3 +234600 20700 324300 27600 met3 317400 20700 324300 27600 met2 317400 20700 324300 27600 met1 317400 20700 324300 27600 li1 @@ -14293,19 +14321,23 @@ _03110_ _03111_ ( 317400 282900 324300 289800 li1 -317400 282900 331200 289800 met1 -324300 282900 331200 289800 met1 -324300 262200 331200 289800 met2 -324300 262200 331200 269100 met2 -248400 262200 331200 269100 met3 -248400 262200 255300 269100 met3 -248400 20700 255300 269100 met4 -248400 20700 255300 27600 met3 -248400 20700 324300 27600 met3 +317400 282900 324300 289800 met1 +317400 282900 324300 289800 met2 +317400 282900 331200 289800 met3 +324300 282900 331200 289800 met3 +324300 262200 331200 289800 met4 +324300 262200 331200 269100 met3 +255300 262200 331200 269100 met3 +255300 262200 262200 269100 met3 +255300 20700 262200 269100 met4 +255300 20700 262200 27600 met3 +255300 20700 324300 27600 met3 317400 20700 324300 27600 met2 317400 20700 324300 27600 met1 317400 20700 324300 27600 li1 -324300 255300 331200 269100 met2 +324300 255300 331200 269100 met4 +324300 255300 331200 262200 met3 +324300 255300 331200 262200 met2 324300 255300 331200 262200 met1 324300 255300 331200 262200 li1 317400 20700 331200 27600 met1 @@ -14324,20 +14356,26 @@ _03113_ 310500 317400 317400 324300 met1 310500 317400 317400 324300 li1 310500 282900 317400 317400 met2 +310500 282900 317400 289800 met1 +317400 34500 324300 41400 li1 317400 34500 331200 41400 met1 324300 34500 331200 41400 met1 324300 27600 331200 41400 met2 324300 27600 331200 34500 met1 324300 27600 331200 34500 li1 -310500 282900 317400 289800 met2 -255300 282900 317400 289800 met3 -255300 282900 262200 289800 met3 -255300 34500 262200 289800 met4 -255300 34500 262200 41400 met3 -255300 34500 324300 41400 met3 -317400 34500 324300 41400 met2 -317400 34500 324300 41400 met1 -317400 34500 324300 41400 li1 +234600 282900 317400 289800 met1 +234600 282900 241500 289800 met1 +234600 213900 241500 289800 met2 +234600 213900 241500 220800 met1 +234600 213900 248400 220800 met1 +241500 213900 248400 220800 met1 +241500 179400 248400 220800 met2 +241500 179400 248400 186300 met1 +241500 179400 255300 186300 met1 +248400 179400 255300 186300 met1 +248400 34500 255300 186300 met2 +248400 34500 255300 41400 met1 +248400 34500 324300 41400 met1 310500 276000 317400 289800 met2 310500 276000 317400 282900 met1 310500 276000 317400 282900 li1 @@ -15691,11 +15729,11 @@ _03248_ ) _03249_ ( -276000 255300 296700 262200 met1 -276000 255300 282900 262200 met1 -276000 186300 282900 262200 met2 -276000 186300 282900 193200 met1 -276000 186300 310500 193200 met1 +262200 255300 296700 262200 met1 +262200 255300 269100 262200 met1 +262200 186300 269100 262200 met2 +262200 186300 269100 193200 met1 +262200 186300 310500 193200 met1 303600 186300 310500 193200 li1 303600 186300 345000 193200 met1 338100 186300 345000 193200 met1 @@ -15833,27 +15871,26 @@ _03259_ 269100 303600 276000 310500 met1 269100 303600 276000 331200 met2 269100 324300 276000 331200 met1 -269100 324300 303600 331200 met1 -296700 324300 303600 331200 met1 -296700 324300 303600 338100 met2 -296700 331200 303600 338100 met1 +269100 324300 296700 331200 met1 +289800 324300 296700 331200 met1 +289800 324300 296700 338100 met2 +289800 331200 296700 338100 met1 +289800 331200 303600 338100 met1 296700 331200 303600 338100 li1 -269100 144900 276000 151800 li1 269100 144900 303600 151800 met1 296700 144900 303600 151800 met1 296700 138000 303600 151800 met2 296700 138000 303600 144900 met1 296700 138000 303600 144900 li1 -234600 289800 276000 296700 met1 -234600 289800 241500 296700 met1 -234600 200100 241500 296700 met2 -234600 200100 241500 207000 met1 -234600 200100 248400 207000 met1 -241500 200100 248400 207000 met1 -241500 144900 248400 207000 met2 -241500 144900 248400 151800 met1 -241500 144900 276000 151800 met1 -269100 289800 276000 296700 met1 +269100 289800 276000 296700 met2 +248400 289800 276000 296700 met3 +248400 289800 255300 296700 met3 +248400 144900 255300 296700 met4 +248400 144900 255300 151800 met3 +248400 144900 276000 151800 met3 +269100 144900 276000 151800 met2 +269100 144900 276000 151800 met1 +269100 144900 276000 151800 li1 269100 282900 276000 296700 met2 269100 282900 276000 289800 met1 269100 282900 296700 289800 met1 @@ -15869,11 +15906,11 @@ _03260_ 289800 296700 296700 303600 li1 282900 241500 289800 248400 li1 282900 241500 289800 248400 met1 -282900 241500 289800 276000 met2 -282900 269100 289800 276000 met2 -282900 269100 296700 276000 met3 -289800 269100 296700 276000 met2 -289800 269100 296700 289800 met2 +282900 241500 289800 282900 met2 +282900 276000 289800 282900 met2 +282900 276000 296700 282900 met3 +289800 276000 296700 282900 met2 +289800 276000 296700 289800 met2 289800 282900 296700 289800 met1 289800 282900 296700 289800 li1 289800 282900 296700 296700 met2 @@ -15889,8 +15926,7 @@ _03261_ ) _03262_ ( -282900 276000 289800 282900 met1 -282900 276000 289800 351900 met2 +282900 282900 289800 351900 met2 282900 345000 289800 351900 met1 282900 345000 324300 351900 met1 317400 345000 324300 351900 li1 @@ -15900,17 +15936,16 @@ _03262_ 310500 124200 317400 131100 li1 303600 131100 310500 138000 li1 303600 131100 317400 138000 met1 +282900 276000 289800 289800 met2 +282900 276000 289800 282900 met1 282900 276000 310500 282900 met1 303600 276000 310500 282900 li1 -269100 276000 289800 282900 met1 -269100 276000 276000 282900 met1 -269100 186300 276000 282900 met2 -269100 186300 276000 193200 met2 -269100 186300 296700 193200 met3 -289800 186300 296700 193200 met3 -289800 144900 296700 193200 met4 -289800 144900 296700 151800 met3 -289800 144900 317400 151800 met3 +282900 282900 289800 289800 met2 +227700 282900 289800 289800 met3 +227700 282900 234600 289800 met3 +227700 144900 234600 289800 met4 +227700 144900 234600 151800 met3 +227700 144900 317400 151800 met3 310500 144900 317400 151800 met2 310500 144900 317400 151800 met1 310500 144900 317400 151800 li1 @@ -15959,11 +15994,11 @@ _03266_ 310500 338100 317400 345000 li1 303600 144900 317400 151800 met1 310500 144900 317400 151800 li1 -248400 303600 310500 310500 met1 -248400 303600 255300 310500 met1 -248400 144900 255300 310500 met2 -248400 144900 255300 151800 met1 -248400 144900 310500 151800 met1 +255300 303600 310500 310500 met1 +255300 303600 262200 310500 met1 +255300 144900 262200 310500 met2 +255300 144900 262200 151800 met1 +255300 144900 310500 151800 met1 303600 324300 310500 331200 li1 303600 324300 310500 331200 met1 303600 303600 310500 331200 met2 @@ -15986,12 +16021,11 @@ _03267_ 303600 282900 310500 289800 met1 303600 282900 310500 289800 li1 289800 234600 296700 241500 li1 -289800 234600 296700 241500 met1 -289800 234600 296700 255300 met2 -289800 248400 296700 255300 met1 -289800 248400 310500 255300 met1 -303600 248400 310500 289800 met2 +289800 234600 310500 241500 met1 +303600 234600 310500 241500 met1 +303600 234600 310500 255300 met2 303600 248400 310500 255300 met1 +303600 248400 310500 289800 met2 ) _03268_ ( @@ -16006,22 +16040,21 @@ _03269_ 310500 351900 317400 358800 met1 310500 351900 324300 358800 met1 317400 351900 324300 358800 li1 +303600 151800 310500 158700 li1 +303600 151800 310500 158700 met1 303600 144900 310500 158700 met2 303600 144900 310500 151800 met1 303600 144900 317400 151800 met1 310500 144900 317400 151800 li1 -303600 296700 310500 303600 met2 -248400 296700 310500 303600 met3 -248400 296700 255300 303600 met3 -248400 151800 255300 303600 met4 -248400 151800 255300 158700 met3 -248400 151800 310500 158700 met3 -303600 151800 310500 158700 met2 -303600 151800 310500 158700 met1 -303600 151800 310500 158700 li1 +241500 296700 310500 303600 met1 +241500 296700 248400 303600 met1 +241500 151800 248400 303600 met2 +241500 151800 248400 158700 met1 +241500 151800 310500 158700 met1 303600 310500 310500 317400 li1 303600 310500 310500 317400 met1 303600 296700 310500 317400 met2 +303600 296700 310500 303600 met1 303600 289800 310500 303600 met2 303600 289800 310500 296700 met1 303600 289800 310500 296700 li1 @@ -16056,11 +16089,11 @@ _03272_ 303600 138000 310500 144900 li1 303600 138000 317400 144900 met1 310500 138000 317400 144900 li1 -255300 317400 310500 324300 met1 -255300 317400 262200 324300 met1 -255300 138000 262200 324300 met2 -255300 138000 262200 144900 met1 -255300 138000 310500 144900 met1 +227700 317400 310500 324300 met1 +227700 317400 234600 324300 met1 +227700 138000 234600 324300 met2 +227700 138000 234600 144900 met1 +227700 138000 310500 144900 met1 296700 310500 303600 317400 li1 296700 310500 310500 317400 met1 303600 310500 310500 324300 met2 @@ -16197,10 +16230,10 @@ _03283_ _03284_ ( 296700 262200 303600 269100 li1 -296700 262200 303600 269100 met1 -296700 262200 303600 276000 met2 -296700 269100 303600 276000 met1 -296700 269100 310500 276000 met1 +296700 262200 310500 269100 met1 +303600 262200 310500 269100 met1 +303600 262200 310500 276000 met2 +303600 269100 310500 276000 met1 303600 269100 310500 276000 li1 ) _03285_ @@ -16228,10 +16261,10 @@ _03287_ _03288_ ( 324300 296700 331200 303600 li1 -324300 296700 338100 303600 met1 -331200 296700 338100 303600 met1 -331200 289800 338100 303600 met2 -331200 289800 338100 296700 met1 +324300 296700 331200 303600 met1 +324300 289800 331200 303600 met2 +324300 289800 331200 296700 met1 +324300 289800 338100 296700 met1 331200 289800 338100 296700 li1 ) _03289_ @@ -16251,14 +16284,19 @@ _03289_ _03290_ ( 338100 248400 345000 255300 met1 -338100 179400 345000 255300 met2 +338100 248400 345000 255300 met2 +338100 248400 345000 255300 met3 +338100 179400 345000 255300 met4 +338100 179400 345000 186300 met3 +338100 179400 345000 186300 met2 338100 179400 345000 186300 met1 338100 179400 345000 186300 li1 262200 227700 269100 234600 li1 -262200 227700 269100 234600 met1 -262200 227700 269100 248400 met2 -262200 241500 269100 248400 met1 -262200 241500 289800 248400 met1 +262200 227700 282900 234600 met1 +276000 227700 282900 234600 met1 +276000 227700 282900 248400 met2 +276000 241500 282900 248400 met1 +276000 241500 289800 248400 met1 282900 241500 289800 248400 met1 282900 241500 289800 255300 met2 282900 248400 289800 255300 met1 @@ -16280,14 +16318,14 @@ _03291_ ) _03292_ ( -276000 220800 282900 227700 li1 -276000 220800 289800 227700 met1 276000 241500 282900 248400 li1 +276000 241500 282900 248400 met1 +276000 220800 282900 248400 met2 +276000 220800 282900 227700 met1 +276000 220800 282900 227700 li1 276000 241500 289800 248400 met1 282900 241500 289800 248400 li1 -282900 241500 289800 248400 met1 -282900 220800 289800 248400 met2 -282900 220800 289800 227700 met1 +276000 220800 289800 227700 met1 282900 220800 289800 227700 li1 ) _03293_ @@ -16366,17 +16404,13 @@ _03302_ 248400 262200 255300 276000 met2 248400 269100 255300 276000 met1 248400 269100 296700 276000 met1 -220800 262200 255300 269100 met1 -220800 262200 227700 269100 met1 -220800 124200 227700 269100 met2 -220800 124200 227700 131100 met1 -220800 124200 255300 131100 met1 +248400 124200 255300 269100 met2 +248400 124200 255300 131100 met1 +248400 124200 255300 131100 li1 241500 117300 248400 124200 li1 241500 117300 255300 124200 met1 248400 117300 255300 124200 met1 248400 117300 255300 131100 met2 -248400 124200 255300 131100 met1 -248400 124200 255300 131100 li1 289800 269100 296700 276000 li1 289800 269100 296700 276000 met1 289800 269100 296700 282900 met2 @@ -16408,13 +16442,9 @@ _03305_ ( 255300 207000 262200 213900 li1 255300 207000 262200 213900 met1 -255300 207000 262200 220800 met2 -255300 213900 262200 220800 met1 -241500 213900 262200 220800 met1 -241500 213900 248400 220800 met1 -241500 131100 248400 220800 met2 -241500 131100 248400 138000 met2 -241500 131100 345000 138000 met3 +255300 131100 262200 213900 met2 +255300 131100 262200 138000 met2 +255300 131100 345000 138000 met3 338100 131100 345000 138000 met2 338100 131100 345000 138000 met1 338100 131100 345000 138000 li1 @@ -16429,18 +16459,18 @@ _03305_ 331200 269100 338100 276000 met2 331200 269100 338100 276000 met1 331200 269100 338100 276000 li1 +289800 269100 296700 276000 met1 289800 269100 296700 282900 met2 289800 276000 296700 282900 met1 289800 276000 296700 282900 li1 -255300 213900 262200 227700 met2 +255300 207000 262200 227700 met2 255300 220800 262200 227700 met1 255300 220800 269100 227700 met1 262200 220800 269100 227700 met1 262200 220800 269100 276000 met2 -262200 269100 269100 276000 met2 -262200 269100 296700 276000 met3 -289800 269100 296700 276000 met2 -289800 269100 338100 276000 met3 +262200 269100 269100 276000 met1 +262200 269100 296700 276000 met1 +289800 269100 338100 276000 met1 ) _03306_ ( @@ -16533,26 +16563,25 @@ _03316_ ) _03317_ ( -255300 138000 262200 144900 met1 -255300 138000 262200 158700 met2 -255300 151800 262200 158700 met1 -241500 158700 248400 165600 li1 -241500 158700 262200 165600 met1 -255300 158700 262200 165600 met1 -255300 151800 262200 165600 met2 -248400 131100 255300 138000 li1 -248400 131100 255300 138000 met1 -248400 131100 255300 144900 met2 248400 138000 255300 144900 met1 -248400 138000 262200 144900 met1 +248400 131100 255300 144900 met2 +248400 131100 255300 138000 met1 +248400 131100 255300 138000 li1 +241500 158700 248400 165600 li1 +241500 158700 255300 165600 met1 +248400 158700 255300 165600 met1 +248400 138000 255300 165600 met2 +262200 138000 269100 144900 met1 +262200 138000 269100 158700 met2 +262200 151800 269100 158700 met1 +262200 151800 269100 158700 li1 241500 82800 248400 89700 li1 241500 82800 255300 89700 met1 248400 82800 255300 89700 met1 248400 82800 255300 138000 met2 -255300 138000 276000 144900 met1 +262200 138000 276000 144900 met1 269100 138000 276000 144900 li1 -255300 151800 269100 158700 met1 -262200 151800 269100 158700 li1 +248400 138000 269100 144900 met1 ) _03318_ ( @@ -16565,22 +16594,19 @@ _03318_ 241500 117300 248400 124200 li1 241500 117300 248400 124200 met1 241500 117300 248400 131100 met2 -248400 207000 269100 213900 met1 -262200 207000 269100 213900 met1 -262200 207000 269100 276000 met2 -262200 269100 269100 276000 met2 +241500 124200 248400 131100 met1 +248400 207000 255300 213900 met2 +248400 207000 269100 213900 met3 +262200 207000 269100 213900 met3 +262200 207000 269100 276000 met4 +262200 269100 269100 276000 met3 262200 269100 345000 276000 met3 338100 269100 345000 276000 met2 338100 269100 345000 276000 met1 338100 269100 345000 276000 li1 -241500 124200 248400 131100 met1 -241500 124200 248400 131100 met2 -241500 124200 248400 131100 met3 -241500 124200 248400 213900 met4 -241500 207000 248400 213900 met3 +241500 124200 248400 213900 met2 +241500 207000 248400 213900 met2 241500 207000 255300 213900 met3 -248400 207000 255300 213900 met2 -248400 207000 255300 213900 met1 241500 124200 372600 131100 met1 248400 207000 255300 220800 met2 248400 213900 255300 220800 met1 @@ -16809,42 +16835,41 @@ _03336_ ) _03337_ ( -372600 165600 379500 172500 li1 -372600 165600 379500 172500 met1 -372600 165600 379500 172500 met2 -372600 165600 379500 172500 met3 -372600 117300 379500 172500 met4 -372600 117300 379500 124200 met3 -372600 117300 379500 124200 met2 -372600 117300 379500 124200 met1 372600 117300 379500 124200 li1 -331200 200100 358800 207000 met1 -351900 200100 358800 207000 met1 -351900 193200 358800 207000 met2 -351900 193200 358800 200100 met2 -351900 193200 379500 200100 met3 -372600 193200 379500 200100 met3 -372600 165600 379500 200100 met4 -255300 200100 338100 207000 met1 +372600 117300 379500 124200 met1 +372600 117300 379500 144900 met2 +255300 138000 379500 144900 met3 +372600 138000 379500 144900 met2 248400 124200 255300 131100 li1 -248400 124200 255300 131100 met1 -248400 124200 255300 131100 met2 -248400 124200 262200 131100 met3 -255300 124200 262200 131100 met3 -255300 124200 262200 207000 met4 +248400 124200 262200 131100 met1 +255300 124200 262200 131100 met1 +255300 124200 262200 144900 met2 +255300 200100 338100 207000 met1 +331200 200100 338100 207000 met1 +331200 200100 338100 213900 met2 +331200 207000 338100 213900 met2 +331200 207000 338100 213900 met3 +331200 207000 338100 234600 met4 +331200 227700 338100 234600 met3 +331200 227700 338100 234600 met2 +331200 227700 338100 269100 met2 +331200 262200 338100 269100 met2 +331200 262200 338100 269100 met3 +331200 262200 338100 276000 met4 +331200 269100 338100 276000 met3 +331200 269100 338100 276000 met2 +331200 269100 338100 276000 met1 +331200 269100 338100 276000 li1 +255300 138000 262200 144900 met2 +255300 138000 262200 144900 met3 +255300 138000 262200 207000 met4 255300 200100 262200 207000 met3 255300 200100 262200 207000 met2 255300 200100 262200 207000 met1 255300 200100 262200 207000 li1 -331200 269100 338100 276000 li1 -331200 269100 338100 276000 met1 -331200 269100 338100 276000 met2 -331200 269100 338100 276000 met3 -331200 207000 338100 276000 met4 -331200 207000 338100 213900 met3 -331200 207000 338100 213900 met2 -331200 200100 338100 213900 met2 -331200 200100 338100 207000 met1 +372600 138000 379500 172500 met2 +372600 165600 379500 172500 met1 +372600 165600 379500 172500 li1 ) _03338_ ( @@ -17064,6 +17089,7 @@ _03361_ ( 310500 69000 324300 75900 met1 317400 69000 324300 75900 li1 +296700 158700 303600 165600 li1 296700 158700 310500 165600 met1 303600 158700 310500 165600 met1 303600 110400 310500 165600 met2 @@ -17082,13 +17108,13 @@ _03361_ 303600 255300 310500 262200 li1 269100 255300 310500 262200 met1 269100 255300 276000 262200 met1 -269100 186300 276000 262200 met2 -269100 186300 276000 193200 met1 -269100 186300 303600 193200 met1 -296700 186300 303600 193200 met1 -296700 158700 303600 193200 met2 -296700 158700 303600 165600 met1 -296700 158700 303600 165600 li1 +269100 179400 276000 262200 met2 +269100 179400 276000 186300 met2 +262200 179400 276000 186300 met3 +262200 179400 269100 186300 met2 +262200 158700 269100 186300 met2 +262200 158700 269100 165600 met1 +262200 158700 303600 165600 met1 ) _03362_ ( @@ -17245,11 +17271,10 @@ _03376_ ) _03377_ ( -324300 282900 331200 289800 li1 -324300 282900 331200 289800 met1 -324300 282900 331200 303600 met2 -324300 296700 331200 303600 met1 -324300 296700 338100 303600 met1 +324300 282900 338100 289800 met1 +331200 282900 338100 289800 met1 +331200 282900 338100 303600 met2 +331200 296700 338100 303600 met1 331200 296700 338100 303600 li1 324300 269100 338100 276000 met1 331200 269100 338100 276000 li1 @@ -17258,6 +17283,8 @@ _03377_ 324300 269100 331200 282900 met2 324300 269100 331200 276000 met1 324300 269100 331200 276000 li1 +324300 282900 331200 289800 li1 +324300 282900 331200 289800 met1 324300 276000 331200 289800 met2 ) _03378_ @@ -17265,26 +17292,20 @@ _03378_ 303600 48300 310500 55200 li1 303600 48300 317400 55200 met1 310500 48300 317400 55200 li1 -276000 117300 282900 124200 met1 276000 48300 282900 124200 met2 276000 48300 282900 55200 met1 276000 48300 310500 55200 met1 276000 117300 282900 131100 met2 276000 124200 282900 131100 met1 276000 124200 282900 131100 li1 -248400 117300 282900 124200 met1 -248400 117300 255300 124200 met1 -248400 117300 255300 186300 met2 -248400 179400 255300 186300 met1 -241500 179400 255300 186300 met1 -241500 179400 248400 186300 met1 -241500 179400 248400 200100 met2 -241500 193200 248400 200100 met1 -227700 193200 248400 200100 met1 -227700 193200 234600 200100 met1 -227700 193200 234600 282900 met2 -227700 276000 234600 282900 met1 -227700 276000 331200 282900 met1 +276000 117300 282900 124200 met2 +227700 117300 282900 124200 met3 +227700 117300 234600 124200 met3 +227700 117300 234600 282900 met4 +227700 276000 234600 282900 met3 +227700 276000 331200 282900 met3 +324300 276000 331200 282900 met2 +324300 276000 331200 282900 met1 324300 276000 331200 282900 li1 ) _03379_ @@ -17404,14 +17425,14 @@ _03388_ 310500 110400 317400 124200 met2 310500 110400 317400 117300 met1 310500 110400 331200 117300 met1 +324300 110400 331200 117300 li1 310500 124200 317400 131100 li1 310500 124200 317400 131100 met1 310500 117300 317400 131100 met2 -324300 110400 331200 117300 li1 -324300 110400 331200 117300 met1 -324300 103500 331200 117300 met2 -324300 103500 331200 110400 met1 -324300 103500 345000 110400 met1 +324300 110400 345000 117300 met1 +338100 110400 345000 117300 met1 +338100 103500 345000 117300 met2 +338100 103500 345000 110400 met1 338100 103500 345000 110400 li1 ) _03389_ @@ -17469,26 +17490,25 @@ _03392_ ) _03393_ ( -331200 144900 338100 151800 met1 -331200 144900 338100 158700 met2 -331200 151800 338100 158700 met1 -324300 151800 338100 158700 met1 +317400 144900 324300 151800 met1 +317400 144900 324300 158700 met2 +317400 151800 324300 158700 met1 +317400 151800 331200 158700 met1 324300 151800 331200 158700 li1 338100 69000 351900 75900 met1 345000 69000 351900 75900 li1 -331200 144900 345000 151800 met1 -338100 144900 345000 151800 met1 -338100 89700 345000 151800 met2 -338100 89700 345000 96600 met1 +317400 89700 324300 151800 met2 +317400 89700 324300 96600 met1 +317400 89700 324300 96600 li1 338100 69000 345000 75900 met1 338100 62100 345000 75900 met2 338100 62100 345000 69000 met1 338100 62100 345000 69000 li1 +317400 89700 345000 96600 met1 +338100 89700 345000 96600 met1 338100 69000 345000 96600 met2 310500 144900 317400 151800 li1 -310500 144900 338100 151800 met1 -317400 89700 324300 96600 li1 -317400 89700 345000 96600 met1 +310500 144900 324300 151800 met1 ) _03394_ ( @@ -17503,19 +17523,19 @@ _03395_ 345000 62100 351900 69000 li1 317400 138000 324300 144900 li1 317400 138000 324300 144900 met1 -317400 96600 324300 144900 met2 -317400 96600 324300 103500 met2 -317400 96600 331200 103500 met3 -324300 96600 331200 103500 met2 -324300 82800 331200 103500 met2 +317400 89700 324300 144900 met2 +317400 89700 324300 96600 met2 +317400 89700 331200 96600 met3 +324300 89700 331200 96600 met2 +324300 82800 331200 96600 met2 324300 82800 331200 89700 met1 331200 62100 338100 69000 met1 331200 48300 338100 69000 met2 331200 48300 338100 55200 met1 331200 48300 338100 55200 li1 -324300 82800 338100 89700 met1 -331200 82800 338100 89700 met1 -331200 62100 338100 89700 met2 +324300 62100 331200 89700 met2 +324300 62100 331200 69000 met1 +324300 62100 338100 69000 met1 317400 82800 324300 89700 li1 317400 82800 331200 89700 met1 ) @@ -17539,16 +17559,20 @@ _03397_ 269100 48300 276000 55200 li1 269100 89700 282900 96600 met1 276000 89700 282900 96600 met1 -276000 89700 282900 110400 met2 -276000 103500 282900 110400 met1 -227700 103500 282900 110400 met1 -227700 103500 234600 110400 met1 -227700 103500 234600 276000 met2 -227700 269100 234600 276000 met1 -227700 269100 324300 276000 met1 -276000 103500 282900 117300 met2 -276000 110400 282900 117300 met1 -276000 110400 310500 117300 met1 +276000 89700 282900 117300 met2 +276000 110400 282900 117300 met2 +276000 110400 303600 117300 met3 +296700 110400 303600 117300 met3 +296700 110400 303600 207000 met4 +296700 200100 303600 207000 met3 +269100 200100 303600 207000 met3 +269100 200100 276000 207000 met2 +269100 200100 276000 276000 met2 +269100 269100 276000 276000 met1 +269100 269100 324300 276000 met1 +296700 110400 310500 117300 met3 +303600 110400 310500 117300 met2 +303600 110400 310500 117300 met1 303600 110400 310500 117300 li1 ) _03398_ @@ -17613,14 +17637,14 @@ _03404_ 317400 82800 324300 96600 met2 317400 82800 324300 89700 met1 317400 82800 324300 89700 li1 +310500 89700 324300 96600 met1 310500 117300 317400 124200 li1 -310500 117300 324300 124200 met1 -317400 117300 324300 124200 met1 -317400 89700 324300 124200 met2 +310500 117300 317400 124200 met1 +310500 89700 317400 124200 met2 +310500 89700 317400 96600 met1 +310500 89700 317400 96600 li1 303600 117300 310500 124200 li1 303600 117300 317400 124200 met1 -310500 89700 317400 96600 li1 -310500 89700 324300 96600 met1 ) _03405_ ( @@ -17639,10 +17663,10 @@ _03406_ _03407_ ( 303600 82800 310500 89700 li1 -303600 82800 310500 89700 met1 -303600 82800 310500 96600 met2 -303600 89700 310500 96600 met1 -303600 89700 317400 96600 met1 +303600 82800 317400 89700 met1 +310500 82800 317400 89700 met1 +310500 82800 317400 96600 met2 +310500 89700 317400 96600 met1 310500 89700 317400 96600 li1 ) _03408_ @@ -17669,24 +17693,19 @@ _03409_ 331200 269100 338100 276000 met3 331200 269100 338100 276000 met2 331200 248400 338100 276000 met2 -331200 248400 338100 255300 met1 317400 69000 324300 75900 li1 -317400 69000 324300 75900 met1 -317400 69000 324300 75900 met2 -317400 69000 379500 75900 met3 -372600 69000 379500 75900 met2 +317400 69000 379500 75900 met1 +372600 69000 379500 75900 met1 372600 69000 379500 124200 met2 +331200 248400 338100 255300 met2 +331200 248400 365700 255300 met3 +358800 248400 365700 255300 met3 +358800 117300 365700 255300 met4 +358800 117300 365700 124200 met3 +358800 117300 379500 124200 met3 +372600 117300 379500 124200 met2 372600 117300 379500 124200 met1 372600 117300 379500 124200 li1 -331200 248400 372600 255300 met1 -365700 248400 372600 255300 met1 -365700 179400 372600 255300 met2 -365700 179400 372600 186300 met1 -365700 179400 386400 186300 met1 -379500 179400 386400 186300 met1 -379500 117300 386400 186300 met2 -379500 117300 386400 124200 met1 -372600 117300 386400 124200 met1 324300 241500 331200 248400 li1 324300 241500 338100 248400 met1 331200 241500 338100 248400 met1 @@ -17831,11 +17850,11 @@ _03422_ _03423_ ( 324300 255300 331200 262200 li1 -227700 255300 331200 262200 met1 -227700 255300 234600 262200 met1 -227700 138000 234600 262200 met2 -227700 138000 234600 144900 met1 -227700 138000 324300 144900 met1 +262200 255300 331200 262200 met1 +262200 255300 269100 262200 met1 +262200 138000 269100 262200 met2 +262200 138000 269100 144900 met1 +262200 138000 324300 144900 met1 317400 138000 324300 144900 li1 317400 138000 324300 144900 met1 317400 138000 324300 151800 met2 @@ -17845,22 +17864,22 @@ _03423_ ) _03424_ ( -303600 131100 310500 138000 li1 -303600 131100 324300 138000 met1 -317400 131100 324300 138000 met1 -317400 131100 324300 144900 met2 -317400 138000 324300 144900 met1 +303600 138000 324300 144900 met1 317400 138000 324300 144900 li1 276000 138000 282900 144900 li1 276000 138000 282900 144900 met1 276000 138000 282900 151800 met2 276000 144900 282900 151800 met1 276000 144900 282900 151800 li1 +276000 138000 310500 144900 met1 276000 131100 282900 144900 met2 276000 131100 282900 138000 met1 276000 131100 289800 138000 met1 282900 131100 289800 138000 li1 -282900 131100 310500 138000 met1 +303600 138000 310500 144900 met1 +303600 131100 310500 144900 met2 +303600 131100 310500 138000 met1 +303600 131100 310500 138000 li1 ) _03425_ ( @@ -17972,23 +17991,23 @@ _03435_ ) _03436_ ( +365700 310500 372600 317400 li1 +365700 310500 372600 317400 met1 +365700 296700 372600 317400 met2 +365700 296700 372600 303600 met1 365700 296700 379500 303600 met1 372600 296700 379500 303600 li1 -365700 296700 372600 303600 met1 -365700 296700 372600 317400 met2 -365700 310500 372600 317400 met1 -365700 310500 372600 317400 li1 331200 282900 338100 289800 li1 331200 282900 338100 289800 met1 331200 262200 338100 289800 met2 331200 262200 338100 269100 met1 331200 262200 338100 269100 li1 -331200 296700 338100 303600 met1 -331200 296700 338100 358800 met2 -331200 351900 338100 358800 met1 331200 351900 338100 358800 li1 -331200 282900 338100 303600 met2 -331200 296700 372600 303600 met1 +331200 351900 338100 358800 met1 +331200 310500 338100 358800 met2 +331200 310500 338100 317400 met1 +331200 282900 338100 317400 met2 +331200 310500 372600 317400 met1 ) _03437_ ( @@ -18675,10 +18694,10 @@ _03496_ _03497_ ( 241500 241500 248400 248400 li1 -241500 241500 248400 248400 met1 -241500 234600 248400 248400 met2 -241500 234600 248400 241500 met1 -241500 234600 255300 241500 met1 +241500 241500 255300 248400 met1 +248400 241500 255300 248400 met1 +248400 234600 255300 248400 met2 +248400 234600 255300 241500 met1 248400 234600 255300 241500 li1 ) _03498_ @@ -18829,12 +18848,13 @@ _03515_ ) _03516_ ( -262200 200100 269100 262200 met2 -262200 200100 269100 207000 met1 -241500 200100 269100 207000 met1 -241500 186300 269100 193200 met1 +262200 186300 269100 262200 met2 +262200 186300 269100 193200 met1 262200 186300 269100 193200 li1 241500 186300 248400 193200 met1 +241500 186300 248400 207000 met2 +241500 200100 248400 207000 met1 +241500 200100 248400 207000 li1 241500 179400 248400 193200 met2 241500 179400 248400 186300 met1 241500 179400 248400 186300 li1 @@ -18848,9 +18868,7 @@ _03516_ 262200 255300 269100 262200 met3 262200 255300 269100 262200 met2 262200 255300 269100 262200 met1 -241500 186300 248400 207000 met2 -241500 200100 248400 207000 met1 -241500 200100 248400 207000 li1 +241500 186300 269100 193200 met1 ) _03517_ ( @@ -18905,7 +18923,12 @@ _03520_ ) _03521_ ( -248400 179400 276000 186300 met1 +248400 179400 255300 186300 li1 +248400 179400 255300 186300 met1 +248400 179400 255300 186300 met2 +248400 179400 276000 186300 met3 +269100 179400 276000 186300 met2 +269100 179400 276000 186300 met1 269100 179400 276000 186300 li1 248400 213900 255300 220800 li1 248400 213900 255300 220800 met1 @@ -18917,8 +18940,6 @@ _03521_ 262200 303600 269100 310500 met1 262200 303600 276000 310500 met1 248400 179400 255300 220800 met2 -248400 179400 255300 186300 met1 -248400 179400 255300 186300 li1 269100 317400 276000 324300 li1 269100 317400 276000 324300 met1 269100 303600 276000 324300 met2 @@ -18935,16 +18956,18 @@ _03522_ ) _03523_ ( -241500 310500 276000 317400 met1 -241500 310500 248400 317400 met1 -241500 220800 248400 317400 met2 -241500 220800 248400 227700 met1 -241500 220800 248400 227700 li1 +234600 310500 276000 317400 met1 +234600 310500 241500 317400 met1 +234600 220800 241500 317400 met2 +234600 220800 241500 227700 met1 +234600 220800 248400 227700 met1 241500 200100 276000 207000 met1 269100 200100 276000 207000 li1 241500 200100 248400 207000 li1 241500 200100 248400 207000 met1 241500 200100 248400 227700 met2 +241500 220800 248400 227700 met1 +241500 220800 248400 227700 li1 269100 317400 276000 324300 li1 269100 317400 276000 324300 met1 269100 310500 276000 324300 met2 @@ -18963,24 +18986,21 @@ _03524_ ) _03525_ ( -255300 179400 262200 186300 met1 -255300 179400 262200 207000 met2 -255300 200100 262200 207000 met1 -255300 179400 269100 186300 met1 262200 179400 269100 186300 met1 262200 172500 269100 186300 met2 262200 172500 269100 179400 met1 262200 172500 269100 179400 li1 +234600 179400 241500 186300 li1 +234600 179400 241500 186300 met1 +234600 179400 241500 207000 met2 +234600 200100 241500 207000 met1 234600 200100 241500 207000 li1 -234600 200100 262200 207000 met1 -262200 234600 269100 241500 li1 +234600 179400 269100 186300 met1 262200 234600 276000 241500 met1 269100 234600 276000 241500 li1 -255300 200100 262200 241500 met2 -255300 234600 262200 241500 met1 -255300 234600 269100 241500 met1 -234600 179400 241500 186300 li1 -234600 179400 262200 186300 met1 +262200 234600 269100 241500 li1 +262200 234600 269100 241500 met1 +262200 179400 269100 241500 met2 ) _03526_ ( @@ -19008,21 +19028,20 @@ _03527_ ) _03528_ ( -255300 241500 262200 248400 li1 -255300 241500 262200 248400 met1 -255300 241500 262200 303600 met2 -255300 296700 262200 303600 met1 -255300 296700 269100 303600 met1 255300 234600 269100 241500 met1 -262200 234600 269100 241500 li1 +255300 234600 262200 241500 li1 +255300 241500 269100 248400 met1 +255300 241500 262200 248400 li1 262200 296700 269100 303600 li1 262200 296700 269100 303600 met1 262200 296700 269100 310500 met2 262200 303600 269100 310500 met1 262200 303600 269100 310500 li1 -255300 234600 262200 241500 li1 -255300 234600 262200 241500 met1 -255300 234600 262200 248400 met2 +262200 234600 269100 241500 li1 +262200 234600 269100 241500 met1 +262200 234600 269100 248400 met2 +262200 241500 269100 248400 met1 +262200 241500 269100 303600 met2 ) _03529_ ( @@ -19034,29 +19053,28 @@ _03529_ ) _03530_ ( -220800 296700 262200 303600 met1 -220800 296700 227700 303600 met1 -220800 193200 227700 303600 met2 -220800 193200 227700 200100 met1 -220800 193200 234600 200100 met1 +262200 296700 269100 303600 met1 +262200 296700 269100 303600 met2 +262200 296700 269100 303600 met3 +262200 172500 269100 303600 met4 +262200 172500 269100 179400 met3 +262200 172500 269100 179400 met2 +262200 172500 269100 179400 met1 +262200 172500 269100 179400 li1 +227700 193200 234600 200100 li1 +227700 193200 234600 200100 met1 +227700 172500 234600 200100 met2 +227700 172500 234600 179400 met1 +227700 172500 241500 179400 met1 234600 172500 241500 179400 li1 234600 172500 269100 179400 met1 -262200 172500 269100 179400 li1 -255300 296700 262200 303600 li1 -255300 296700 262200 303600 met1 -255300 296700 262200 303600 met2 -255300 296700 269100 303600 met3 -262200 296700 269100 303600 met3 262200 296700 269100 310500 met4 262200 303600 269100 310500 met3 262200 303600 269100 310500 met2 262200 303600 269100 310500 met1 262200 303600 269100 310500 li1 -227700 193200 234600 200100 li1 -227700 193200 234600 200100 met1 -227700 172500 234600 200100 met2 -227700 172500 234600 179400 met1 -227700 172500 241500 179400 met1 +255300 296700 262200 303600 li1 +255300 296700 269100 303600 met1 ) _03531_ ( @@ -19112,10 +19130,10 @@ _03534_ _03535_ ( 255300 310500 262200 317400 li1 -255300 310500 269100 317400 met1 -262200 310500 269100 317400 met1 -262200 296700 269100 317400 met2 -262200 296700 269100 303600 met1 +255300 310500 262200 317400 met1 +255300 296700 262200 317400 met2 +255300 296700 262200 303600 met1 +255300 296700 269100 303600 met1 262200 296700 269100 303600 li1 ) _03536_ @@ -19153,10 +19171,10 @@ _03538_ _03539_ ( 241500 172500 248400 179400 li1 -241500 172500 248400 179400 met1 -241500 172500 248400 186300 met2 -241500 179400 248400 186300 met1 -241500 179400 255300 186300 met1 +241500 172500 255300 179400 met1 +248400 172500 255300 179400 met1 +248400 172500 255300 186300 met2 +248400 179400 255300 186300 met1 248400 179400 255300 186300 li1 ) _03540_ @@ -19278,10 +19296,10 @@ _03553_ _03554_ ( 248400 220800 255300 227700 li1 -248400 220800 262200 227700 met1 -255300 220800 262200 227700 met1 -255300 213900 262200 227700 met2 -255300 213900 262200 220800 met1 +248400 220800 255300 227700 met1 +248400 213900 255300 227700 met2 +248400 213900 255300 220800 met1 +248400 213900 262200 220800 met1 255300 213900 262200 220800 li1 ) _03555_ @@ -19327,14 +19345,15 @@ _03559_ 262200 172500 269100 186300 met2 262200 172500 269100 179400 met1 262200 172500 269100 179400 li1 -262200 193200 269100 200100 li1 -262200 193200 269100 200100 met1 -262200 193200 269100 207000 met2 -262200 200100 269100 207000 met1 -262200 200100 276000 207000 met1 +262200 193200 276000 200100 met1 +269100 193200 276000 200100 met1 +269100 193200 276000 207000 met2 +269100 200100 276000 207000 met1 269100 200100 276000 207000 li1 262200 179400 276000 186300 met1 269100 179400 276000 186300 li1 +262200 193200 269100 200100 li1 +262200 193200 269100 200100 met1 262200 186300 269100 200100 met2 262200 186300 269100 193200 met1 262200 186300 269100 193200 li1 @@ -19366,10 +19385,10 @@ _03562_ _03563_ ( 262200 172500 269100 179400 li1 -262200 172500 276000 179400 met1 -269100 172500 276000 179400 met1 -269100 172500 276000 186300 met2 -269100 179400 276000 186300 met1 +262200 172500 269100 179400 met1 +262200 172500 269100 186300 met2 +262200 179400 269100 186300 met1 +262200 179400 276000 186300 met1 269100 179400 276000 186300 li1 ) _03564_ @@ -19379,16 +19398,15 @@ _03564_ 255300 165600 262200 179400 met2 255300 165600 262200 172500 met1 255300 165600 262200 172500 li1 -255300 172500 269100 179400 met1 +255300 200100 262200 207000 met1 +255300 172500 262200 207000 met2 +255300 207000 262200 213900 li1 +255300 207000 262200 213900 met1 +255300 200100 262200 213900 met2 +255300 200100 269100 207000 met1 262200 200100 269100 207000 li1 -262200 200100 269100 207000 met1 -262200 172500 269100 207000 met2 -262200 172500 269100 179400 met1 +255300 172500 269100 179400 met1 262200 172500 269100 179400 li1 -255300 207000 262200 213900 li1 -255300 207000 269100 213900 met1 -262200 207000 269100 213900 met1 -262200 200100 269100 213900 met2 ) _03565_ ( @@ -19414,10 +19432,10 @@ _03567_ _03568_ ( 248400 172500 255300 179400 li1 -248400 172500 262200 179400 met1 -255300 172500 262200 179400 met1 -255300 165600 262200 179400 met2 -255300 165600 262200 172500 met1 +248400 172500 255300 179400 met1 +248400 165600 255300 179400 met2 +248400 165600 255300 172500 met1 +248400 165600 262200 172500 met1 255300 165600 262200 172500 li1 ) _03569_ @@ -19567,20 +19585,23 @@ _03582_ ) _03583_ ( -276000 124200 282900 131100 li1 -276000 124200 282900 131100 met1 -276000 89700 282900 131100 met2 -276000 89700 282900 96600 met1 -269100 89700 282900 96600 met1 +262200 124200 269100 131100 met1 +262200 89700 269100 131100 met2 +262200 89700 269100 96600 met1 +262200 89700 276000 96600 met1 269100 89700 276000 96600 li1 +262200 124200 282900 131100 met1 +276000 124200 282900 131100 li1 269100 213900 276000 220800 li1 269100 213900 276000 220800 met1 269100 193200 276000 220800 met2 269100 193200 276000 200100 met1 269100 193200 276000 200100 li1 -269100 124200 276000 200100 met2 -269100 124200 276000 131100 met1 -269100 124200 282900 131100 met1 +255300 124200 269100 131100 met1 +255300 124200 262200 131100 met1 +255300 124200 262200 200100 met2 +255300 193200 262200 200100 met1 +255300 193200 276000 200100 met1 ) _03584_ ( @@ -19633,20 +19654,20 @@ _03588_ 262200 89700 269100 96600 met1 262200 89700 269100 117300 met2 262200 110400 269100 117300 met1 +262200 110400 276000 117300 met1 +269100 138000 276000 144900 met1 +269100 110400 276000 144900 met2 +269100 110400 276000 117300 met1 +269100 110400 276000 117300 li1 262200 138000 269100 144900 li1 -262200 138000 269100 144900 met1 -262200 110400 269100 144900 met2 +262200 138000 276000 144900 met1 269100 165600 276000 172500 li1 269100 165600 276000 172500 met1 269100 165600 276000 179400 met2 269100 172500 276000 179400 met1 269100 172500 282900 179400 met1 276000 172500 282900 179400 li1 -262200 138000 276000 144900 met1 -269100 138000 276000 144900 met1 269100 138000 276000 172500 met2 -262200 110400 276000 117300 met1 -269100 110400 276000 117300 li1 ) _03589_ ( @@ -19740,21 +19761,23 @@ _03595_ ) _03596_ ( -317400 241500 365700 248400 met1 -358800 241500 372600 248400 met1 +317400 234600 365700 241500 met1 +358800 234600 365700 241500 li1 +317400 241500 324300 248400 li1 +317400 241500 324300 248400 met1 +317400 234600 324300 248400 met2 +317400 234600 324300 241500 met1 +358800 234600 372600 241500 met1 +365700 234600 372600 241500 met1 +365700 234600 372600 248400 met2 +365700 241500 372600 248400 met1 365700 241500 372600 248400 li1 269100 227700 276000 234600 li1 269100 227700 324300 234600 met1 317400 227700 331200 234600 met1 324300 227700 331200 234600 li1 -317400 241500 324300 248400 li1 -317400 241500 324300 248400 met1 -317400 227700 324300 248400 met2 +317400 227700 324300 241500 met2 317400 227700 324300 234600 met1 -358800 234600 365700 241500 li1 -358800 234600 365700 241500 met1 -358800 234600 365700 248400 met2 -358800 241500 365700 248400 met1 ) _03597_ ( @@ -19800,14 +19823,16 @@ _03600_ ( 324300 296700 372600 303600 met1 324300 296700 331200 303600 li1 -317400 213900 372600 220800 met1 -365700 213900 372600 220800 met1 -365700 213900 372600 255300 met2 -365700 248400 372600 255300 met1 -365700 248400 372600 255300 li1 +317400 213900 358800 220800 met1 +351900 213900 358800 220800 met1 +351900 213900 358800 255300 met2 +351900 248400 358800 255300 met1 +351900 248400 372600 255300 met1 365700 296700 372600 303600 li1 365700 296700 372600 303600 met1 365700 248400 372600 303600 met2 +365700 248400 372600 255300 met1 +365700 248400 372600 255300 li1 310500 207000 317400 213900 li1 310500 207000 324300 213900 met1 317400 207000 324300 213900 met1 @@ -19869,13 +19894,17 @@ _03604_ 303600 82800 310500 193200 met2 303600 186300 310500 193200 met1 303600 186300 317400 193200 met1 -310500 186300 317400 193200 li1 255300 82800 262200 117300 met2 255300 110400 262200 117300 met1 255300 110400 262200 117300 li1 -310500 186300 331200 193200 met1 -324300 186300 331200 193200 met1 -324300 186300 331200 200100 met2 +310500 186300 317400 193200 li1 +310500 186300 317400 193200 met1 +310500 186300 317400 193200 met2 +310500 186300 331200 193200 met3 +324300 186300 331200 193200 met3 +324300 186300 331200 200100 met4 +324300 193200 331200 200100 met3 +324300 193200 331200 200100 met2 324300 193200 331200 200100 met1 324300 193200 331200 200100 li1 255300 82800 310500 89700 met1 @@ -20152,8 +20181,10 @@ _03631_ 289800 55200 303600 62100 met1 296700 55200 303600 62100 met1 296700 55200 303600 75900 met2 -296700 69000 303600 75900 met1 -296700 69000 338100 75900 met1 +296700 69000 303600 75900 met2 +296700 69000 338100 75900 met3 +331200 69000 338100 75900 met2 +331200 69000 338100 75900 met1 331200 69000 338100 75900 li1 269100 179400 289800 186300 met3 269100 179400 276000 186300 met2 @@ -20182,19 +20213,21 @@ _03632_ 331200 220800 338100 227700 met1 331200 220800 338100 227700 met2 331200 220800 365700 227700 met3 -358800 220800 365700 227700 met3 -358800 220800 365700 338100 met4 -358800 331200 365700 338100 met3 -331200 331200 365700 338100 met3 -331200 331200 338100 338100 met2 -331200 331200 338100 338100 met1 +358800 220800 365700 227700 met2 +358800 220800 365700 338100 met2 +358800 331200 365700 338100 met1 +331200 331200 365700 338100 met1 331200 331200 338100 338100 li1 -289800 124200 296700 131100 met2 -227700 124200 296700 131100 met3 -227700 124200 234600 131100 met3 -227700 124200 234600 227700 met4 -227700 220800 234600 227700 met3 -227700 220800 338100 227700 met3 +269100 124200 296700 131100 met1 +269100 124200 276000 131100 met1 +269100 124200 276000 179400 met2 +269100 172500 276000 179400 met1 +269100 172500 282900 179400 met1 +276000 172500 282900 179400 met1 +276000 172500 282900 227700 met2 +276000 220800 282900 227700 met2 +276000 220800 338100 227700 met3 +289800 124200 296700 131100 met1 289800 124200 296700 138000 met2 289800 131100 296700 138000 met1 289800 131100 296700 138000 li1 @@ -20217,14 +20250,19 @@ _03633_ 324300 144900 338100 151800 met1 331200 144900 338100 151800 li1 324300 241500 331200 248400 li1 -324300 241500 331200 248400 met1 -324300 200100 331200 248400 met2 -324300 200100 331200 207000 met1 -296700 200100 331200 207000 met1 -296700 200100 303600 207000 met1 -296700 144900 303600 207000 met2 -296700 144900 303600 151800 met1 -296700 144900 331200 151800 met1 +317400 241500 331200 248400 met1 +317400 241500 324300 248400 met1 +317400 193200 324300 248400 met2 +317400 193200 324300 200100 met2 +303600 193200 324300 200100 met3 +303600 193200 310500 200100 met3 +303600 186300 310500 200100 met4 +303600 186300 310500 193200 met3 +303600 186300 324300 193200 met3 +317400 186300 324300 193200 met2 +317400 144900 324300 193200 met2 +317400 144900 324300 151800 met1 +317400 144900 331200 151800 met1 324300 144900 331200 151800 li1 ) _03634_ @@ -20279,11 +20317,10 @@ _03636_ ) _03637_ ( -338100 220800 345000 227700 li1 -338100 220800 345000 227700 met1 -338100 220800 345000 227700 met2 -338100 220800 345000 227700 met3 -338100 220800 345000 331200 met4 +338100 220800 345000 241500 met2 +338100 234600 345000 241500 met2 +338100 234600 345000 241500 met3 +338100 234600 345000 331200 met4 338100 324300 345000 331200 met3 331200 324300 345000 331200 met3 331200 324300 338100 331200 met2 @@ -20292,15 +20329,26 @@ _03637_ 289800 89700 296700 96600 li1 289800 89700 296700 96600 met1 289800 89700 296700 151800 met2 -289800 144900 296700 151800 met1 -289800 144900 296700 151800 li1 289800 89700 331200 96600 met1 324300 89700 331200 96600 li1 -276000 144900 296700 151800 met1 -276000 144900 282900 151800 met1 -276000 144900 282900 227700 met2 -276000 220800 282900 227700 met2 -276000 220800 345000 227700 met3 +289800 144900 296700 151800 li1 +289800 144900 296700 151800 met1 +289800 144900 296700 151800 met2 +289800 144900 296700 151800 met3 +289800 144900 296700 200100 met4 +289800 193200 296700 200100 met3 +289800 193200 303600 200100 met3 +296700 193200 303600 200100 met2 +296700 193200 303600 213900 met2 +296700 207000 303600 213900 met2 +296700 207000 338100 213900 met3 +331200 207000 338100 213900 met3 +331200 207000 338100 227700 met4 +331200 220800 338100 227700 met3 +331200 220800 345000 227700 met3 +338100 220800 345000 227700 met2 +338100 220800 345000 227700 met1 +338100 220800 345000 227700 li1 ) _03638_ ( @@ -20344,16 +20392,21 @@ _03639_ ) _03640_ ( -324300 234600 331200 241500 li1 -324300 234600 331200 241500 met1 324300 234600 331200 338100 met2 324300 331200 331200 338100 met1 324300 331200 331200 338100 li1 -241500 138000 296700 144900 met1 -241500 138000 248400 144900 met1 -241500 138000 248400 241500 met2 -241500 234600 248400 241500 met1 -241500 234600 331200 241500 met1 +289800 144900 296700 151800 li1 +289800 144900 296700 151800 met1 +289800 144900 296700 158700 met2 +289800 151800 296700 158700 met2 +289800 151800 303600 158700 met3 +296700 151800 303600 158700 met3 +296700 151800 303600 241500 met4 +296700 234600 303600 241500 met3 +296700 234600 331200 241500 met3 +324300 234600 331200 241500 met2 +324300 234600 331200 241500 met1 +324300 234600 331200 241500 li1 289800 69000 296700 75900 li1 289800 69000 296700 75900 met1 289800 69000 296700 75900 met2 @@ -20361,11 +20414,7 @@ _03640_ 324300 69000 331200 75900 met2 324300 69000 331200 75900 met1 324300 69000 331200 75900 li1 -289800 69000 296700 144900 met2 -289800 138000 296700 144900 met1 -289800 138000 296700 151800 met2 -289800 144900 296700 151800 met1 -289800 144900 296700 151800 li1 +289800 69000 296700 151800 met2 ) _03641_ ( @@ -20375,15 +20424,22 @@ _03641_ _03642_ ( 303600 69000 338100 75900 met1 -331200 69000 338100 75900 li1 -338100 172500 345000 186300 met2 -338100 172500 345000 179400 met2 -248400 172500 345000 179400 met3 -248400 172500 255300 179400 met2 -248400 75900 255300 179400 met2 -248400 75900 255300 82800 met1 -248400 75900 303600 82800 met1 296700 75900 303600 82800 li1 +296700 75900 310500 82800 met1 +303600 75900 310500 82800 met1 +303600 69000 310500 82800 met2 +303600 69000 310500 75900 met1 +303600 69000 310500 75900 li1 +331200 179400 345000 186300 met1 +338100 179400 345000 186300 li1 +331200 179400 338100 186300 met1 +331200 179400 338100 186300 met2 +331200 179400 338100 186300 met3 +331200 69000 338100 186300 met4 +331200 69000 338100 75900 met3 +331200 69000 338100 75900 met2 +331200 69000 338100 75900 met1 +331200 69000 338100 75900 li1 296700 234600 303600 241500 li1 296700 234600 303600 241500 met1 296700 207000 303600 241500 met2 @@ -20391,16 +20447,6 @@ _03642_ 296700 207000 338100 213900 met3 331200 207000 338100 213900 met3 331200 179400 338100 213900 met4 -331200 179400 338100 186300 met3 -331200 179400 345000 186300 met3 -338100 179400 345000 186300 met2 -338100 179400 345000 186300 met1 -338100 179400 345000 186300 li1 -296700 75900 310500 82800 met1 -303600 75900 310500 82800 met1 -303600 69000 310500 82800 met2 -303600 69000 310500 75900 met1 -303600 69000 310500 75900 li1 ) _03643_ ( @@ -20453,10 +20499,8 @@ _03645_ _03646_ ( 338100 255300 345000 262200 li1 -331200 255300 345000 262200 met1 -331200 255300 338100 262200 met1 -331200 234600 338100 262200 met2 -331200 234600 338100 241500 met1 +338100 255300 345000 262200 met1 +338100 234600 345000 262200 met2 331200 124200 345000 131100 met1 338100 124200 345000 131100 li1 331200 131100 351900 138000 met1 @@ -20464,10 +20508,22 @@ _03646_ 331200 124200 338100 131100 li1 331200 124200 338100 131100 met1 331200 124200 338100 138000 met2 -331200 234600 351900 241500 met1 -345000 234600 351900 241500 li1 331200 131100 338100 138000 met1 -331200 131100 338100 241500 met2 +331200 131100 338100 172500 met2 +331200 165600 338100 172500 met1 +331200 165600 345000 172500 met1 +338100 165600 345000 172500 met1 +338100 165600 345000 207000 met2 +338100 200100 345000 207000 met2 +324300 200100 345000 207000 met3 +324300 200100 331200 207000 met3 +324300 200100 331200 241500 met4 +324300 234600 331200 241500 met3 +324300 234600 345000 241500 met3 +338100 234600 345000 241500 met2 +338100 234600 345000 241500 met1 +338100 234600 351900 241500 met1 +345000 234600 351900 241500 li1 ) _03647_ ( @@ -20519,21 +20575,22 @@ _03650_ 345000 255300 351900 262200 met1 345000 234600 351900 262200 met2 345000 234600 351900 241500 met1 -338100 144900 345000 151800 met1 -338100 144900 345000 186300 met2 -338100 179400 345000 186300 met1 -338100 179400 365700 186300 met1 -358800 179400 365700 186300 met1 -358800 179400 365700 241500 met2 +331200 144900 338100 151800 li1 +331200 144900 338100 151800 met1 +331200 144900 338100 193200 met2 +331200 186300 338100 193200 met1 +331200 186300 365700 193200 met1 +358800 186300 365700 193200 met1 +358800 186300 365700 241500 met2 358800 234600 365700 241500 met1 345000 234600 365700 241500 met1 338100 82800 351900 89700 met1 345000 82800 351900 89700 li1 -331200 144900 338100 151800 li1 331200 144900 345000 151800 met1 -338100 82800 345000 89700 li1 -338100 82800 345000 89700 met1 +338100 144900 345000 151800 met1 338100 82800 345000 151800 met2 +338100 82800 345000 89700 met1 +338100 82800 345000 89700 li1 338100 234600 345000 241500 li1 338100 234600 351900 241500 met1 ) @@ -20562,9 +20619,11 @@ _03652_ 345000 103500 351900 110400 met1 345000 103500 351900 110400 li1 338100 220800 345000 227700 li1 -338100 220800 351900 227700 met1 -345000 220800 351900 227700 met1 -345000 179400 351900 227700 met2 +338100 220800 345000 227700 met1 +338100 220800 345000 227700 met2 +338100 220800 351900 227700 met3 +345000 220800 351900 227700 met3 +345000 179400 351900 227700 met4 345000 75900 351900 110400 met2 ) _03653_ @@ -20751,16 +20810,17 @@ _03669_ _03670_ ( 296700 69000 303600 75900 li1 -296700 69000 310500 75900 met1 -303600 69000 310500 75900 li1 -289800 89700 296700 96600 li1 -289800 89700 296700 96600 met1 -289800 69000 296700 96600 met2 -289800 69000 296700 75900 met1 +289800 69000 303600 75900 met1 289800 69000 296700 75900 li1 -289800 89700 338100 96600 met1 +303600 89700 310500 96600 met1 +303600 69000 310500 96600 met2 +303600 69000 310500 75900 met1 +303600 69000 310500 75900 li1 +303600 89700 338100 96600 met1 331200 89700 338100 96600 li1 -289800 69000 303600 75900 met1 +296700 69000 310500 75900 met1 +289800 89700 296700 96600 li1 +289800 89700 310500 96600 met1 ) _03671_ ( @@ -20794,15 +20854,15 @@ _03675_ 331200 82800 338100 96600 met2 331200 82800 338100 89700 met1 331200 82800 338100 89700 li1 -338100 82800 345000 89700 li1 -338100 82800 345000 89700 met1 -338100 69000 345000 89700 met2 -338100 69000 345000 75900 met1 +331200 69000 338100 89700 met2 +331200 69000 338100 75900 met1 +331200 69000 345000 75900 met1 338100 69000 345000 75900 li1 -331200 82800 345000 89700 met1 331200 89700 338100 131100 met2 331200 124200 338100 131100 met1 331200 124200 338100 131100 li1 +331200 82800 345000 89700 met1 +338100 82800 345000 89700 li1 ) _03676_ ( @@ -20834,10 +20894,10 @@ _03679_ _03680_ ( 331200 248400 338100 255300 li1 -331200 248400 345000 255300 met1 -338100 248400 345000 255300 met1 -338100 241500 345000 255300 met2 -338100 241500 345000 248400 met1 +331200 248400 338100 255300 met1 +331200 241500 338100 255300 met2 +331200 241500 338100 248400 met1 +331200 241500 345000 248400 met1 338100 241500 345000 248400 li1 ) _03681_ @@ -20914,10 +20974,10 @@ _03689_ _03690_ ( 331200 248400 338100 255300 li1 -331200 248400 345000 255300 met1 -338100 248400 345000 255300 met1 -338100 241500 345000 255300 met2 -338100 241500 345000 248400 met1 +331200 248400 338100 255300 met1 +331200 241500 338100 255300 met2 +331200 241500 338100 248400 met1 +331200 241500 345000 248400 met1 338100 241500 345000 248400 li1 ) _03691_ @@ -21060,11 +21120,10 @@ _03703_ ) _03704_ ( -345000 186300 351900 193200 li1 -345000 186300 351900 193200 met1 -345000 186300 351900 193200 met2 -345000 186300 351900 193200 met3 -345000 186300 351900 303600 met4 +345000 186300 351900 227700 met2 +345000 220800 351900 227700 met2 +345000 220800 351900 227700 met3 +345000 220800 351900 303600 met4 345000 296700 351900 303600 met3 345000 296700 351900 303600 met2 345000 296700 351900 303600 met1 @@ -21073,18 +21132,20 @@ _03704_ 345000 55200 351900 62100 met1 345000 55200 351900 62100 met2 345000 55200 351900 62100 met3 -345000 55200 351900 131100 met4 -345000 124200 351900 131100 met3 -345000 124200 351900 131100 met2 +345000 55200 351900 124200 met4 +345000 117300 351900 124200 met3 +345000 117300 351900 124200 met2 +345000 117300 351900 131100 met2 345000 124200 351900 131100 met1 345000 124200 351900 131100 li1 -345000 124200 351900 138000 met4 -345000 131100 351900 138000 met3 -345000 131100 351900 138000 met2 -345000 131100 351900 186300 met2 -345000 179400 351900 186300 met2 -345000 179400 351900 186300 met3 -345000 179400 351900 193200 met4 +345000 124200 351900 158700 met2 +345000 151800 351900 158700 met2 +345000 151800 351900 158700 met3 +345000 151800 351900 193200 met4 +345000 186300 351900 193200 met3 +345000 186300 351900 193200 met2 +345000 186300 351900 193200 met1 +345000 186300 351900 193200 li1 ) _03705_ ( @@ -21144,9 +21205,9 @@ _03709_ 331200 165600 338100 207000 met2 331200 200100 338100 207000 met1 331200 200100 338100 207000 li1 -331200 165600 372600 172500 met1 -365700 165600 372600 172500 met1 -365700 158700 372600 172500 met2 +331200 158700 338100 172500 met2 +331200 158700 338100 165600 met1 +331200 158700 372600 165600 met1 331200 200100 338100 213900 met2 331200 207000 338100 213900 met1 331200 207000 379500 213900 met1 @@ -21185,19 +21246,19 @@ _03713_ ( 365700 186300 372600 193200 li1 365700 186300 372600 193200 met1 +365700 186300 372600 207000 met2 +365700 200100 372600 207000 met1 +365700 200100 372600 207000 li1 365700 179400 372600 193200 met2 365700 179400 372600 186300 met1 -365700 179400 379500 186300 met1 -372600 179400 379500 186300 li1 +338100 179400 372600 186300 met1 338100 179400 345000 186300 li1 338100 179400 345000 186300 met1 338100 179400 345000 207000 met2 338100 200100 345000 207000 met1 338100 200100 345000 207000 li1 -365700 200100 372600 207000 li1 -365700 200100 372600 207000 met1 -365700 186300 372600 207000 met2 -338100 200100 372600 207000 met1 +365700 179400 379500 186300 met1 +372600 179400 379500 186300 li1 ) _03714_ ( @@ -21213,9 +21274,12 @@ _03715_ 351900 131100 358800 138000 li1 345000 131100 358800 138000 met1 345000 131100 351900 138000 li1 -351900 213900 365700 220800 met1 -358800 213900 365700 220800 met1 -358800 138000 365700 220800 met2 +351900 213900 358800 220800 met1 +351900 172500 358800 220800 met2 +351900 172500 358800 179400 met1 +351900 172500 365700 179400 met1 +358800 172500 365700 179400 met1 +358800 138000 365700 179400 met2 358800 138000 365700 144900 met1 358800 131100 365700 144900 met2 358800 131100 365700 138000 met1 @@ -21223,7 +21287,6 @@ _03715_ 351900 220800 358800 227700 li1 351900 220800 358800 227700 met1 351900 213900 358800 227700 met2 -351900 213900 358800 220800 met1 351900 138000 358800 144900 li1 351900 138000 365700 144900 met1 345000 213900 351900 220800 li1 @@ -21284,16 +21347,17 @@ _03720_ 351900 172500 358800 186300 met2 351900 172500 358800 179400 met1 351900 172500 358800 179400 li1 -345000 200100 351900 207000 met1 -345000 200100 351900 213900 met2 -345000 207000 351900 213900 met1 345000 207000 351900 213900 li1 -345000 179400 358800 186300 met1 -345000 200100 365700 207000 met1 +345000 207000 351900 213900 met1 +345000 200100 351900 213900 met2 +345000 200100 351900 207000 met1 +345000 200100 358800 207000 met1 +351900 200100 365700 207000 met1 358800 200100 365700 207000 li1 +351900 179400 358800 207000 met2 +351900 200100 358800 207000 met1 345000 179400 351900 186300 li1 -345000 179400 351900 186300 met1 -345000 179400 351900 207000 met2 +345000 179400 358800 186300 met1 ) _03721_ ( @@ -21312,10 +21376,9 @@ _03722_ 345000 151800 351900 179400 met2 345000 151800 351900 158700 met1 345000 151800 351900 158700 li1 -345000 207000 365700 213900 met1 -358800 207000 365700 213900 met1 -358800 207000 365700 220800 met2 -358800 213900 365700 220800 met1 +345000 207000 351900 220800 met2 +345000 213900 351900 220800 met1 +345000 213900 365700 220800 met1 358800 213900 365700 220800 li1 ) _03723_ @@ -21329,29 +21392,27 @@ _03723_ _03724_ ( 345000 186300 351900 193200 li1 -345000 186300 365700 193200 met1 -358800 186300 365700 193200 met1 -358800 179400 365700 193200 met2 -358800 179400 365700 186300 met1 +345000 186300 351900 193200 met1 +345000 179400 351900 193200 met2 +345000 179400 351900 186300 met1 +345000 179400 365700 186300 met1 358800 179400 365700 186300 li1 ) _03725_ ( -358800 179400 372600 186300 met1 365700 179400 372600 186300 met1 365700 179400 372600 193200 met2 365700 186300 372600 193200 met1 365700 186300 372600 193200 li1 365700 186300 379500 193200 met1 372600 186300 379500 193200 li1 -358800 179400 365700 186300 li1 -358800 179400 365700 186300 met1 -358800 158700 365700 186300 met2 -358800 158700 365700 165600 met1 -358800 158700 372600 165600 met1 +365700 158700 372600 186300 met2 +365700 158700 372600 165600 met1 365700 158700 372600 165600 li1 365700 158700 379500 165600 met1 372600 158700 379500 165600 li1 +358800 179400 365700 186300 li1 +358800 179400 372600 186300 met1 ) _03726_ ( @@ -21591,9 +21652,12 @@ _03752_ 351900 151800 358800 158700 li1 351900 172500 358800 179400 li1 351900 172500 358800 179400 met1 -351900 172500 358800 193200 met2 -351900 186300 358800 193200 met1 -351900 186300 365700 193200 met1 +351900 172500 358800 186300 met2 +351900 179400 358800 186300 met2 +351900 179400 365700 186300 met3 +358800 179400 365700 186300 met2 +358800 179400 365700 193200 met2 +358800 186300 365700 193200 met1 358800 186300 365700 193200 li1 351900 158700 358800 179400 met2 351900 138000 358800 158700 met2 @@ -21630,23 +21694,20 @@ _03757_ ( 296700 89700 386400 96600 met1 379500 89700 386400 96600 li1 -296700 158700 303600 165600 li1 -296700 158700 303600 165600 met1 -296700 158700 303600 165600 met2 -296700 158700 303600 165600 met3 -296700 158700 303600 213900 met4 -296700 207000 303600 213900 met3 -296700 207000 386400 213900 met3 -379500 207000 386400 213900 met3 -379500 207000 386400 317400 met4 -379500 310500 386400 317400 met3 +241500 151800 303600 158700 met3 +241500 151800 248400 158700 met3 +241500 151800 248400 317400 met4 +241500 310500 248400 317400 met3 +241500 310500 386400 317400 met3 379500 310500 386400 317400 met2 379500 310500 386400 317400 met1 379500 310500 386400 317400 li1 296700 117300 303600 124200 met1 296700 117300 303600 124200 met2 296700 117300 303600 124200 met3 -296700 117300 303600 165600 met4 +296700 117300 303600 158700 met4 +296700 151800 303600 158700 met3 +296700 151800 303600 158700 met2 289800 117300 296700 124200 li1 289800 117300 303600 124200 met1 296700 89700 303600 96600 li1 @@ -21654,6 +21715,9 @@ _03757_ 296700 89700 303600 96600 met2 296700 89700 303600 96600 met3 296700 89700 303600 124200 met4 +296700 151800 303600 165600 met2 +296700 158700 303600 165600 met1 +296700 158700 303600 165600 li1 ) _03758_ ( @@ -21717,14 +21781,10 @@ _03762_ 289800 165600 296700 172500 li1 379500 96600 386400 103500 li1 379500 96600 386400 103500 met1 -379500 96600 386400 103500 met2 -379500 96600 386400 103500 met3 -379500 96600 386400 324300 met4 -379500 317400 386400 324300 met3 -379500 317400 386400 324300 met2 +379500 96600 386400 324300 met2 379500 317400 386400 324300 met1 379500 317400 386400 324300 li1 -289800 96600 386400 103500 met3 +289800 96600 386400 103500 met1 289800 89700 296700 96600 li1 289800 89700 296700 96600 met1 289800 89700 296700 103500 met2 @@ -21732,24 +21792,30 @@ _03762_ _03763_ ( 282900 103500 289800 110400 li1 -282900 103500 296700 110400 met1 -289800 103500 296700 110400 met1 -289800 96600 296700 110400 met2 -289800 96600 296700 103500 met1 +282900 103500 289800 110400 met1 +282900 96600 289800 110400 met2 +282900 96600 289800 103500 met1 +282900 96600 296700 103500 met1 289800 96600 296700 103500 li1 ) _03764_ ( -289800 82800 400000 89700 met1 +289800 82800 296700 89700 li1 +289800 82800 296700 89700 met1 +289800 82800 296700 89700 met2 +289800 82800 400000 89700 met3 +386400 82800 400000 89700 met2 +386400 82800 400000 89700 met1 386400 82800 400000 89700 li1 -289800 158700 296700 165600 li1 -289800 158700 296700 165600 met1 -289800 158700 296700 165600 met2 -262200 158700 296700 165600 met3 -262200 158700 269100 165600 met3 -262200 158700 269100 317400 met4 -262200 310500 269100 317400 met3 -262200 310500 400000 317400 met3 +227700 151800 296700 158700 met1 +227700 151800 234600 158700 met1 +227700 151800 234600 193200 met2 +227700 186300 234600 193200 met1 +220800 186300 234600 193200 met1 +220800 186300 227700 193200 met1 +220800 186300 227700 317400 met2 +220800 310500 227700 317400 met2 +220800 310500 400000 317400 met3 386400 310500 400000 317400 met2 386400 310500 400000 317400 met1 386400 310500 400000 317400 li1 @@ -21757,13 +21823,14 @@ _03764_ 289800 96600 296700 103500 met1 289800 96600 296700 103500 met2 289800 96600 296700 103500 met3 -289800 96600 296700 110400 met4 -289800 103500 296700 110400 met3 -289800 103500 296700 110400 met2 -289800 103500 296700 165600 met2 -289800 82800 296700 89700 li1 -289800 82800 296700 89700 met1 +289800 96600 296700 158700 met4 +289800 151800 296700 158700 met3 +289800 151800 296700 158700 met2 +289800 151800 296700 158700 met1 289800 82800 296700 103500 met2 +289800 151800 296700 165600 met2 +289800 158700 296700 165600 met1 +289800 158700 296700 165600 li1 ) _03765_ ( @@ -21776,6 +21843,8 @@ _03765_ ) _03766_ ( +296700 103500 303600 110400 li1 +296700 103500 303600 110400 met1 296700 103500 303600 165600 met2 296700 158700 303600 165600 met1 296700 158700 310500 165600 met1 @@ -21789,13 +21858,7 @@ _03766_ 379500 75900 386400 82800 li1 296700 75900 303600 82800 li1 296700 75900 303600 82800 met1 -296700 75900 303600 82800 met2 -296700 75900 303600 82800 met3 -296700 75900 303600 110400 met4 -296700 103500 303600 110400 met3 -296700 103500 303600 110400 met2 -296700 103500 303600 110400 met1 -296700 103500 303600 110400 li1 +296700 75900 303600 110400 met2 ) _03767_ ( @@ -21880,13 +21943,13 @@ _03773_ 372600 158700 379500 165600 met1 372600 144900 379500 165600 met2 372600 144900 379500 151800 met1 -345000 103500 379500 110400 met1 -372600 103500 379500 110400 met1 -372600 103500 379500 124200 met2 -372600 117300 379500 124200 met1 -372600 117300 379500 151800 met2 345000 103500 351900 110400 li1 345000 103500 351900 110400 met1 +345000 103500 351900 124200 met2 +345000 117300 351900 124200 met1 +345000 117300 379500 124200 met1 +372600 117300 379500 124200 met1 +372600 117300 379500 151800 met2 345000 96600 351900 110400 met2 345000 96600 351900 103500 met1 345000 96600 351900 103500 li1 @@ -22130,22 +22193,21 @@ _03799_ 372600 338100 379500 351900 met2 372600 345000 379500 351900 met1 372600 345000 379500 351900 li1 -234600 317400 365700 324300 met1 -234600 317400 241500 324300 met1 -234600 220800 241500 324300 met2 -234600 220800 241500 227700 met2 -227700 220800 241500 227700 met3 -227700 220800 234600 227700 met3 -227700 27600 234600 227700 met4 -227700 27600 234600 34500 met3 -227700 27600 358800 34500 met3 +358800 317400 386400 324300 met3 +379500 317400 386400 324300 met3 +379500 27600 386400 324300 met4 +379500 27600 386400 34500 met3 +351900 27600 386400 34500 met3 351900 27600 358800 34500 met2 351900 27600 358800 34500 met1 351900 27600 358800 34500 li1 358800 338100 365700 345000 li1 358800 338100 365700 345000 met1 -358800 317400 365700 345000 met2 -358800 317400 365700 324300 met1 +358800 338100 365700 345000 met2 +358800 338100 365700 345000 met3 +358800 317400 365700 345000 met4 +358800 317400 365700 324300 met3 +358800 317400 365700 324300 met2 351900 310500 358800 317400 li1 351900 310500 365700 317400 met1 358800 310500 365700 317400 met1 @@ -22164,12 +22226,13 @@ _03800_ 365700 310500 372600 317400 li1 365700 241500 372600 248400 li1 365700 241500 372600 248400 met1 -365700 234600 372600 248400 met2 -365700 234600 372600 241500 met1 -365700 234600 379500 241500 met1 -372600 234600 379500 241500 met1 -372600 117300 379500 241500 met2 -372600 117300 379500 124200 met1 +365700 186300 372600 248400 met2 +365700 186300 372600 193200 met1 +365700 186300 400000 193200 met1 +386400 186300 400000 193200 met1 +386400 117300 400000 193200 met2 +386400 117300 400000 124200 met1 +372600 117300 400000 124200 met1 372600 117300 379500 124200 li1 351900 296700 358800 310500 met2 351900 303600 358800 310500 met1 @@ -22217,9 +22280,13 @@ _03804_ 351900 310500 358800 317400 met1 351900 172500 358800 317400 met2 351900 172500 358800 179400 met1 -351900 172500 365700 179400 met1 -358800 172500 365700 179400 met1 -358800 41400 365700 179400 met2 +351900 172500 372600 179400 met1 +365700 172500 372600 179400 met1 +365700 103500 372600 179400 met2 +365700 103500 372600 110400 met1 +358800 103500 372600 110400 met1 +358800 103500 365700 110400 met1 +358800 41400 365700 110400 met2 358800 41400 365700 48300 met1 358800 41400 365700 48300 li1 351900 310500 358800 345000 met2 @@ -22294,9 +22361,9 @@ _03810_ 365700 241500 372600 248400 li1 365700 241500 372600 248400 met1 365700 179400 372600 248400 met2 -365700 179400 372600 186300 met1 -365700 179400 386400 186300 met1 -379500 179400 386400 186300 met1 +365700 179400 372600 186300 met2 +365700 179400 386400 186300 met3 +379500 179400 386400 186300 met2 379500 172500 386400 186300 met2 379500 172500 386400 179400 met1 379500 172500 386400 179400 li1 @@ -22441,10 +22508,10 @@ _03821_ _03822_ ( 282900 158700 289800 165600 li1 -282900 158700 296700 165600 met1 -289800 158700 296700 165600 met1 -289800 158700 296700 172500 met2 -289800 165600 296700 172500 met1 +282900 158700 289800 165600 met1 +282900 158700 289800 172500 met2 +282900 165600 289800 172500 met1 +282900 165600 296700 172500 met1 289800 165600 296700 172500 li1 ) _03823_ @@ -22504,18 +22571,16 @@ _03829_ _03830_ ( 255300 41400 262200 48300 li1 -255300 41400 269100 48300 met1 -262200 41400 269100 48300 met1 -262200 41400 269100 62100 met2 -262200 55200 269100 62100 met1 -262200 55200 276000 62100 met1 -269100 55200 276000 62100 li1 -269100 55200 296700 62100 met1 -241500 41400 248400 48300 li1 -241500 41400 262200 48300 met1 +255300 41400 296700 48300 met1 289800 55200 296700 62100 li1 289800 55200 296700 62100 met1 -289800 20700 296700 62100 met2 +289800 41400 296700 62100 met2 +289800 41400 296700 48300 met1 +241500 41400 248400 48300 li1 +241500 41400 262200 48300 met1 +269100 55200 296700 62100 met1 +269100 55200 276000 62100 li1 +289800 20700 296700 48300 met2 289800 20700 296700 27600 met1 289800 20700 303600 27600 met1 296700 20700 303600 27600 li1 @@ -22527,11 +22592,10 @@ _03831_ 303600 48300 310500 55200 li1 303600 48300 317400 55200 met1 310500 48300 317400 55200 li1 -310500 48300 345000 55200 met1 -338100 48300 345000 55200 met1 -338100 48300 345000 62100 met2 -338100 55200 345000 62100 met1 -338100 55200 351900 62100 met1 +310500 48300 351900 55200 met1 +345000 48300 351900 55200 met1 +345000 48300 351900 62100 met2 +345000 55200 351900 62100 met1 345000 55200 351900 62100 li1 ) _03832_ @@ -23154,10 +23218,10 @@ _03893_ _03894_ ( 372600 241500 379500 248400 li1 -372600 241500 379500 248400 met1 -372600 234600 379500 248400 met2 -372600 234600 379500 241500 met1 -372600 234600 386400 241500 met1 +372600 241500 386400 248400 met1 +379500 241500 386400 248400 met1 +379500 234600 386400 248400 met2 +379500 234600 386400 241500 met1 379500 234600 386400 241500 li1 ) _03895_ @@ -23543,16 +23607,11 @@ _03930_ ) _03931_ ( -317400 179400 324300 186300 li1 -317400 179400 324300 186300 met1 -317400 179400 324300 193200 met2 -317400 186300 324300 193200 met1 -303600 186300 324300 193200 met1 -303600 186300 310500 193200 met1 -303600 186300 310500 220800 met2 -303600 213900 310500 220800 met1 -303600 213900 324300 220800 met1 317400 213900 324300 220800 li1 +303600 213900 324300 220800 met1 +303600 213900 310500 220800 met1 +303600 186300 310500 220800 met2 +303600 186300 310500 193200 met1 296700 96600 303600 103500 met1 296700 55200 303600 103500 met2 296700 55200 303600 62100 met1 @@ -23560,15 +23619,14 @@ _03931_ 317400 55200 324300 62100 li1 276000 96600 303600 103500 met1 276000 96600 282900 103500 met1 -276000 96600 282900 117300 met2 -276000 110400 282900 117300 met1 -269100 110400 282900 117300 met1 -269100 110400 276000 117300 met1 -269100 110400 276000 179400 met2 -269100 172500 276000 179400 met1 -269100 172500 324300 179400 met1 -317400 172500 324300 179400 met1 -317400 172500 324300 186300 met2 +276000 96600 282900 193200 met2 +276000 186300 282900 193200 met1 +276000 186300 310500 193200 met1 +303600 186300 324300 193200 met1 +317400 186300 324300 193200 met1 +317400 179400 324300 193200 met2 +317400 179400 324300 186300 met1 +317400 179400 324300 186300 li1 296700 96600 324300 103500 met1 317400 96600 324300 103500 li1 ) @@ -23690,12 +23748,11 @@ _03943_ 310500 55200 317400 62100 li1 310500 55200 324300 62100 met1 317400 55200 324300 62100 li1 -317400 55200 324300 62100 met1 -317400 55200 324300 69000 met2 -317400 62100 324300 69000 met1 -317400 62100 331200 69000 met1 -324300 62100 331200 69000 li1 +317400 55200 331200 62100 met1 +324300 55200 331200 62100 met1 +324300 55200 331200 69000 met2 324300 62100 331200 69000 met1 +324300 62100 331200 69000 li1 324300 62100 331200 75900 met2 324300 69000 331200 75900 met1 324300 69000 338100 75900 met1 @@ -23881,10 +23938,10 @@ _03961_ _03962_ ( 282900 179400 289800 186300 li1 -282900 179400 289800 186300 met1 -282900 179400 289800 193200 met2 -282900 186300 289800 193200 met1 -282900 186300 296700 193200 met1 +282900 179400 296700 186300 met1 +289800 179400 296700 186300 met1 +289800 179400 296700 193200 met2 +289800 186300 296700 193200 met1 289800 186300 296700 193200 li1 ) _03963_ @@ -23911,12 +23968,11 @@ _03966_ 317400 186300 324300 193200 met1 317400 186300 331200 193200 met1 324300 186300 331200 193200 li1 -317400 165600 324300 186300 met2 317400 165600 324300 172500 li1 317400 165600 324300 172500 met1 -317400 165600 324300 172500 met2 -296700 165600 324300 172500 met3 -296700 165600 303600 172500 met2 +317400 165600 324300 186300 met2 +296700 165600 324300 172500 met1 +296700 165600 303600 172500 met1 296700 75900 303600 172500 met2 296700 75900 303600 82800 met1 296700 75900 324300 82800 met1 @@ -23973,8 +24029,11 @@ _03971_ 351900 317400 358800 324300 met1 351900 317400 358800 324300 met2 351900 317400 358800 324300 met3 -351900 234600 358800 324300 met4 -351900 234600 358800 241500 met3 +351900 262200 358800 324300 met4 +351900 262200 358800 269100 met3 +351900 262200 358800 269100 met2 +351900 234600 358800 269100 met2 +351900 234600 358800 241500 met2 351900 234600 379500 241500 met3 372600 234600 379500 241500 met3 372600 220800 379500 241500 met4 @@ -24010,11 +24069,17 @@ _03974_ ) _03975_ ( -351900 317400 386400 324300 met1 -379500 317400 386400 324300 met1 -379500 207000 386400 324300 met2 -379500 207000 386400 213900 met1 -379500 207000 386400 213900 li1 +351900 310500 358800 317400 li1 +351900 310500 358800 317400 met1 +351900 310500 358800 317400 met2 +351900 310500 358800 317400 met3 +351900 220800 358800 317400 met4 +351900 220800 358800 227700 met3 +351900 220800 365700 227700 met3 +358800 220800 365700 227700 met2 +358800 207000 365700 227700 met2 +358800 207000 365700 213900 met1 +358800 207000 386400 213900 met1 379500 55200 400000 62100 met1 386400 55200 400000 62100 li1 351900 41400 358800 48300 li1 @@ -24022,14 +24087,12 @@ _03975_ 379500 41400 386400 48300 met1 379500 41400 386400 62100 met2 379500 55200 386400 62100 met1 -351900 324300 358800 331200 li1 +351900 310500 358800 331200 met2 351900 324300 358800 331200 met1 -351900 317400 358800 331200 met2 -351900 317400 358800 324300 met1 +351900 324300 358800 331200 li1 +379500 207000 386400 213900 li1 +379500 207000 386400 213900 met1 379500 55200 386400 213900 met2 -351900 310500 358800 324300 met2 -351900 310500 358800 317400 met1 -351900 310500 358800 317400 li1 ) _03976_ ( @@ -24200,7 +24263,13 @@ _03988_ 365700 227700 372600 276000 met2 365700 227700 372600 234600 met1 365700 227700 372600 234600 li1 -365700 75900 372600 234600 met2 +365700 227700 379500 234600 met1 +372600 227700 379500 234600 met1 +372600 172500 379500 234600 met2 +372600 172500 379500 179400 met1 +365700 172500 379500 179400 met1 +365700 172500 372600 179400 met1 +365700 75900 372600 179400 met2 365700 75900 372600 82800 met1 365700 75900 372600 82800 li1 365700 41400 372600 82800 met2 @@ -25685,17 +25754,17 @@ _06692_ ) _06693_ ( -138000 89700 151800 96600 met1 -144900 89700 151800 96600 li1 144900 89700 158700 96600 met1 151800 89700 158700 96600 li1 -138000 96600 144900 103500 li1 -138000 96600 144900 103500 met1 -138000 89700 144900 103500 met2 -138000 89700 144900 96600 met1 +144900 96600 151800 103500 li1 +144900 96600 151800 103500 met1 +144900 89700 151800 103500 met2 +144900 89700 151800 96600 met1 +144900 89700 151800 96600 li1 138000 89700 144900 96600 li1 +138000 89700 151800 96600 met1 +138000 96600 144900 103500 li1 138000 96600 151800 103500 met1 -144900 96600 151800 103500 li1 ) _06694_ ( @@ -25717,8 +25786,10 @@ _06694_ 124200 213900 207000 220800 met1 200100 213900 207000 220800 met1 200100 89700 207000 220800 met2 -200100 89700 207000 96600 met1 -138000 89700 207000 96600 met1 +200100 89700 207000 96600 met2 +138000 89700 207000 96600 met3 +138000 89700 144900 96600 met2 +138000 89700 144900 96600 met1 138000 89700 144900 96600 li1 ) _06695_ @@ -25751,14 +25822,14 @@ _06696_ _06697_ ( 96600 200100 103500 207000 li1 +96600 200100 103500 207000 met1 +96600 200100 103500 213900 met2 +96600 207000 103500 213900 met1 +96600 207000 103500 213900 li1 96600 200100 110400 207000 met1 103500 200100 110400 207000 li1 -103500 200100 110400 207000 met1 -103500 200100 110400 213900 met2 -103500 207000 110400 213900 met1 -103500 207000 110400 213900 li1 -96600 207000 103500 213900 li1 96600 207000 110400 213900 met1 +103500 207000 110400 213900 li1 ) _06698_ ( @@ -25795,12 +25866,13 @@ _06699_ 138000 172500 144900 213900 met2 138000 172500 144900 179400 met1 138000 172500 144900 179400 li1 +138000 213900 165600 220800 met1 +158700 213900 165600 220800 met1 +158700 213900 165600 227700 met2 +158700 220800 165600 227700 met1 +158700 220800 165600 227700 li1 138000 213900 144900 220800 li1 138000 213900 144900 220800 met1 -138000 213900 144900 227700 met2 -138000 220800 144900 227700 met1 -138000 220800 165600 227700 met1 -158700 220800 165600 227700 li1 138000 207000 144900 220800 met2 ) _06700_ @@ -25865,10 +25937,10 @@ _06704_ 124200 62100 138000 69000 met1 131100 62100 138000 69000 li1 110400 69000 117300 75900 li1 -110400 69000 117300 75900 met1 -110400 62100 117300 75900 met2 -110400 62100 117300 69000 met1 -110400 62100 124200 69000 met1 +110400 69000 124200 75900 met1 +117300 69000 124200 75900 met1 +117300 62100 124200 75900 met2 +117300 62100 124200 69000 met1 117300 62100 124200 69000 li1 117300 62100 131100 69000 met1 ) @@ -25939,7 +26011,7 @@ _06709_ ) _06710_ ( -103500 131100 144900 138000 met1 +82800 131100 144900 138000 met1 138000 131100 144900 138000 li1 138000 131100 151800 138000 met1 144900 131100 151800 138000 met1 @@ -25951,31 +26023,38 @@ _06710_ 82800 138000 89700 144900 met1 82800 131100 89700 144900 met2 82800 131100 89700 138000 met1 -82800 131100 110400 138000 met1 +82800 103500 89700 138000 met2 +82800 103500 89700 110400 met1 +82800 103500 103500 110400 met1 96600 103500 103500 110400 li1 -96600 103500 103500 110400 met1 -96600 103500 103500 110400 met2 -96600 103500 110400 110400 met3 -103500 103500 110400 110400 met2 -103500 103500 110400 138000 met2 -103500 131100 110400 138000 met1 ) _06711_ ( 138000 144900 144900 151800 li1 -138000 144900 144900 151800 met1 -138000 138000 144900 151800 met2 -138000 138000 144900 144900 met1 -138000 138000 151800 144900 met1 -144900 138000 151800 144900 li1 -144900 138000 193200 144900 met1 -186300 138000 193200 144900 met1 -186300 138000 193200 227700 met2 -186300 220800 193200 227700 met1 -158700 220800 193200 227700 met1 +138000 144900 151800 151800 met1 +144900 144900 151800 151800 met1 +144900 144900 151800 151800 met2 +144900 144900 158700 151800 met3 +151800 144900 158700 151800 met3 +151800 144900 158700 165600 met4 +151800 158700 158700 165600 met3 +144900 158700 158700 165600 met3 +144900 158700 151800 165600 met3 +144900 158700 151800 186300 met4 +144900 179400 151800 186300 met3 +144900 179400 158700 186300 met3 +151800 179400 158700 186300 met3 +151800 179400 158700 227700 met4 +151800 220800 158700 227700 met3 +151800 220800 158700 227700 met2 +151800 220800 158700 227700 met1 +151800 220800 165600 227700 met1 158700 220800 165600 227700 li1 +144900 138000 151800 151800 met2 +144900 138000 151800 144900 met1 +144900 138000 151800 144900 li1 144900 220800 151800 227700 li1 -144900 220800 165600 227700 met1 +144900 220800 158700 227700 met1 ) _06712_ ( @@ -26063,17 +26142,17 @@ _06718_ ) _06719_ ( +117300 69000 124200 75900 li1 +117300 69000 124200 75900 met1 +117300 55200 124200 75900 met2 +117300 55200 124200 62100 met1 +117300 55200 131100 62100 met1 124200 55200 131100 62100 li1 -124200 55200 131100 62100 met1 -124200 55200 131100 75900 met2 -124200 69000 131100 75900 met1 -124200 69000 131100 82800 met2 -124200 75900 131100 82800 met1 +117300 75900 131100 82800 met1 124200 75900 131100 82800 li1 -117300 69000 124200 75900 li1 -117300 69000 131100 75900 met1 +117300 69000 124200 82800 met2 +117300 75900 124200 82800 met1 117300 75900 124200 82800 li1 -117300 75900 131100 82800 met1 ) _06720_ ( @@ -26138,21 +26217,17 @@ _06724_ 131100 193200 138000 200100 met2 131100 193200 138000 200100 met1 131100 193200 138000 200100 li1 -138000 138000 144900 144900 met3 -138000 96600 144900 144900 met4 -138000 96600 144900 103500 met3 -138000 96600 144900 103500 met2 +138000 138000 144900 144900 met1 +138000 96600 144900 144900 met2 138000 96600 144900 103500 met1 138000 96600 144900 103500 li1 +193200 138000 200100 144900 met1 193200 117300 200100 144900 met2 193200 117300 200100 124200 met1 193200 117300 200100 124200 li1 -131100 138000 144900 144900 met3 -131100 138000 138000 144900 met2 -131100 138000 138000 144900 met1 +131100 138000 144900 144900 met1 131100 138000 138000 144900 li1 -138000 138000 200100 144900 met3 -193200 138000 200100 144900 met2 +138000 138000 200100 144900 met1 193200 138000 200100 151800 met2 193200 144900 200100 151800 met1 193200 144900 200100 158700 met2 @@ -26205,23 +26280,21 @@ _06728_ 103500 172500 110400 179400 met1 103500 172500 110400 179400 met2 103500 172500 110400 179400 met3 -103500 172500 110400 207000 met4 -103500 200100 110400 207000 met3 -103500 200100 110400 207000 met2 -103500 200100 110400 213900 met2 +103500 172500 110400 213900 met4 +103500 207000 110400 213900 met3 +103500 207000 110400 213900 met2 103500 207000 110400 213900 met1 103500 207000 110400 213900 li1 117300 117300 124200 124200 met1 117300 117300 124200 144900 met2 +117300 138000 124200 144900 met1 +117300 138000 124200 144900 li1 117300 89700 124200 96600 li1 117300 89700 124200 96600 met1 117300 89700 124200 124200 met2 -103500 138000 110400 179400 met4 -103500 138000 110400 144900 met3 -103500 138000 124200 144900 met3 -117300 138000 124200 144900 met2 -117300 138000 124200 144900 met1 -117300 138000 124200 144900 li1 +103500 138000 110400 179400 met2 +103500 138000 110400 144900 met1 +103500 138000 124200 144900 met1 ) _06729_ ( @@ -26249,20 +26322,20 @@ _06730_ _06731_ ( 138000 138000 144900 144900 met1 -138000 138000 144900 151800 met2 -138000 144900 144900 151800 met1 -138000 144900 144900 151800 li1 138000 124200 144900 144900 met2 138000 124200 144900 131100 met1 138000 124200 144900 131100 li1 -193200 117300 200100 124200 li1 +138000 138000 144900 151800 met2 +138000 144900 144900 151800 met1 +138000 144900 144900 151800 li1 +193200 144900 200100 151800 met1 +193200 117300 200100 151800 met2 193200 117300 200100 124200 met1 -193200 117300 200100 131100 met2 -193200 124200 200100 131100 met1 -193200 124200 200100 158700 met2 +193200 117300 200100 124200 li1 +193200 144900 200100 158700 met2 193200 151800 200100 158700 met1 193200 151800 200100 158700 li1 -138000 124200 200100 131100 met1 +138000 144900 200100 151800 met1 124200 138000 131100 144900 li1 124200 138000 144900 144900 met1 ) @@ -26299,13 +26372,7 @@ _06734_ 138000 138000 144900 144900 li1 138000 138000 151800 144900 met1 144900 138000 151800 144900 met1 -144900 138000 151800 158700 met2 -144900 151800 151800 158700 met2 -144900 151800 151800 158700 met3 -144900 151800 151800 165600 met4 -144900 158700 151800 165600 met3 -144900 158700 151800 165600 met2 -144900 158700 151800 200100 met2 +144900 138000 151800 200100 met2 144900 193200 151800 200100 met1 131100 193200 151800 200100 met1 131100 138000 138000 144900 li1 @@ -26315,17 +26382,18 @@ _06734_ ) _06735_ ( -200100 124200 227700 131100 met1 -220800 124200 227700 131100 met1 -220800 124200 227700 193200 met2 -220800 186300 227700 193200 met1 -151800 186300 227700 193200 met1 +165600 138000 172500 144900 met1 +165600 138000 172500 172500 met2 +165600 165600 172500 172500 met1 +158700 165600 172500 172500 met1 +158700 165600 165600 172500 met1 +158700 165600 165600 193200 met2 +158700 186300 165600 193200 met1 +151800 186300 165600 193200 met1 151800 186300 158700 193200 met1 151800 186300 158700 207000 met2 -151800 200100 158700 207000 met2 -138000 200100 158700 207000 met3 -138000 200100 144900 207000 met2 -138000 200100 144900 207000 met1 +151800 200100 158700 207000 met1 +138000 200100 158700 207000 met1 138000 200100 144900 207000 li1 172500 124200 179400 131100 met1 172500 103500 179400 131100 met2 @@ -26333,19 +26401,18 @@ _06735_ 172500 103500 179400 110400 li1 172500 124200 200100 131100 met1 193200 124200 200100 131100 li1 -172500 124200 179400 138000 met2 -172500 131100 179400 138000 met1 -165600 131100 179400 138000 met1 -165600 131100 172500 138000 met1 -165600 131100 172500 144900 met2 -165600 138000 172500 144900 met1 -138000 138000 172500 144900 met1 -138000 138000 144900 144900 li1 193200 124200 207000 131100 met1 200100 124200 207000 131100 met1 200100 124200 207000 138000 met2 200100 131100 207000 138000 met1 200100 131100 207000 138000 li1 +165600 131100 172500 144900 met2 +165600 131100 172500 138000 met1 +165600 131100 179400 138000 met1 +172500 131100 179400 138000 met1 +172500 124200 179400 138000 met2 +138000 138000 144900 144900 li1 +138000 138000 172500 144900 met1 ) _06736_ ( @@ -26370,9 +26437,12 @@ _06737_ 110400 103500 117300 117300 met2 110400 110400 117300 117300 met1 110400 110400 117300 117300 li1 -110400 75900 117300 110400 met2 -110400 75900 117300 82800 met1 -110400 75900 124200 82800 met1 +110400 82800 117300 110400 met2 +110400 82800 117300 89700 met1 +110400 82800 124200 89700 met1 +117300 82800 124200 89700 met1 +117300 75900 124200 89700 met2 +117300 75900 124200 82800 met1 117300 75900 124200 82800 li1 ) _06738_ @@ -26387,24 +26457,20 @@ _06738_ 117300 220800 124200 234600 met2 117300 227700 124200 234600 met1 117300 227700 124200 234600 li1 -110400 138000 117300 144900 met3 -110400 138000 117300 151800 met4 -110400 144900 117300 151800 met4 -110400 144900 144900 151800 met5 -138000 144900 144900 151800 met4 -138000 144900 144900 151800 met3 +110400 144900 144900 151800 met3 138000 144900 144900 151800 met2 138000 144900 144900 151800 met1 138000 144900 144900 151800 li1 110400 110400 117300 117300 met1 110400 110400 117300 117300 met2 110400 110400 117300 117300 met3 -110400 110400 117300 144900 met4 -41400 138000 117300 144900 met3 -41400 138000 48300 144900 met3 -41400 138000 48300 227700 met4 -41400 220800 48300 227700 met3 -41400 220800 96600 227700 met3 +110400 110400 117300 151800 met4 +110400 144900 117300 151800 met3 +48300 144900 117300 151800 met3 +48300 144900 55200 151800 met3 +48300 144900 55200 227700 met4 +48300 220800 55200 227700 met3 +48300 220800 96600 227700 met3 110400 103500 117300 110400 li1 110400 103500 117300 110400 met1 110400 103500 117300 110400 met2 @@ -26485,21 +26551,22 @@ _06743_ ) _06744_ ( -103500 144900 110400 151800 li1 -103500 144900 110400 151800 met1 -103500 144900 110400 151800 met2 -103500 144900 117300 151800 met3 -110400 144900 117300 151800 met3 -110400 144900 117300 213900 met4 -110400 207000 117300 213900 met3 -110400 207000 117300 213900 met2 -110400 207000 117300 213900 met1 110400 207000 117300 213900 li1 -34500 144900 110400 151800 met3 -34500 144900 41400 151800 met2 -34500 69000 41400 151800 met2 -34500 69000 41400 75900 met1 -34500 69000 131100 75900 met1 +110400 207000 117300 213900 met1 +110400 207000 117300 213900 met2 +110400 207000 117300 213900 met3 +110400 151800 117300 213900 met4 +110400 151800 117300 158700 met3 +110400 151800 117300 158700 met2 +103500 144900 110400 151800 li1 +103500 144900 117300 151800 met1 +110400 144900 117300 151800 met1 +110400 144900 117300 158700 met2 +110400 151800 172500 158700 met3 +165600 151800 172500 158700 met2 +165600 69000 172500 158700 met2 +165600 69000 172500 75900 met1 +124200 69000 172500 75900 met1 124200 69000 131100 75900 li1 ) _06745_ @@ -26535,15 +26602,12 @@ _06746_ ) _06747_ ( -131100 172500 158700 179400 met3 -151800 172500 158700 179400 met2 -151800 172500 158700 179400 met1 -151800 172500 165600 179400 met1 -158700 172500 165600 179400 li1 -131100 117300 138000 131100 met2 -131100 117300 138000 124200 met1 131100 117300 138000 124200 li1 -131100 124200 200100 131100 met1 +131100 117300 138000 124200 met1 +131100 117300 138000 131100 met2 +131100 124200 138000 131100 met1 +131100 124200 172500 131100 met1 +165600 124200 200100 131100 met1 193200 124200 200100 131100 li1 193200 124200 207000 131100 met1 200100 124200 207000 131100 met1 @@ -26551,14 +26615,12 @@ _06747_ 200100 131100 207000 138000 met1 200100 131100 207000 138000 li1 124200 172500 131100 179400 li1 -124200 172500 131100 179400 met1 -124200 172500 131100 179400 met2 -124200 172500 138000 179400 met3 -131100 172500 138000 179400 met3 -131100 124200 138000 179400 met4 -131100 124200 138000 131100 met3 -131100 124200 138000 131100 met2 -131100 124200 138000 131100 met1 +124200 172500 165600 179400 met1 +158700 172500 165600 179400 li1 +158700 172500 172500 179400 met1 +165600 172500 172500 179400 met1 +165600 124200 172500 179400 met2 +165600 124200 172500 131100 met1 ) _06748_ ( @@ -26574,47 +26636,46 @@ _06749_ 179400 255300 186300 262200 li1 179400 255300 186300 262200 met1 179400 227700 186300 262200 met2 -179400 227700 186300 234600 met2 -179400 227700 200100 234600 met3 -193200 227700 200100 234600 met3 -193200 151800 200100 234600 met4 -193200 151800 200100 158700 met3 -193200 151800 200100 158700 met2 +179400 227700 186300 234600 met1 +179400 227700 200100 234600 met1 +193200 227700 200100 234600 met1 +193200 151800 200100 234600 met2 193200 151800 200100 158700 met1 193200 151800 200100 158700 li1 ) _06750_ ( -117300 117300 124200 124200 li1 -117300 117300 124200 124200 met1 -117300 117300 124200 138000 met2 -117300 131100 124200 138000 met2 -96600 131100 124200 138000 met3 -96600 131100 103500 138000 met3 -96600 131100 103500 165600 met4 -96600 158700 103500 165600 met3 -96600 158700 103500 165600 met2 -96600 158700 103500 172500 met2 -96600 165600 103500 172500 met1 -96600 165600 103500 207000 met2 -96600 200100 103500 207000 met1 -96600 200100 124200 207000 met1 +117300 103500 124200 117300 met2 +117300 103500 124200 110400 met1 +117300 103500 124200 110400 li1 +151800 165600 158700 172500 met3 +151800 165600 158700 207000 met4 +151800 200100 158700 207000 met3 +117300 200100 158700 207000 met3 +117300 200100 124200 207000 met2 +117300 200100 124200 207000 met1 117300 200100 124200 207000 li1 -117300 103500 124200 124200 met2 +117300 110400 124200 117300 met2 +117300 110400 158700 117300 met3 117300 69000 124200 75900 li1 117300 69000 124200 75900 met1 -117300 69000 124200 89700 met2 -117300 82800 124200 89700 met2 -117300 82800 131100 89700 met3 -124200 82800 131100 89700 met3 -124200 82800 131100 110400 met4 -124200 103500 131100 110400 met3 -117300 103500 131100 110400 met3 -117300 103500 124200 110400 met2 -117300 103500 124200 110400 met1 -117300 103500 124200 110400 li1 -96600 165600 124200 172500 met1 +117300 69000 124200 75900 met2 +117300 69000 158700 75900 met3 +151800 69000 158700 75900 met3 +151800 69000 158700 117300 met4 +151800 110400 158700 117300 met3 +117300 110400 124200 124200 met2 +117300 117300 124200 124200 met1 +117300 117300 124200 124200 li1 117300 165600 124200 172500 li1 +117300 165600 124200 172500 met1 +117300 165600 124200 172500 met2 +117300 165600 158700 172500 met3 +151800 110400 179400 117300 met3 +172500 110400 179400 117300 met2 +172500 110400 179400 172500 met2 +172500 165600 179400 172500 met2 +151800 165600 179400 172500 met3 ) _06751_ ( @@ -26644,32 +26705,34 @@ _06752_ 131100 193200 138000 200100 li1 131100 193200 138000 200100 met1 131100 193200 138000 200100 met2 -131100 193200 172500 200100 met3 -165600 193200 172500 200100 met2 -165600 193200 172500 200100 met1 +131100 193200 165600 200100 met3 +158700 193200 165600 200100 met2 +158700 193200 165600 200100 met1 +158700 193200 172500 200100 met1 165600 193200 172500 200100 li1 124200 117300 131100 124200 li1 124200 117300 138000 124200 met1 ) _06753_ ( -151800 186300 158700 193200 li1 -151800 186300 158700 193200 met1 -151800 186300 158700 213900 met2 -151800 207000 158700 213900 met1 151800 207000 158700 213900 li1 -151800 186300 179400 193200 met1 +151800 207000 158700 213900 met1 +151800 193200 158700 213900 met2 +151800 193200 158700 200100 met1 +151800 193200 179400 200100 met1 158700 138000 165600 144900 li1 -158700 138000 179400 144900 met1 -172500 138000 179400 144900 met1 -172500 138000 179400 179400 met2 -172500 172500 179400 179400 met1 -172500 172500 179400 179400 li1 -172500 186300 179400 193200 met1 -172500 172500 179400 193200 met2 +158700 138000 165600 144900 met1 +158700 138000 165600 179400 met2 +158700 172500 165600 179400 met1 +158700 172500 179400 179400 met1 172500 193200 179400 200100 li1 172500 193200 179400 200100 met1 -172500 186300 179400 200100 met2 +172500 172500 179400 200100 met2 +172500 172500 179400 179400 met1 +172500 172500 179400 179400 li1 +151800 186300 158700 200100 met2 +151800 186300 158700 193200 met1 +151800 186300 158700 193200 li1 ) _06754_ ( @@ -26719,14 +26782,20 @@ _06757_ 110400 131100 117300 138000 met1 110400 117300 117300 138000 met2 110400 117300 117300 124200 met1 -117300 62100 124200 69000 li1 -103500 62100 124200 69000 met1 -103500 62100 110400 69000 met1 -103500 62100 110400 124200 met2 -103500 117300 110400 124200 met1 -103500 117300 117300 124200 met1 110400 117300 124200 124200 met1 117300 117300 124200 124200 li1 +117300 62100 124200 69000 li1 +117300 62100 124200 69000 met1 +117300 62100 124200 82800 met2 +117300 75900 124200 82800 met2 +117300 75900 131100 82800 met3 +124200 75900 131100 82800 met3 +124200 75900 131100 117300 met4 +124200 110400 131100 117300 met3 +124200 110400 131100 117300 met2 +124200 110400 131100 124200 met2 +124200 117300 131100 124200 met1 +117300 117300 131100 124200 met1 ) _06758_ ( @@ -26748,11 +26817,10 @@ _06759_ 124200 117300 131100 124200 met1 124200 117300 131100 124200 li1 138000 110400 144900 117300 li1 -138000 110400 158700 117300 met1 -151800 110400 158700 117300 met1 -151800 110400 158700 124200 met2 -151800 117300 158700 124200 met1 -151800 117300 179400 124200 met1 +138000 110400 179400 117300 met1 +172500 110400 179400 117300 met1 +172500 110400 179400 124200 met2 +172500 117300 179400 124200 met1 172500 117300 179400 124200 li1 124200 110400 144900 117300 met1 ) @@ -26844,27 +26912,35 @@ _06765_ ) _06766_ ( -138000 117300 144900 124200 li1 -138000 117300 179400 124200 met1 -172500 117300 179400 124200 met1 -172500 117300 179400 200100 met2 -172500 193200 179400 200100 met1 -131100 193200 179400 200100 met1 -131100 193200 138000 200100 met1 -131100 193200 138000 207000 met2 +131100 117300 138000 124200 met1 +131100 117300 138000 124200 met2 +124200 117300 138000 124200 met3 +124200 117300 131100 124200 met3 +124200 117300 131100 158700 met4 +124200 151800 131100 158700 met3 +124200 151800 144900 158700 met3 +138000 151800 144900 158700 met3 +138000 151800 144900 165600 met4 +138000 158700 144900 165600 met3 +124200 158700 144900 165600 met3 +124200 158700 131100 165600 met3 +124200 158700 131100 207000 met4 +124200 200100 131100 207000 met3 +124200 200100 138000 207000 met3 +131100 200100 138000 207000 met2 131100 200100 138000 207000 met1 131100 200100 138000 207000 li1 +131100 117300 144900 124200 met1 +138000 117300 144900 124200 li1 124200 220800 131100 227700 li1 124200 220800 138000 227700 met1 131100 220800 138000 227700 met1 131100 200100 138000 227700 met2 124200 110400 131100 117300 li1 124200 110400 138000 117300 met1 -131100 110400 138000 117300 li1 -131100 110400 138000 117300 met1 131100 110400 138000 124200 met2 -131100 117300 138000 124200 met1 -131100 117300 144900 124200 met1 +131100 110400 138000 117300 met1 +131100 110400 138000 117300 li1 ) _06767_ ( @@ -26901,15 +26977,15 @@ _06769_ ) _06770_ ( -117300 207000 124200 213900 li1 -117300 207000 124200 213900 met1 -117300 207000 124200 220800 met2 -117300 213900 124200 220800 met1 +110400 213900 124200 220800 met1 117300 213900 124200 220800 li1 -110400 207000 117300 213900 li1 110400 207000 124200 213900 met1 +117300 207000 124200 213900 li1 +110400 207000 117300 213900 li1 +110400 207000 117300 213900 met1 +110400 207000 117300 220800 met2 +110400 213900 117300 220800 met1 110400 213900 117300 220800 li1 -110400 213900 124200 220800 met1 ) _06771_ ( @@ -26955,33 +27031,32 @@ _06774_ ( 103500 75900 110400 82800 li1 103500 75900 117300 82800 met1 -0 82800 117300 89700 met3 -0 82800 6900 89700 met2 -0 82800 6900 200100 met2 -0 193200 6900 200100 met2 -0 193200 131100 200100 met3 -124200 193200 131100 200100 met2 -124200 193200 131100 200100 met1 -124200 193200 131100 200100 li1 -110400 69000 117300 82800 met2 -110400 69000 117300 75900 met1 -110400 69000 117300 75900 li1 -124200 193200 131100 207000 met2 +124200 96600 131100 103500 li1 +124200 96600 131100 103500 met1 +124200 96600 131100 103500 met2 +124200 96600 131100 103500 met3 +124200 96600 131100 144900 met4 +124200 138000 131100 144900 met4 +96600 138000 131100 144900 met5 +96600 138000 103500 144900 met4 +96600 138000 103500 207000 met4 +96600 200100 103500 207000 met3 +96600 200100 131100 207000 met3 +124200 200100 131100 207000 met2 124200 200100 131100 207000 met1 124200 200100 131100 207000 li1 110400 75900 117300 82800 met1 -110400 75900 117300 82800 met2 -110400 75900 117300 82800 met3 -110400 75900 117300 89700 met4 -110400 82800 117300 89700 met3 +110400 69000 117300 82800 met2 +110400 69000 117300 75900 met1 +110400 69000 117300 75900 li1 +110400 75900 117300 89700 met2 110400 82800 117300 89700 met2 -110400 82800 117300 96600 met2 -110400 89700 117300 96600 met1 -110400 89700 131100 96600 met1 -124200 89700 131100 96600 met1 -124200 89700 131100 103500 met2 -124200 96600 131100 103500 met1 -124200 96600 131100 103500 li1 +110400 82800 131100 89700 met3 +124200 82800 131100 89700 met2 +124200 82800 131100 103500 met2 +124200 193200 131100 207000 met2 +124200 193200 131100 200100 met1 +124200 193200 131100 200100 li1 ) _06775_ ( @@ -27006,21 +27081,19 @@ _06776_ 165600 248400 172500 255300 li1 131100 158700 138000 165600 li1 131100 158700 138000 165600 met1 -131100 158700 138000 165600 met2 -131100 158700 138000 165600 met3 -131100 158700 138000 165600 met4 -131100 158700 186300 165600 met5 -179400 158700 186300 165600 met4 -179400 158700 186300 234600 met4 -179400 227700 186300 234600 met3 -158700 227700 186300 234600 met3 -158700 227700 165600 234600 met2 -158700 227700 165600 234600 met1 +131100 158700 138000 172500 met2 +131100 165600 138000 172500 met1 +131100 165600 220800 172500 met1 +213900 165600 220800 172500 met1 +213900 165600 220800 234600 met2 +213900 227700 220800 234600 met1 +158700 227700 220800 234600 met1 158700 248400 165600 255300 met1 158700 248400 165600 282900 met2 158700 276000 165600 282900 met1 158700 276000 165600 282900 li1 158700 227700 165600 255300 met2 +158700 227700 165600 234600 met1 138000 227700 144900 234600 li1 138000 227700 165600 234600 met1 ) @@ -27078,50 +27151,49 @@ _06780_ ) _06781_ ( -131100 82800 138000 89700 li1 -131100 82800 138000 89700 met1 -131100 82800 138000 96600 met2 -131100 82800 144900 89700 met1 -138000 82800 144900 89700 li1 -131100 89700 138000 96600 met1 -131100 89700 138000 96600 met2 -131100 89700 207000 96600 met3 -200100 89700 207000 96600 met2 -200100 89700 207000 220800 met2 -200100 213900 207000 220800 met1 -124200 213900 207000 220800 met1 -124200 213900 131100 220800 li1 -110400 96600 117300 103500 li1 110400 96600 131100 103500 met1 124200 96600 131100 103500 met1 124200 89700 131100 103500 met2 124200 89700 131100 96600 met1 124200 89700 138000 96600 met1 +131100 89700 138000 96600 met1 +131100 82800 138000 96600 met2 +131100 82800 138000 89700 met1 +131100 82800 138000 89700 li1 +131100 82800 144900 89700 met1 +138000 82800 144900 89700 li1 +110400 96600 117300 103500 li1 +110400 96600 117300 103500 met1 +110400 96600 117300 103500 met2 +34500 96600 117300 103500 met3 +34500 96600 41400 103500 met2 +34500 96600 41400 220800 met2 +34500 213900 41400 220800 met2 +34500 213900 131100 220800 met3 +124200 213900 131100 220800 met2 +124200 213900 131100 220800 met1 +124200 213900 131100 220800 li1 ) _06782_ ( 82800 207000 89700 213900 li1 82800 207000 96600 213900 met1 89700 207000 96600 213900 met1 -89700 207000 96600 220800 met2 -89700 213900 96600 220800 met2 -89700 213900 96600 220800 met3 -89700 213900 96600 241500 met4 -89700 234600 96600 241500 met3 -89700 234600 96600 241500 met2 +89700 207000 96600 241500 met2 89700 234600 96600 241500 met1 89700 234600 96600 241500 li1 -124200 213900 151800 220800 met1 -144900 213900 151800 220800 met1 -144900 213900 151800 282900 met2 -144900 276000 151800 282900 met1 -144900 276000 151800 282900 li1 -89700 213900 131100 220800 met3 -124200 213900 131100 220800 met2 -124200 213900 131100 220800 met1 -124200 213900 131100 220800 li1 +131100 234600 138000 241500 met1 +131100 234600 138000 282900 met2 +131100 276000 138000 282900 met1 +131100 276000 144900 282900 met1 138000 276000 144900 282900 li1 138000 276000 151800 282900 met1 +144900 276000 151800 282900 li1 +89700 234600 138000 241500 met1 +124200 213900 131100 220800 li1 +124200 213900 138000 220800 met1 +131100 213900 138000 220800 met1 +131100 213900 138000 241500 met2 ) _06783_ ( @@ -27193,39 +27265,43 @@ _06787_ ) _06788_ ( -89700 193200 96600 200100 li1 89700 193200 103500 200100 met1 96600 193200 103500 200100 li1 -75900 158700 82800 165600 li1 -75900 158700 89700 165600 met1 -82800 69000 89700 82800 met2 -82800 69000 89700 75900 met1 -82800 69000 103500 75900 met1 +82800 75900 96600 82800 met1 +89700 75900 96600 82800 met1 +89700 69000 96600 82800 met2 +89700 69000 96600 75900 met1 +89700 69000 103500 75900 met1 96600 69000 103500 75900 li1 -82800 158700 89700 200100 met2 -82800 193200 89700 200100 met1 -82800 193200 96600 200100 met1 +75900 158700 96600 165600 met1 +89700 158700 96600 165600 met1 +89700 158700 96600 200100 met2 +89700 193200 96600 200100 met1 +89700 193200 96600 200100 li1 82800 75900 89700 82800 li1 -82800 75900 89700 82800 met1 -82800 75900 89700 89700 met2 -82800 82800 89700 89700 met2 -82800 82800 89700 89700 met3 -82800 82800 89700 144900 met4 -82800 138000 89700 144900 met3 -82800 138000 89700 144900 met2 -82800 138000 89700 165600 met2 -82800 158700 89700 165600 met1 +69000 75900 89700 82800 met1 +69000 75900 75900 82800 met1 +69000 75900 75900 96600 met2 +69000 89700 75900 96600 met2 +62100 89700 75900 96600 met3 +62100 89700 69000 96600 met3 +62100 89700 69000 144900 met4 +62100 138000 69000 144900 met3 +62100 138000 69000 144900 met2 +62100 138000 69000 165600 met2 +62100 158700 69000 165600 met1 +62100 158700 82800 165600 met1 +75900 158700 82800 165600 li1 ) _06789_ ( 82800 193200 89700 200100 li1 82800 193200 96600 200100 met1 89700 193200 96600 200100 li1 -89700 193200 103500 200100 met1 -96600 193200 103500 200100 met1 -96600 186300 103500 200100 met2 -96600 186300 103500 193200 met1 -96600 186300 144900 193200 met1 +89700 193200 96600 200100 met1 +89700 186300 96600 200100 met2 +89700 186300 96600 193200 met1 +89700 186300 144900 193200 met1 138000 186300 144900 193200 li1 ) _06790_ @@ -27280,20 +27356,18 @@ _06793_ 117300 179400 124200 186300 met1 117300 179400 124200 193200 met2 117300 186300 124200 193200 met1 -69000 186300 124200 193200 met1 -69000 186300 75900 193200 met1 -69000 186300 75900 207000 met2 -69000 200100 75900 227700 met2 -69000 220800 75900 227700 met1 -69000 220800 82800 227700 met1 -75900 220800 82800 227700 met1 -75900 220800 82800 276000 met2 -75900 269100 82800 276000 met1 +89700 186300 124200 193200 met1 +89700 186300 96600 193200 met1 +89700 186300 96600 207000 met2 75900 269100 82800 276000 li1 +75900 269100 82800 276000 met1 +75900 200100 82800 276000 met2 +75900 200100 82800 207000 met2 +75900 200100 96600 207000 met3 +89700 200100 96600 207000 met2 75900 269100 89700 276000 met1 82800 269100 89700 276000 li1 -69000 200100 75900 207000 met2 -69000 200100 124200 207000 met3 +89700 200100 124200 207000 met3 117300 200100 124200 207000 met2 117300 200100 124200 207000 met1 117300 200100 124200 207000 li1 @@ -27318,20 +27392,20 @@ _06794_ _06795_ ( 138000 282900 144900 289800 li1 -138000 282900 165600 289800 met1 -158700 282900 165600 289800 met1 -158700 276000 165600 289800 met2 -158700 276000 165600 282900 met1 +138000 282900 158700 289800 met1 +151800 282900 158700 289800 met1 +151800 276000 158700 289800 met2 +151800 276000 158700 282900 met1 +151800 276000 165600 282900 met1 158700 276000 165600 282900 li1 ) _06796_ ( 158700 276000 165600 282900 li1 -158700 276000 172500 282900 met1 -165600 276000 172500 282900 met1 -165600 255300 172500 282900 met2 -165600 255300 172500 262200 met1 -165600 255300 186300 262200 met1 +158700 276000 186300 282900 met1 +179400 276000 186300 282900 met1 +179400 255300 186300 282900 met2 +179400 255300 186300 262200 met1 179400 255300 186300 262200 li1 ) _06797_ @@ -27370,10 +27444,10 @@ _06799_ 131100 138000 138000 144900 met1 131100 138000 138000 144900 li1 131100 69000 138000 75900 met3 -131100 69000 138000 138000 met4 -131100 131100 138000 138000 met3 -131100 131100 138000 138000 met2 -131100 131100 138000 144900 met2 +131100 69000 138000 131100 met4 +131100 124200 138000 131100 met3 +131100 124200 138000 131100 met2 +131100 124200 138000 144900 met2 103500 69000 110400 75900 li1 103500 69000 117300 75900 met1 110400 69000 117300 89700 met2 @@ -27390,27 +27464,26 @@ _06799_ ) _06800_ ( -96600 82800 103500 89700 met1 96600 75900 103500 89700 met2 96600 75900 103500 82800 met1 96600 75900 103500 82800 li1 110400 82800 117300 89700 li1 110400 82800 144900 89700 met1 138000 82800 144900 89700 li1 -96600 82800 103500 96600 met2 -96600 89700 103500 96600 met2 -96600 89700 103500 96600 met3 -96600 89700 103500 151800 met4 +96600 82800 103500 89700 met1 +96600 82800 103500 89700 met2 +96600 82800 103500 89700 met3 +96600 82800 103500 151800 met4 96600 144900 103500 151800 met3 96600 144900 103500 151800 met2 96600 144900 103500 151800 met1 96600 144900 103500 151800 li1 -96600 144900 103500 179400 met2 -96600 172500 103500 179400 met2 -96600 172500 124200 179400 met3 -117300 172500 124200 179400 met2 -117300 172500 124200 179400 met1 -117300 172500 138000 179400 met1 +96600 144900 103500 172500 met2 +96600 165600 103500 172500 met1 +96600 165600 138000 172500 met1 +131100 165600 138000 172500 met1 +131100 165600 138000 179400 met2 +131100 172500 138000 179400 met1 131100 172500 138000 179400 li1 96600 82800 117300 89700 met1 ) @@ -27501,17 +27574,19 @@ _06807_ ( 75900 227700 82800 234600 li1 75900 227700 82800 234600 met1 -75900 179400 82800 234600 met2 -75900 179400 82800 186300 met1 +75900 227700 82800 234600 met2 +75900 227700 82800 234600 met3 +75900 179400 82800 234600 met4 +75900 179400 82800 186300 met3 82800 227700 89700 234600 met1 82800 220800 89700 234600 met2 82800 220800 89700 227700 met1 82800 220800 89700 227700 li1 -48300 179400 82800 186300 met1 -48300 179400 55200 186300 met1 -48300 117300 55200 186300 met2 -48300 117300 55200 124200 met1 -48300 117300 103500 124200 met1 +55200 179400 82800 186300 met3 +55200 179400 62100 186300 met2 +55200 117300 62100 186300 met2 +55200 117300 62100 124200 met1 +55200 117300 103500 124200 met1 96600 117300 103500 124200 li1 82800 227700 103500 234600 met1 96600 227700 103500 234600 met1 @@ -27520,7 +27595,9 @@ _06807_ 96600 234600 110400 241500 met1 103500 234600 110400 241500 li1 75900 227700 89700 234600 met1 -75900 172500 82800 186300 met2 +75900 172500 82800 186300 met4 +75900 172500 82800 179400 met3 +75900 172500 82800 179400 met2 75900 172500 82800 179400 met1 75900 172500 82800 179400 li1 ) @@ -27529,17 +27606,16 @@ _06808_ 103500 234600 110400 241500 li1 103500 234600 117300 241500 met1 110400 234600 117300 241500 li1 -110400 234600 138000 241500 met1 -131100 234600 138000 241500 met1 -131100 234600 138000 248400 met2 -131100 241500 138000 248400 met1 -131100 241500 151800 248400 met1 +110400 234600 151800 241500 met1 +144900 234600 151800 241500 met1 +144900 234600 151800 248400 met2 +144900 241500 151800 248400 met1 144900 241500 151800 248400 li1 -144900 241500 172500 248400 met1 -165600 241500 172500 248400 met1 -165600 241500 172500 262200 met2 -165600 255300 172500 262200 met1 +144900 241500 151800 262200 met2 +144900 255300 151800 262200 met1 +144900 255300 172500 262200 met1 165600 255300 172500 262200 li1 +165600 255300 172500 262200 met1 165600 255300 172500 269100 met2 165600 262200 172500 269100 met1 165600 262200 172500 269100 li1 @@ -27563,11 +27639,10 @@ _06810_ 138000 220800 144900 227700 met1 138000 220800 144900 227700 li1 82800 220800 89700 227700 li1 -82800 220800 103500 227700 met1 -96600 220800 103500 227700 met1 -96600 220800 103500 234600 met2 -96600 227700 103500 234600 met1 -96600 227700 124200 234600 met1 +82800 220800 89700 227700 met1 +82800 220800 89700 234600 met2 +82800 227700 89700 234600 met1 +82800 227700 124200 234600 met1 117300 227700 124200 234600 li1 117300 227700 138000 234600 met1 131100 227700 138000 234600 li1 @@ -27579,18 +27654,18 @@ _06810_ _06811_ ( 165600 255300 172500 262200 li1 -165600 255300 179400 262200 met1 -172500 255300 179400 262200 met1 -172500 255300 179400 276000 met2 -172500 269100 179400 276000 met1 +165600 255300 172500 262200 met1 +165600 255300 172500 276000 met2 +165600 269100 172500 276000 met1 +165600 269100 179400 276000 met1 172500 269100 179400 276000 li1 144900 234600 151800 241500 met1 144900 227700 151800 241500 met2 144900 227700 151800 234600 met1 144900 227700 151800 234600 li1 -144900 234600 151800 262200 met2 -144900 255300 151800 262200 met1 -144900 255300 172500 262200 met1 +144900 234600 172500 241500 met1 +165600 234600 172500 241500 met1 +165600 234600 172500 262200 met2 138000 234600 144900 241500 li1 138000 234600 151800 241500 met1 ) @@ -27615,21 +27690,11 @@ _06813_ 131100 117300 138000 124200 li1 131100 117300 138000 124200 met1 131100 117300 138000 124200 met2 -131100 117300 158700 124200 met3 -151800 117300 158700 124200 met3 -151800 117300 158700 165600 met4 -151800 158700 158700 165600 met3 -144900 158700 158700 165600 met3 -144900 158700 151800 165600 met3 -144900 158700 151800 186300 met4 -144900 179400 151800 186300 met3 -138000 179400 151800 186300 met3 -138000 179400 144900 186300 met3 -138000 179400 144900 207000 met4 -138000 200100 144900 207000 met3 -138000 200100 144900 207000 met2 -138000 200100 144900 207000 met1 -131100 200100 144900 207000 met1 +131100 117300 179400 124200 met3 +172500 117300 179400 124200 met2 +172500 117300 179400 207000 met2 +172500 200100 179400 207000 met1 +131100 200100 179400 207000 met1 131100 200100 138000 207000 li1 124200 200100 131100 207000 li1 124200 200100 138000 207000 met1 @@ -27662,13 +27727,12 @@ _06815_ 110400 131100 117300 138000 li1 110400 131100 124200 138000 met1 117300 131100 124200 138000 li1 -124200 82800 138000 89700 met1 -131100 82800 138000 89700 met1 -131100 69000 138000 89700 met2 -131100 69000 138000 75900 met1 -131100 69000 138000 75900 li1 124200 82800 131100 89700 li1 124200 82800 131100 89700 met1 +124200 69000 131100 89700 met2 +124200 69000 131100 75900 met1 +124200 69000 138000 75900 met1 +131100 69000 138000 75900 li1 124200 82800 131100 96600 met2 124200 89700 131100 96600 met1 124200 89700 131100 96600 li1 @@ -27726,9 +27790,9 @@ _06818_ 165600 255300 172500 269100 met2 165600 262200 172500 269100 met1 165600 262200 172500 269100 li1 -151800 227700 172500 234600 met1 -165600 227700 172500 234600 met1 -165600 227700 172500 262200 met2 +151800 227700 158700 262200 met2 +151800 255300 158700 262200 met1 +151800 255300 172500 262200 met1 ) _06819_ ( @@ -27798,11 +27862,11 @@ _06825_ _06826_ ( 82800 207000 89700 213900 li1 -55200 207000 89700 213900 met1 -55200 207000 62100 213900 met1 -55200 96600 62100 213900 met2 -55200 96600 62100 103500 met1 -55200 96600 96600 103500 met1 +41400 207000 89700 213900 met1 +41400 207000 48300 213900 met1 +41400 96600 48300 213900 met2 +41400 96600 48300 103500 met1 +41400 96600 96600 103500 met1 89700 96600 96600 103500 li1 117300 89700 124200 96600 li1 117300 89700 138000 96600 met1 @@ -27897,6 +27961,7 @@ _06833_ ) _06834_ ( +82800 89700 89700 96600 li1 82800 89700 110400 96600 met1 103500 89700 110400 96600 li1 117300 89700 124200 96600 li1 @@ -27905,11 +27970,10 @@ _06834_ 117300 96600 124200 103500 met1 117300 96600 124200 103500 li1 75900 75900 82800 82800 li1 -75900 75900 89700 82800 met1 -82800 75900 89700 82800 met1 -82800 75900 89700 96600 met2 -82800 89700 89700 96600 met1 -82800 89700 89700 96600 li1 +75900 75900 82800 82800 met1 +75900 75900 82800 96600 met2 +75900 89700 82800 96600 met1 +75900 89700 89700 96600 met1 103500 89700 124200 96600 met1 ) _06835_ @@ -27924,10 +27988,15 @@ _06835_ ) _06836_ ( -89700 186300 96600 220800 met2 +89700 186300 96600 193200 met3 +89700 186300 96600 220800 met4 +89700 213900 96600 220800 met3 +89700 213900 96600 220800 met2 89700 213900 96600 220800 met1 89700 213900 96600 220800 li1 -89700 186300 131100 193200 met1 +89700 186300 131100 193200 met3 +124200 186300 131100 193200 met2 +124200 186300 131100 193200 met1 124200 186300 131100 193200 li1 96600 96600 103500 103500 met1 96600 89700 103500 103500 met2 @@ -27940,9 +28009,6 @@ _06836_ 89700 131100 96600 138000 met2 89700 131100 96600 138000 met3 89700 131100 96600 193200 met4 -89700 186300 96600 193200 met3 -89700 186300 96600 193200 met2 -89700 186300 96600 193200 met1 89700 103500 96600 138000 met4 89700 103500 96600 110400 met3 89700 103500 103500 110400 met3 @@ -27990,9 +28056,9 @@ _06840_ 89700 131100 96600 138000 li1 89700 131100 96600 138000 met1 89700 110400 96600 138000 met2 -89700 110400 96600 117300 met2 -89700 110400 124200 117300 met3 -117300 110400 124200 117300 met2 +89700 110400 96600 117300 met1 +89700 110400 124200 117300 met1 +117300 110400 124200 117300 met1 117300 96600 124200 117300 met2 117300 96600 124200 103500 met1 117300 96600 124200 103500 li1 @@ -28000,8 +28066,10 @@ _06840_ _06841_ ( 110400 158700 117300 165600 li1 -110400 158700 124200 165600 met1 -117300 158700 124200 165600 met1 +110400 158700 117300 165600 met1 +110400 158700 117300 165600 met2 +110400 158700 124200 165600 met3 +117300 158700 124200 165600 met2 117300 158700 124200 172500 met2 117300 165600 124200 193200 met2 117300 186300 124200 193200 met1 @@ -28011,14 +28079,26 @@ _06841_ 124200 200100 131100 207000 met1 124200 200100 131100 207000 li1 96600 96600 103500 103500 li1 -96600 96600 124200 103500 met1 -117300 96600 124200 103500 li1 -117300 96600 172500 103500 met1 -165600 96600 172500 103500 met1 -165600 96600 172500 172500 met2 -165600 165600 172500 172500 met2 -117300 165600 172500 172500 met3 +96600 96600 103500 103500 met1 +96600 96600 103500 103500 met2 +96600 96600 110400 103500 met3 +103500 96600 110400 103500 met2 +103500 96600 110400 110400 met2 +103500 103500 110400 110400 met1 +69000 103500 110400 110400 met1 +69000 103500 75900 110400 met1 +69000 103500 75900 131100 met2 +69000 124200 75900 131100 met1 +55200 124200 75900 131100 met1 +55200 124200 62100 131100 met1 +55200 124200 62100 172500 met2 +55200 165600 62100 172500 met2 +55200 165600 124200 172500 met3 117300 165600 124200 172500 met2 +103500 96600 124200 103500 met3 +117300 96600 124200 103500 met2 +117300 96600 124200 103500 met1 +117300 96600 124200 103500 li1 ) _06842_ ( @@ -28080,36 +28160,28 @@ _06846_ ( 96600 220800 124200 227700 met1 117300 220800 124200 227700 li1 -103500 96600 110400 103500 met1 -103500 96600 110400 103500 met2 -103500 96600 110400 103500 met3 -103500 96600 110400 144900 met4 -103500 138000 110400 144900 met4 -96600 138000 110400 144900 met5 -96600 138000 103500 144900 met4 -96600 138000 103500 158700 met4 -96600 151800 103500 158700 met3 -89700 151800 103500 158700 met3 -89700 151800 96600 158700 met3 -89700 151800 96600 165600 met4 -89700 158700 96600 165600 met3 -89700 158700 103500 165600 met3 -96600 158700 103500 165600 met2 -96600 158700 103500 179400 met2 +117300 96600 124200 103500 li1 +117300 96600 124200 103500 met1 +117300 96600 124200 110400 met2 +117300 103500 124200 110400 met2 +117300 103500 138000 110400 met3 +131100 103500 138000 110400 met3 +131100 103500 138000 179400 met4 +131100 172500 138000 179400 met3 +96600 172500 138000 179400 met3 89700 220800 96600 227700 li1 89700 220800 103500 227700 met1 -103500 96600 124200 103500 met1 -117300 96600 124200 103500 li1 96600 172500 103500 179400 li1 96600 172500 103500 179400 met1 96600 172500 103500 179400 met2 96600 172500 103500 179400 met3 -96600 172500 103500 227700 met4 -96600 220800 103500 227700 met3 -96600 220800 103500 227700 met2 +96600 172500 103500 220800 met4 +96600 213900 103500 220800 met3 +96600 213900 103500 220800 met2 +96600 213900 103500 227700 met2 96600 220800 103500 227700 met1 96600 96600 103500 103500 li1 -96600 96600 110400 103500 met1 +96600 96600 124200 103500 met1 ) _06847_ ( @@ -28121,24 +28193,24 @@ _06847_ ) _06848_ ( +96600 89700 103500 96600 li1 +96600 89700 103500 96600 met1 +96600 75900 103500 96600 met2 +96600 75900 103500 82800 met1 +96600 75900 110400 82800 met1 82800 110400 89700 117300 li1 82800 110400 103500 117300 met1 96600 110400 103500 117300 met1 96600 96600 103500 117300 met2 96600 96600 103500 103500 met1 -96600 96600 110400 103500 met1 -103500 96600 110400 103500 li1 -103500 96600 110400 103500 met1 -103500 89700 110400 103500 met2 -103500 89700 110400 96600 met1 103500 75900 110400 82800 li1 103500 75900 110400 82800 met1 103500 69000 110400 82800 met2 103500 69000 110400 75900 met1 103500 69000 110400 75900 li1 -96600 89700 110400 96600 met1 -96600 89700 103500 96600 li1 -103500 75900 110400 96600 met2 +96600 96600 110400 103500 met1 +103500 96600 110400 103500 li1 +96600 89700 103500 103500 met2 ) _06849_ ( @@ -28156,10 +28228,11 @@ _06850_ _06851_ ( 96600 144900 103500 151800 li1 -96600 144900 117300 151800 met1 -110400 144900 117300 151800 met1 -110400 131100 117300 151800 met2 -110400 131100 117300 138000 met1 +96600 144900 110400 151800 met1 +103500 144900 110400 151800 met1 +103500 131100 110400 151800 met2 +103500 131100 110400 138000 met1 +103500 131100 117300 138000 met1 110400 131100 117300 138000 li1 82800 200100 89700 207000 li1 82800 200100 96600 207000 met1 @@ -28168,12 +28241,13 @@ _06851_ 89700 144900 96600 158700 met2 89700 144900 96600 151800 met1 89700 144900 103500 151800 met1 -89700 200100 96600 207000 met1 -89700 200100 96600 213900 met2 -89700 207000 96600 213900 met1 -89700 207000 110400 213900 met1 +89700 200100 110400 207000 met1 +103500 200100 110400 207000 met1 +103500 200100 110400 213900 met2 +103500 207000 110400 213900 met1 103500 207000 110400 213900 li1 89700 151800 96600 207000 met2 +89700 200100 96600 207000 met1 ) _06852_ ( @@ -28206,19 +28280,20 @@ _06853_ _06854_ ( 96600 117300 103500 124200 li1 -89700 117300 103500 124200 met1 -89700 117300 96600 124200 met1 -89700 117300 96600 138000 met2 -89700 131100 96600 138000 met2 -89700 131100 96600 138000 met3 -89700 131100 96600 158700 met4 -89700 151800 96600 158700 met3 -89700 151800 96600 158700 met2 -89700 151800 96600 207000 met2 -89700 200100 96600 207000 met2 -89700 200100 103500 207000 met3 -96600 200100 103500 207000 met2 -96600 200100 103500 227700 met2 +75900 117300 103500 124200 met1 +75900 117300 82800 124200 met1 +75900 117300 82800 131100 met2 +75900 124200 82800 131100 met2 +75900 124200 82800 131100 met3 +75900 124200 82800 172500 met4 +75900 165600 82800 172500 met3 +75900 165600 89700 172500 met3 +82800 165600 89700 172500 met3 +82800 165600 89700 213900 met4 +82800 207000 89700 213900 met3 +82800 207000 103500 213900 met3 +96600 207000 103500 213900 met2 +96600 207000 103500 227700 met2 96600 220800 103500 227700 met1 96600 220800 110400 227700 met1 103500 220800 110400 227700 li1 @@ -28252,7 +28327,6 @@ _06856_ ) _06857_ ( -82800 117300 89700 124200 li1 6900 117300 89700 124200 met1 6900 117300 13800 124200 met1 6900 117300 13800 234600 met2 @@ -28266,7 +28340,12 @@ _06857_ 117300 220800 124200 227700 met2 117300 220800 124200 227700 met1 117300 220800 124200 227700 li1 -82800 117300 124200 124200 met1 +82800 117300 89700 124200 li1 +82800 117300 89700 124200 met1 +82800 117300 89700 124200 met2 +82800 117300 124200 124200 met3 +117300 117300 124200 124200 met2 +117300 117300 124200 124200 met1 117300 117300 124200 124200 li1 96600 227700 110400 234600 met1 103500 227700 110400 234600 met1 @@ -28282,27 +28361,28 @@ _06858_ ) _06859_ ( -110400 158700 124200 165600 met1 -117300 158700 124200 165600 met1 -117300 158700 124200 193200 met2 +110400 165600 117300 172500 met2 +110400 165600 124200 172500 met3 +117300 165600 124200 172500 met2 +117300 165600 124200 193200 met2 117300 186300 124200 193200 met1 117300 186300 124200 193200 li1 103500 193200 110400 200100 li1 103500 193200 124200 200100 met1 +110400 158700 117300 172500 met2 +110400 158700 117300 165600 met1 +110400 158700 117300 165600 li1 117300 186300 124200 200100 met2 117300 193200 124200 200100 met1 117300 193200 124200 200100 li1 -110400 158700 117300 165600 li1 -110400 158700 117300 165600 met1 -110400 158700 117300 165600 met2 -110400 158700 117300 165600 met3 -110400 144900 117300 165600 met4 -110400 144900 117300 151800 met3 -110400 144900 124200 151800 met3 -117300 144900 124200 151800 met2 -117300 117300 124200 151800 met2 -117300 117300 124200 124200 met1 -117300 117300 131100 124200 met1 +96600 165600 117300 172500 met3 +96600 165600 103500 172500 met3 +96600 124200 103500 172500 met4 +96600 124200 103500 131100 met3 +96600 124200 131100 131100 met3 +124200 124200 131100 131100 met2 +124200 117300 131100 131100 met2 +124200 117300 131100 124200 met1 124200 117300 131100 124200 li1 ) _06860_ @@ -28331,28 +28411,26 @@ _06862_ 96600 138000 103500 144900 li1 96600 138000 103500 144900 met1 96600 138000 103500 144900 met2 -62100 138000 103500 144900 met3 -62100 138000 69000 144900 met3 -62100 138000 69000 234600 met4 -62100 227700 69000 234600 met3 -62100 227700 110400 234600 met3 +55200 138000 103500 144900 met3 +55200 138000 62100 144900 met3 +55200 138000 62100 234600 met4 +55200 227700 62100 234600 met3 +55200 227700 110400 234600 met3 103500 227700 110400 234600 met2 103500 227700 110400 234600 met1 103500 227700 110400 234600 li1 ) _06863_ ( -89700 207000 103500 213900 met1 -96600 207000 103500 213900 li1 103500 213900 110400 220800 li1 103500 213900 110400 220800 met1 103500 213900 110400 227700 met2 103500 220800 110400 227700 met1 103500 220800 110400 227700 li1 +96600 207000 103500 213900 li1 +89700 207000 103500 213900 met1 89700 207000 96600 213900 li1 -89700 207000 96600 213900 met1 -89700 207000 96600 227700 met2 -89700 220800 96600 227700 met1 +89700 220800 110400 227700 met1 89700 220800 96600 227700 li1 96600 207000 110400 213900 met1 103500 207000 110400 213900 met1 @@ -28432,16 +28510,16 @@ _06868_ ) _06869_ ( -103500 151800 124200 158700 met1 -117300 151800 124200 158700 met1 -117300 144900 124200 158700 met2 -117300 144900 124200 151800 met1 -117300 144900 124200 151800 li1 103500 151800 110400 158700 li1 103500 151800 110400 158700 met1 +103500 144900 110400 158700 met2 +103500 144900 110400 151800 met1 +103500 144900 124200 151800 met1 103500 151800 110400 207000 met2 103500 200100 110400 207000 met1 103500 200100 110400 207000 li1 +117300 144900 124200 151800 li1 +117300 144900 124200 151800 met1 117300 131100 124200 151800 met2 117300 131100 124200 138000 met1 117300 131100 131100 138000 met1 @@ -28463,11 +28541,11 @@ _06871_ 96600 138000 103500 144900 li1 96600 138000 103500 144900 met1 96600 138000 103500 144900 met2 -41400 138000 103500 144900 met3 -41400 138000 48300 144900 met2 -41400 138000 48300 220800 met2 -41400 213900 48300 220800 met2 -41400 213900 110400 220800 met3 +62100 138000 103500 144900 met3 +62100 138000 69000 144900 met3 +62100 138000 69000 220800 met4 +62100 213900 69000 220800 met3 +62100 213900 110400 220800 met3 103500 213900 110400 220800 met2 103500 213900 110400 220800 met1 103500 213900 110400 220800 li1 @@ -28494,20 +28572,21 @@ _06873_ _06874_ ( 124200 193200 131100 200100 li1 -124200 193200 131100 200100 met1 -124200 193200 131100 200100 met2 -124200 193200 131100 200100 met3 -124200 165600 131100 200100 met4 -124200 165600 131100 172500 met3 -124200 165600 158700 172500 met3 +124200 193200 151800 200100 met1 +144900 193200 151800 200100 met1 +144900 165600 151800 200100 met2 +144900 165600 151800 172500 met2 +144900 165600 158700 172500 met3 151800 165600 158700 172500 met3 -151800 131100 158700 172500 met4 -151800 131100 158700 138000 met3 -144900 131100 158700 138000 met3 -144900 131100 151800 138000 met2 -144900 117300 151800 138000 met2 -144900 117300 151800 124200 met1 -138000 117300 151800 124200 met1 +151800 144900 158700 172500 met4 +151800 144900 158700 151800 met3 +138000 144900 158700 151800 met3 +138000 144900 144900 151800 met3 +138000 124200 144900 151800 met4 +138000 124200 144900 131100 met3 +138000 124200 144900 131100 met2 +138000 117300 144900 131100 met2 +138000 117300 144900 124200 met1 138000 117300 144900 124200 li1 131100 103500 138000 110400 li1 131100 103500 138000 110400 met1 @@ -28521,9 +28600,9 @@ _06874_ 138000 82800 144900 96600 met2 138000 82800 144900 89700 met1 138000 82800 144900 89700 li1 -131100 103500 138000 124200 met2 -131100 117300 138000 124200 met1 -131100 117300 144900 124200 met1 +131100 103500 144900 110400 met1 +138000 103500 144900 110400 met1 +138000 103500 144900 124200 met2 ) _06875_ ( @@ -28596,33 +28675,28 @@ _06880_ 131100 207000 138000 213900 li1 131100 207000 138000 213900 met1 131100 207000 138000 213900 met2 -131100 207000 144900 213900 met3 -138000 207000 144900 213900 met3 -138000 179400 144900 213900 met4 -138000 179400 144900 186300 met3 -131100 179400 144900 186300 met3 -131100 179400 138000 186300 met3 -131100 158700 138000 186300 met4 +131100 207000 138000 213900 met3 +131100 158700 138000 213900 met4 131100 158700 138000 165600 met3 -131100 158700 144900 165600 met3 -138000 158700 144900 165600 met3 -138000 151800 144900 165600 met4 -138000 151800 144900 158700 met4 -131100 151800 144900 158700 met5 -131100 151800 138000 158700 met4 -131100 131100 138000 158700 met4 -131100 131100 138000 138000 met3 -131100 131100 138000 138000 met2 -131100 131100 138000 138000 met1 +131100 158700 165600 165600 met3 +158700 158700 165600 165600 met2 +158700 151800 165600 165600 met2 +158700 151800 165600 158700 met2 +151800 151800 165600 158700 met3 +151800 151800 158700 158700 met3 +151800 131100 158700 158700 met4 +151800 131100 158700 138000 met3 +144900 131100 158700 138000 met3 +144900 131100 151800 138000 met2 +144900 131100 151800 138000 met1 +144900 75900 151800 138000 met2 +144900 75900 151800 82800 met1 +138000 75900 151800 82800 met1 +138000 75900 144900 82800 li1 131100 131100 138000 138000 li1 -131100 82800 138000 138000 met4 -131100 82800 138000 89700 met3 -131100 82800 138000 89700 met2 -131100 75900 138000 89700 met2 -131100 75900 138000 82800 met1 +131100 131100 151800 138000 met1 131100 75900 138000 82800 li1 131100 75900 144900 82800 met1 -138000 75900 144900 82800 li1 ) _06881_ ( @@ -28662,8 +28736,10 @@ _06884_ 82800 131100 89700 138000 met1 82800 131100 89700 138000 met2 82800 131100 144900 138000 met3 -138000 131100 144900 138000 met2 -138000 75900 144900 138000 met2 +138000 131100 144900 138000 met3 +138000 75900 144900 138000 met4 +138000 75900 144900 82800 met3 +138000 75900 144900 82800 met2 138000 75900 144900 82800 met1 138000 75900 144900 82800 li1 138000 138000 144900 144900 li1 @@ -28674,7 +28750,7 @@ _06884_ 138000 186300 144900 193200 met3 138000 186300 144900 193200 met2 138000 186300 144900 193200 met1 -138000 131100 144900 144900 met2 +138000 131100 144900 144900 met4 ) _06885_ ( @@ -28686,25 +28762,25 @@ _06885_ ) _06886_ ( -131100 82800 138000 89700 li1 -131100 82800 138000 89700 met1 -131100 75900 138000 89700 met2 -131100 75900 138000 82800 met1 -131100 75900 138000 82800 li1 -96600 75900 103500 82800 li1 -96600 75900 103500 82800 met1 -96600 75900 103500 96600 met2 -96600 89700 103500 96600 met1 -131100 82800 138000 96600 met2 -131100 89700 138000 96600 met1 -124200 89700 138000 96600 met1 -124200 89700 131100 96600 li1 82800 96600 89700 103500 li1 82800 96600 89700 103500 met1 -82800 89700 89700 103500 met2 -82800 89700 89700 96600 met1 -82800 89700 103500 96600 met1 -96600 89700 131100 96600 met1 +82800 75900 89700 103500 met2 +82800 75900 89700 82800 met2 +82800 75900 103500 82800 met3 +96600 75900 103500 82800 met2 +96600 75900 103500 82800 met1 +96600 75900 103500 82800 li1 +124200 89700 131100 96600 li1 +124200 89700 131100 96600 met1 +124200 82800 131100 96600 met2 +124200 82800 131100 89700 met1 +124200 75900 131100 89700 met2 +124200 75900 131100 82800 met1 +96600 75900 131100 82800 met1 +124200 82800 138000 89700 met1 +131100 82800 138000 89700 li1 +124200 75900 138000 82800 met1 +131100 75900 138000 82800 li1 ) _06887_ ( @@ -28844,13 +28920,14 @@ _06898_ 89700 200100 96600 220800 met2 89700 213900 96600 220800 met1 89700 213900 96600 220800 li1 +89700 131100 96600 138000 met1 89700 131100 96600 207000 met2 89700 213900 103500 220800 met1 96600 213900 103500 220800 li1 -89700 131100 96600 138000 met1 -89700 131100 96600 138000 met2 -89700 131100 96600 138000 met3 -89700 69000 96600 138000 met4 +89700 117300 96600 138000 met2 +89700 117300 96600 124200 met2 +89700 117300 96600 124200 met3 +89700 69000 96600 124200 met4 89700 69000 96600 75900 met3 89700 69000 96600 75900 met2 89700 69000 96600 75900 met1 @@ -28941,11 +29018,11 @@ _06905_ 131100 213900 138000 220800 met2 131100 213900 138000 220800 met1 131100 213900 138000 220800 li1 -6900 117300 89700 124200 met1 -6900 117300 13800 124200 met1 -6900 117300 13800 213900 met2 -6900 207000 13800 213900 met2 -6900 207000 131100 213900 met3 +34500 117300 89700 124200 met3 +34500 117300 41400 124200 met3 +34500 117300 41400 213900 met4 +34500 207000 41400 213900 met3 +34500 207000 131100 213900 met3 103500 82800 110400 89700 met2 103500 82800 131100 89700 met3 124200 82800 131100 89700 met2 @@ -28957,7 +29034,6 @@ _06905_ 82800 124200 89700 131100 li1 82800 124200 89700 131100 met1 82800 117300 89700 131100 met2 -82800 117300 89700 124200 met1 82800 117300 89700 124200 met2 82800 117300 89700 124200 met3 82800 110400 89700 124200 met4 @@ -28984,9 +29060,10 @@ _06907_ 124200 138000 131100 144900 met1 124200 138000 131100 144900 li1 110400 75900 117300 82800 li1 -110400 75900 131100 82800 met1 -124200 75900 131100 82800 met1 -124200 75900 131100 103500 met2 +110400 75900 117300 82800 met1 +110400 75900 117300 103500 met2 +110400 96600 117300 103500 met1 +110400 96600 131100 103500 met1 ) _06908_ ( @@ -29025,9 +29102,10 @@ _06911_ 96600 124200 103500 131100 met1 96600 124200 103500 131100 met2 96600 124200 103500 131100 met3 -96600 124200 103500 186300 met4 -96600 179400 103500 186300 met3 -96600 179400 103500 186300 met2 +96600 124200 103500 165600 met4 +96600 158700 103500 165600 met3 +96600 158700 103500 165600 met2 +96600 158700 103500 186300 met2 96600 179400 103500 186300 met1 96600 179400 103500 186300 li1 75900 124200 82800 131100 li1 @@ -29040,10 +29118,9 @@ _06911_ 103500 82800 110400 89700 met1 103500 82800 117300 89700 met1 110400 82800 117300 89700 li1 -96600 124200 110400 131100 met3 -103500 124200 110400 131100 met2 -103500 124200 110400 131100 met1 +96600 124200 110400 131100 met1 103500 96600 110400 131100 met2 +103500 124200 110400 131100 met1 ) _06912_ ( @@ -29062,11 +29139,11 @@ _06914_ ( 103500 138000 110400 144900 li1 103500 138000 110400 144900 met1 -103500 96600 110400 144900 met2 -103500 96600 110400 103500 met1 -103500 96600 117300 103500 met1 -110400 96600 117300 103500 met1 -110400 75900 117300 103500 met2 +103500 89700 110400 144900 met2 +103500 89700 110400 96600 met2 +103500 89700 117300 96600 met3 +110400 89700 117300 96600 met2 +110400 75900 117300 96600 met2 110400 75900 117300 82800 met1 110400 75900 117300 82800 li1 ) @@ -29125,25 +29202,29 @@ _06918_ 103500 172500 110400 179400 met1 103500 172500 110400 186300 met2 96600 138000 103500 144900 li1 -96600 138000 110400 144900 met1 -103500 138000 110400 144900 met1 -103500 138000 110400 179400 met2 +96600 138000 103500 144900 met1 +96600 138000 103500 158700 met2 +96600 151800 103500 158700 met2 +96600 151800 110400 158700 met3 +103500 151800 110400 158700 met2 +103500 151800 110400 179400 met2 ) _06919_ ( 89700 131100 110400 138000 met1 -103500 131100 110400 138000 li1 +89700 144900 96600 151800 li1 89700 144900 110400 151800 met1 -103500 144900 110400 151800 li1 82800 138000 89700 144900 li1 82800 138000 96600 144900 met1 89700 138000 96600 144900 met1 89700 131100 96600 144900 met2 89700 131100 96600 138000 met1 89700 131100 96600 138000 li1 -89700 144900 96600 151800 li1 -89700 144900 96600 151800 met1 -89700 138000 96600 151800 met2 +103500 131100 110400 138000 li1 +103500 131100 110400 138000 met1 +103500 131100 110400 151800 met2 +103500 144900 110400 151800 met1 +103500 144900 110400 151800 li1 ) _06920_ ( @@ -29155,16 +29236,15 @@ _06920_ 96600 193200 110400 200100 met1 89700 138000 96600 144900 li1 89700 138000 96600 144900 met1 -89700 138000 96600 144900 met2 -89700 138000 110400 144900 met3 -103500 138000 110400 144900 met2 -103500 138000 110400 151800 met2 -103500 144900 110400 151800 met1 +89700 138000 96600 151800 met2 +89700 144900 96600 151800 met1 +89700 144900 110400 151800 met1 103500 144900 110400 151800 li1 -103500 144900 110400 158700 met2 -103500 151800 110400 158700 met2 -103500 151800 110400 158700 met3 -103500 151800 110400 200100 met4 +103500 144900 110400 151800 met1 +103500 144900 110400 165600 met2 +103500 158700 110400 165600 met2 +103500 158700 110400 165600 met3 +103500 158700 110400 200100 met4 103500 193200 110400 200100 met3 103500 193200 110400 200100 met2 103500 193200 110400 200100 met1 @@ -29205,26 +29285,27 @@ _06923_ 96600 179400 103500 186300 met1 96600 179400 110400 186300 met1 103500 179400 110400 186300 li1 -75900 138000 96600 144900 met1 -89700 138000 96600 144900 met1 -89700 138000 96600 179400 met2 +75900 138000 82800 158700 met2 +75900 151800 82800 158700 met1 +75900 151800 96600 158700 met1 +89700 151800 96600 158700 met1 +89700 151800 96600 179400 met2 89700 172500 96600 179400 met1 89700 172500 103500 179400 met1 ) _06924_ ( -75900 151800 138000 158700 met1 +69000 151800 138000 158700 met1 131100 151800 138000 158700 li1 -69000 151800 75900 158700 li1 -69000 151800 82800 158700 met1 69000 131100 75900 138000 li1 -69000 131100 82800 138000 met1 -75900 131100 82800 138000 met1 -75900 131100 82800 144900 met2 -75900 138000 82800 144900 met1 +69000 131100 75900 138000 met1 +69000 131100 75900 144900 met2 +69000 138000 75900 144900 met1 +69000 138000 75900 158700 met2 +69000 151800 75900 158700 met1 +69000 151800 75900 158700 li1 +69000 138000 82800 144900 met1 75900 138000 82800 144900 li1 -75900 138000 82800 158700 met2 -75900 151800 82800 158700 met1 ) _06925_ ( @@ -29267,17 +29348,9 @@ _06926_ ) _06927_ ( -75900 144900 82800 151800 li1 -75900 144900 82800 151800 met1 -75900 144900 82800 151800 met2 -75900 144900 82800 151800 met3 -75900 144900 82800 200100 met4 -75900 193200 82800 200100 met3 -75900 193200 82800 200100 met2 +75900 144900 82800 200100 met2 75900 193200 82800 200100 met1 75900 193200 82800 200100 li1 -131100 131100 138000 138000 met1 -131100 131100 138000 138000 met2 131100 131100 138000 138000 met3 131100 131100 138000 165600 met4 131100 158700 138000 165600 met3 @@ -29285,8 +29358,14 @@ _06927_ 131100 158700 138000 179400 met2 131100 172500 138000 179400 met1 131100 172500 138000 179400 li1 -131100 131100 144900 138000 met1 +131100 131100 144900 138000 met3 +138000 131100 144900 138000 met2 +138000 131100 144900 138000 met1 138000 131100 144900 138000 li1 +75900 144900 82800 151800 li1 +75900 144900 82800 151800 met1 +75900 144900 82800 151800 met2 +75900 144900 82800 151800 met3 75900 131100 82800 151800 met4 75900 131100 82800 138000 met3 75900 131100 82800 138000 met2 @@ -29296,25 +29375,25 @@ _06927_ ) _06928_ ( -96600 117300 117300 124200 met1 -96600 124200 110400 131100 met1 -103500 124200 110400 131100 li1 +103500 117300 117300 124200 met1 +96600 117300 103500 124200 li1 +96600 117300 110400 124200 met1 110400 117300 124200 124200 met1 117300 117300 124200 124200 li1 75900 131100 82800 138000 li1 75900 131100 89700 138000 met1 82800 131100 89700 138000 met1 -82800 124200 89700 138000 met2 -82800 124200 89700 131100 met1 -82800 124200 103500 131100 met1 +82800 117300 89700 138000 met2 +82800 117300 89700 124200 met1 +82800 117300 103500 124200 met1 110400 103500 117300 110400 li1 110400 103500 117300 110400 met1 110400 103500 117300 124200 met2 110400 117300 117300 124200 met1 -96600 124200 103500 131100 met1 -96600 117300 103500 131100 met2 -96600 117300 103500 124200 met1 -96600 117300 103500 124200 li1 +103500 117300 110400 124200 met1 +103500 117300 110400 131100 met2 +103500 124200 110400 131100 met1 +103500 124200 110400 131100 li1 ) _06929_ ( @@ -29329,11 +29408,10 @@ _06929_ _06930_ ( 75900 131100 82800 138000 li1 -75900 131100 96600 138000 met1 -89700 131100 96600 138000 met1 -89700 131100 96600 144900 met2 -89700 138000 96600 144900 met1 -89700 138000 103500 144900 met1 +75900 131100 82800 138000 met1 +75900 131100 82800 144900 met2 +75900 138000 82800 144900 met1 +75900 138000 103500 144900 met1 96600 138000 103500 144900 li1 ) _06931_ @@ -29354,23 +29432,27 @@ _06931_ ) _06932_ ( +96600 138000 124200 144900 met1 +110400 82800 117300 89700 met1 +110400 82800 117300 110400 met2 +110400 103500 117300 110400 met2 +110400 103500 124200 110400 met3 +117300 103500 124200 110400 met2 +117300 103500 124200 144900 met2 +117300 138000 124200 144900 met1 +117300 138000 124200 144900 li1 96600 138000 103500 144900 li1 96600 138000 103500 144900 met1 96600 131100 103500 144900 met2 -96600 82800 103500 89700 met1 -96600 82800 103500 89700 met2 -96600 82800 103500 89700 met3 -96600 82800 103500 138000 met4 -96600 131100 103500 138000 met3 -96600 131100 103500 138000 met2 96600 131100 103500 138000 met1 96600 131100 103500 138000 li1 -96600 138000 124200 144900 met1 -117300 138000 124200 144900 li1 96600 75900 103500 82800 li1 -96600 75900 103500 82800 met1 -96600 75900 103500 89700 met2 -96600 82800 124200 89700 met1 +96600 75900 110400 82800 met1 +103500 75900 110400 82800 met1 +103500 75900 110400 89700 met2 +103500 82800 110400 89700 met1 +103500 82800 117300 89700 met1 +110400 82800 124200 89700 met1 117300 82800 124200 89700 li1 ) _06933_ @@ -29426,14 +29508,13 @@ _06936_ ( 117300 158700 124200 165600 li1 117300 158700 124200 165600 met1 -117300 158700 124200 186300 met2 -117300 179400 124200 186300 met2 -117300 179400 131100 186300 met3 -124200 179400 131100 186300 met3 -124200 179400 131100 200100 met4 -124200 193200 131100 200100 met3 -124200 193200 131100 200100 met2 -124200 193200 131100 207000 met2 +117300 158700 124200 193200 met2 +117300 186300 124200 193200 met2 +117300 186300 131100 193200 met3 +124200 186300 131100 193200 met3 +124200 186300 131100 207000 met4 +124200 200100 131100 207000 met3 +124200 200100 131100 207000 met2 124200 200100 131100 207000 met1 124200 200100 131100 207000 li1 117300 144900 124200 165600 met2 @@ -29465,10 +29546,10 @@ _06937_ _06938_ ( 103500 131100 110400 138000 li1 -103500 131100 124200 138000 met1 -117300 131100 124200 138000 met1 -117300 131100 124200 151800 met2 -117300 144900 124200 151800 met1 +103500 131100 110400 138000 met1 +103500 131100 110400 151800 met2 +103500 144900 110400 151800 met1 +103500 144900 124200 151800 met1 117300 144900 124200 151800 li1 ) _06939_ @@ -29485,35 +29566,34 @@ _06940_ ) _06941_ ( -75900 151800 82800 158700 li1 -75900 151800 82800 158700 met1 -75900 151800 82800 165600 met2 -75900 158700 82800 165600 met1 -69000 158700 75900 165600 li1 -69000 158700 82800 165600 met1 -75900 158700 89700 165600 met1 +82800 151800 89700 158700 li1 +82800 151800 89700 158700 met1 +82800 151800 89700 165600 met2 +82800 158700 89700 165600 met1 82800 158700 89700 165600 li1 +69000 158700 75900 165600 li1 +69000 158700 89700 165600 met1 75900 151800 89700 158700 met1 -82800 151800 89700 158700 li1 +75900 151800 82800 158700 li1 ) _06942_ ( 82800 158700 89700 165600 li1 -82800 158700 110400 165600 met1 -103500 158700 110400 165600 met1 -103500 158700 110400 179400 met2 -103500 172500 110400 179400 met1 +82800 158700 89700 165600 met1 +82800 158700 89700 179400 met2 +82800 172500 89700 179400 met1 +82800 172500 110400 179400 met1 103500 172500 110400 179400 li1 +69000 151800 82800 158700 met1 +75900 151800 82800 158700 li1 +75900 151800 89700 158700 met1 +82800 151800 89700 158700 met1 +82800 151800 89700 165600 met2 69000 151800 75900 158700 li1 69000 151800 75900 158700 met1 -69000 151800 75900 165600 met2 -69000 158700 75900 165600 met1 -69000 158700 89700 165600 met1 69000 138000 75900 158700 met2 69000 138000 75900 144900 met1 69000 138000 75900 144900 li1 -69000 151800 82800 158700 met1 -75900 151800 82800 158700 li1 ) _06943_ ( @@ -29650,20 +29730,17 @@ _06951_ 62100 213900 69000 220800 met1 62100 172500 69000 220800 met2 62100 172500 69000 179400 met1 +62100 138000 69000 144900 met1 +62100 138000 69000 179400 met2 +62100 138000 75900 144900 met1 +69000 138000 75900 144900 li1 +62100 131100 89700 138000 met1 +82800 131100 89700 138000 li1 62100 172500 82800 179400 met1 -69000 138000 82800 144900 met1 -75900 138000 82800 144900 met1 -75900 138000 82800 179400 met2 -75900 172500 82800 179400 met1 75900 172500 82800 179400 li1 -69000 138000 75900 144900 li1 -69000 138000 75900 144900 met1 -69000 131100 75900 144900 met2 -69000 131100 75900 138000 met1 62100 131100 69000 138000 li1 -62100 131100 75900 138000 met1 -69000 131100 89700 138000 met1 -82800 131100 89700 138000 li1 +62100 131100 69000 138000 met1 +62100 131100 69000 144900 met2 ) _06952_ ( @@ -29692,21 +29769,22 @@ _06953_ ) _06954_ ( -75900 165600 110400 172500 met1 -75900 165600 82800 172500 li1 -69000 179400 110400 186300 met1 +69000 179400 82800 186300 met1 69000 179400 75900 186300 li1 69000 179400 75900 186300 met1 69000 179400 75900 193200 met2 69000 186300 75900 193200 met1 69000 186300 75900 193200 li1 -103500 165600 110400 172500 met1 -103500 165600 110400 186300 met2 -103500 179400 110400 186300 met1 +75900 179400 110400 186300 met1 103500 179400 110400 186300 li1 -103500 151800 110400 158700 li1 +103500 179400 110400 186300 met1 +103500 151800 110400 186300 met2 103500 151800 110400 158700 met1 -103500 151800 110400 172500 met2 +103500 151800 110400 158700 li1 +75900 179400 82800 186300 met1 +75900 165600 82800 186300 met2 +75900 165600 82800 172500 met1 +75900 165600 82800 172500 li1 ) _06955_ ( @@ -29763,16 +29841,19 @@ _06959_ 96600 172500 103500 186300 met2 96600 179400 103500 186300 met1 96600 179400 103500 186300 li1 -96600 158700 103500 179400 met2 -96600 158700 103500 165600 met1 +82800 158700 96600 165600 met1 +89700 158700 96600 165600 met1 +89700 158700 96600 179400 met2 +89700 172500 96600 179400 met1 +89700 172500 103500 179400 met1 69000 158700 75900 165600 li1 -69000 158700 103500 165600 met1 -96600 138000 117300 144900 met1 +69000 158700 89700 165600 met1 +82800 138000 117300 144900 met1 110400 138000 117300 144900 li1 -96600 138000 103500 165600 met2 -96600 138000 103500 144900 met1 +82800 158700 89700 165600 met1 +82800 138000 89700 165600 met2 +82800 138000 89700 144900 met1 82800 138000 89700 144900 li1 -82800 138000 103500 144900 met1 ) _06960_ ( @@ -29790,11 +29871,10 @@ _06961_ _06962_ ( 62100 144900 69000 151800 li1 -62100 144900 75900 151800 met1 -69000 144900 75900 151800 met1 -69000 138000 75900 151800 met2 -69000 138000 75900 144900 met1 -69000 138000 110400 144900 met1 +62100 144900 69000 151800 met1 +62100 138000 69000 151800 met2 +62100 138000 69000 144900 met1 +62100 138000 110400 144900 met1 103500 138000 110400 144900 li1 ) _06963_ @@ -29877,11 +29957,10 @@ _06968_ _06969_ ( 248400 393300 255300 400200 li1 -248400 393300 276000 400200 met1 -269100 393300 276000 400200 met1 -269100 393300 276000 441600 met2 -269100 434700 276000 441600 met1 -269100 434700 282900 441600 met1 +248400 393300 255300 400200 met1 +248400 393300 255300 441600 met2 +248400 434700 255300 441600 met1 +248400 434700 282900 441600 met1 276000 434700 282900 441600 li1 ) _06970_ @@ -30104,11 +30183,11 @@ _06989_ 172500 262200 179400 269100 met1 172500 262200 179400 269100 met2 172500 262200 179400 269100 met3 -172500 248400 179400 269100 met4 -172500 248400 179400 255300 met3 -172500 248400 200100 255300 met3 -193200 248400 200100 255300 met3 -193200 131100 200100 255300 met4 +172500 241500 179400 269100 met4 +172500 241500 179400 248400 met3 +172500 241500 200100 248400 met3 +193200 241500 200100 248400 met3 +193200 131100 200100 248400 met4 193200 131100 200100 138000 met3 193200 131100 200100 138000 met2 193200 131100 200100 138000 met1 @@ -30193,11 +30272,11 @@ _06994_ _06995_ ( 144900 276000 151800 282900 li1 -144900 276000 172500 282900 met1 -165600 276000 172500 282900 met1 -165600 262200 172500 282900 met2 -165600 262200 172500 269100 met1 -165600 262200 179400 269100 met1 +144900 276000 158700 282900 met1 +151800 276000 158700 282900 met1 +151800 262200 158700 282900 met2 +151800 262200 158700 269100 met1 +151800 262200 179400 269100 met1 172500 262200 179400 269100 li1 ) _06996_ @@ -30220,11 +30299,10 @@ _06997_ _06998_ ( 172500 262200 179400 269100 li1 -172500 262200 193200 269100 met1 -186300 262200 193200 269100 met1 -186300 255300 193200 269100 met2 -186300 255300 193200 262200 met1 -186300 255300 207000 262200 met1 +172500 262200 207000 269100 met1 +200100 262200 207000 269100 met1 +200100 255300 207000 269100 met2 +200100 255300 207000 262200 met1 200100 255300 207000 262200 li1 ) _06999_ @@ -30276,11 +30354,10 @@ _07003_ ( 89700 75900 96600 82800 li1 89700 75900 96600 82800 met1 -89700 75900 96600 96600 met2 -89700 89700 96600 96600 met2 -89700 89700 103500 96600 met3 -96600 89700 103500 96600 met2 -96600 89700 103500 103500 met2 +89700 75900 96600 82800 met2 +89700 75900 103500 82800 met3 +96600 75900 103500 82800 met2 +96600 75900 103500 103500 met2 96600 96600 103500 103500 met1 96600 96600 103500 103500 li1 ) @@ -30343,10 +30420,10 @@ _07007_ _07008_ ( 89700 89700 96600 96600 li1 -89700 89700 103500 96600 met1 -96600 89700 103500 96600 met1 -96600 82800 103500 96600 met2 -96600 82800 103500 89700 met1 +89700 89700 96600 96600 met1 +89700 82800 96600 96600 met2 +89700 82800 96600 89700 met1 +89700 82800 103500 89700 met1 96600 82800 103500 89700 li1 ) _07009_ @@ -30356,18 +30433,21 @@ _07009_ ) _07010_ ( -55200 131100 89700 138000 met1 -55200 131100 62100 138000 met1 -55200 131100 62100 213900 met2 -55200 207000 62100 213900 met1 -55200 207000 96600 213900 met1 +82800 131100 89700 138000 met1 +82800 131100 89700 138000 met2 +82800 131100 96600 138000 met3 +89700 131100 96600 138000 met3 +89700 131100 96600 200100 met4 +89700 193200 96600 200100 met3 +89700 193200 96600 200100 met2 +89700 193200 96600 213900 met2 +89700 207000 96600 213900 met1 89700 207000 96600 213900 li1 82800 117300 89700 124200 li1 82800 117300 89700 124200 met1 82800 96600 89700 124200 met2 82800 96600 89700 103500 met1 82800 96600 89700 103500 li1 -82800 131100 89700 138000 met1 82800 117300 89700 138000 met2 82800 82800 89700 103500 met2 82800 82800 89700 89700 met1 @@ -30423,11 +30503,11 @@ _07016_ 96600 227700 103500 234600 li1 96600 227700 103500 234600 met1 96600 227700 103500 234600 met2 -27600 227700 103500 234600 met3 -27600 227700 34500 234600 met3 -27600 138000 34500 234600 met4 -27600 138000 34500 144900 met3 -27600 138000 103500 144900 met3 +41400 227700 103500 234600 met3 +41400 227700 48300 234600 met3 +41400 138000 48300 234600 met4 +41400 138000 48300 144900 met3 +41400 138000 103500 144900 met3 96600 138000 103500 144900 met2 96600 138000 103500 144900 met1 96600 138000 103500 144900 li1 @@ -30458,10 +30538,10 @@ _07018_ 117300 220800 124200 227700 li1 89700 207000 96600 213900 li1 89700 207000 96600 213900 met1 -89700 179400 96600 213900 met2 -89700 179400 96600 186300 met2 -89700 179400 96600 186300 met3 -89700 124200 96600 186300 met4 +89700 200100 96600 213900 met2 +89700 200100 96600 207000 met2 +89700 200100 96600 207000 met3 +89700 124200 96600 207000 met4 89700 124200 96600 131100 met3 89700 124200 96600 131100 met2 ) @@ -30476,10 +30556,10 @@ _07019_ _07020_ ( 110400 213900 117300 220800 li1 -110400 213900 117300 220800 met1 -110400 207000 117300 220800 met2 -110400 207000 117300 213900 met1 -110400 207000 124200 213900 met1 +110400 213900 124200 220800 met1 +117300 213900 124200 220800 met1 +117300 207000 124200 220800 met2 +117300 207000 124200 213900 met1 117300 207000 124200 213900 li1 89700 220800 96600 227700 li1 89700 220800 103500 227700 met1 @@ -30521,10 +30601,10 @@ _07023_ _07024_ ( 124200 96600 131100 103500 li1 -124200 96600 131100 103500 met1 -124200 82800 131100 103500 met2 -124200 82800 131100 89700 met1 -124200 82800 138000 89700 met1 +124200 96600 138000 103500 met1 +131100 96600 138000 103500 met1 +131100 82800 138000 103500 met2 +131100 82800 138000 89700 met1 131100 82800 138000 89700 li1 ) _07025_ @@ -30596,10 +30676,10 @@ _07031_ _07032_ ( 131100 96600 138000 103500 li1 -131100 96600 138000 103500 met1 -131100 89700 138000 103500 met2 -131100 89700 138000 96600 met1 -131100 89700 144900 96600 met1 +131100 96600 144900 103500 met1 +138000 96600 144900 103500 met1 +138000 89700 144900 103500 met2 +138000 89700 144900 96600 met1 138000 89700 144900 96600 li1 ) _07033_ @@ -30699,14 +30779,14 @@ _07040_ _07041_ ( 103500 103500 124200 110400 met1 +117300 103500 124200 110400 li1 75900 69000 82800 75900 li1 75900 69000 89700 75900 met1 82800 69000 89700 75900 li1 -117300 103500 124200 110400 li1 -117300 103500 124200 110400 met1 -117300 103500 124200 117300 met2 -117300 110400 124200 117300 met1 -117300 110400 131100 117300 met1 +117300 103500 131100 110400 met1 +124200 103500 131100 110400 met1 +124200 103500 131100 117300 met2 +124200 110400 131100 117300 met1 124200 110400 131100 117300 li1 82800 69000 110400 75900 met1 103500 69000 110400 75900 met1 @@ -30828,9 +30908,10 @@ _07051_ 131100 117300 138000 124200 met1 131100 117300 138000 151800 met2 82800 144900 89700 151800 li1 -82800 144900 89700 151800 met1 -82800 144900 89700 151800 met2 -82800 144900 138000 151800 met3 +82800 144900 96600 151800 met1 +89700 144900 96600 151800 met1 +89700 144900 96600 151800 met2 +89700 144900 138000 151800 met3 131100 144900 138000 151800 met2 131100 144900 138000 165600 met2 131100 158700 138000 165600 met1 @@ -30838,40 +30919,33 @@ _07051_ ) _07052_ ( -96600 172500 117300 179400 met1 -110400 172500 117300 179400 li1 -110400 172500 117300 179400 met1 -110400 165600 117300 179400 met2 -110400 165600 117300 172500 met1 +96600 165600 117300 172500 met1 110400 165600 138000 172500 met1 131100 165600 138000 172500 li1 -96600 172500 103500 179400 met1 -96600 172500 103500 227700 met2 +96600 165600 103500 172500 met1 +96600 165600 103500 227700 met2 96600 220800 103500 227700 met1 96600 220800 103500 227700 li1 -75900 158700 82800 165600 met1 -75900 158700 82800 165600 met2 -75900 158700 82800 165600 met3 -75900 131100 82800 165600 met4 -75900 131100 82800 138000 met3 -75900 131100 82800 138000 met2 -75900 131100 82800 138000 met1 -75900 131100 82800 138000 li1 -75900 158700 82800 179400 met2 -75900 172500 82800 179400 met1 -75900 172500 103500 179400 met1 69000 158700 75900 165600 li1 -69000 158700 82800 165600 met1 +62100 158700 75900 165600 met1 +62100 158700 69000 165600 met1 +62100 131100 69000 165600 met2 +62100 131100 69000 138000 met1 +62100 131100 82800 138000 met1 +75900 131100 82800 138000 li1 +69000 158700 103500 165600 met1 +96600 158700 103500 165600 met1 +96600 158700 103500 172500 met2 +110400 165600 117300 172500 met1 +110400 165600 117300 179400 met2 +110400 172500 117300 179400 met1 +110400 172500 117300 179400 li1 ) _07053_ ( -69000 158700 75900 165600 li1 -69000 158700 75900 165600 met1 -69000 158700 75900 179400 met2 -69000 172500 75900 179400 met2 -62100 172500 75900 179400 met3 -62100 172500 69000 179400 met2 -62100 172500 69000 227700 met2 +62100 158700 75900 165600 met1 +62100 158700 69000 165600 met1 +62100 158700 69000 227700 met2 62100 220800 69000 227700 met1 62100 220800 75900 227700 met1 69000 220800 75900 227700 li1 @@ -30880,6 +30954,8 @@ _07053_ 69000 151800 75900 158700 met1 69000 151800 75900 158700 li1 69000 151800 75900 165600 met2 +69000 158700 75900 165600 met1 +69000 158700 75900 165600 li1 69000 131100 75900 144900 met2 69000 131100 75900 138000 met1 69000 131100 75900 138000 li1 @@ -30889,12 +30965,9 @@ _07053_ _07054_ ( 75900 131100 82800 138000 li1 -75900 131100 82800 138000 met1 -75900 131100 82800 144900 met2 -75900 138000 82800 144900 met1 -75900 138000 89700 144900 met1 -82800 138000 89700 144900 met1 -82800 138000 89700 151800 met2 +75900 131100 89700 138000 met1 +82800 131100 89700 138000 met1 +82800 131100 89700 151800 met2 82800 144900 89700 151800 met1 82800 144900 89700 151800 li1 ) @@ -30964,21 +31037,19 @@ _07060_ ) _07061_ ( -82800 179400 89700 186300 li1 -82800 179400 89700 186300 met1 -82800 172500 89700 186300 met2 +82800 151800 131100 158700 met1 +124200 151800 131100 158700 li1 82800 172500 89700 179400 met1 +82800 172500 89700 186300 met2 +82800 179400 89700 186300 met1 +82800 179400 89700 186300 li1 82800 172500 110400 179400 met1 103500 172500 110400 179400 li1 -103500 172500 110400 179400 met1 -103500 151800 110400 179400 met2 -103500 151800 110400 158700 met1 -103500 144900 110400 158700 met2 -103500 144900 110400 151800 met1 -82800 144900 110400 151800 met1 +82800 151800 89700 179400 met2 +82800 151800 89700 158700 met1 +82800 144900 89700 158700 met2 +82800 144900 89700 151800 met1 82800 144900 89700 151800 li1 -103500 151800 131100 158700 met1 -124200 151800 131100 158700 li1 ) _07062_ ( @@ -31046,23 +31117,22 @@ _07067_ ) _07068_ ( -75900 220800 82800 227700 li1 +75900 207000 82800 213900 met1 +75900 207000 82800 227700 met2 75900 220800 82800 227700 met1 -75900 213900 82800 227700 met2 -75900 213900 82800 220800 met1 -75900 213900 103500 220800 met1 -96600 213900 103500 220800 li1 -96600 213900 110400 220800 met1 -103500 213900 110400 220800 met1 -103500 207000 110400 220800 met2 -103500 207000 110400 213900 met1 -103500 207000 131100 213900 met1 +75900 220800 82800 227700 li1 +75900 207000 103500 213900 met1 +96600 207000 131100 213900 met1 124200 207000 131100 213900 li1 75900 220800 89700 227700 met1 82800 220800 89700 227700 li1 -75900 193200 82800 220800 met2 -75900 193200 82800 200100 met1 75900 193200 82800 200100 li1 +75900 193200 82800 200100 met1 +75900 193200 82800 213900 met2 +96600 207000 103500 213900 met1 +96600 207000 103500 220800 met2 +96600 213900 103500 220800 met1 +96600 213900 103500 220800 li1 ) _07069_ ( @@ -31083,10 +31153,10 @@ _07069_ _07070_ ( 69000 186300 75900 193200 li1 -69000 186300 75900 193200 met1 -69000 186300 75900 200100 met2 -69000 193200 75900 200100 met1 -69000 193200 82800 200100 met1 +69000 186300 82800 193200 met1 +75900 186300 82800 193200 met1 +75900 186300 82800 200100 met2 +75900 193200 82800 200100 met1 75900 193200 82800 200100 li1 ) _07071_ @@ -31119,11 +31189,10 @@ _07072_ _07073_ ( 96600 193200 103500 200100 li1 -96600 193200 110400 200100 met1 -103500 193200 110400 200100 met1 -103500 193200 110400 213900 met2 -103500 207000 110400 213900 met1 -103500 207000 144900 213900 met1 +96600 193200 103500 200100 met1 +96600 193200 103500 213900 met2 +96600 207000 103500 213900 met1 +96600 207000 144900 213900 met1 138000 207000 144900 213900 li1 75900 193200 103500 200100 met1 75900 186300 82800 193200 li1 @@ -31143,13 +31212,14 @@ _07074_ 75900 234600 82800 241500 li1 75900 165600 82800 172500 li1 75900 165600 82800 172500 met1 -75900 144900 82800 172500 met2 -75900 144900 82800 151800 met1 -62100 144900 82800 151800 met1 -62100 144900 69000 151800 met1 -62100 110400 69000 151800 met2 -62100 110400 69000 117300 met1 -62100 110400 82800 117300 met1 +75900 138000 82800 172500 met2 +75900 138000 82800 144900 met2 +75900 138000 82800 144900 met3 +75900 117300 82800 144900 met4 +75900 117300 82800 124200 met3 +75900 117300 82800 124200 met2 +75900 110400 82800 124200 met2 +75900 110400 82800 117300 met1 75900 110400 82800 117300 li1 75900 165600 82800 186300 met2 75900 179400 82800 186300 met1 @@ -31181,17 +31251,13 @@ _07077_ 96600 144900 103500 151800 li1 96600 144900 103500 151800 met1 96600 144900 103500 151800 met2 -96600 144900 124200 151800 met3 -117300 144900 124200 151800 met2 -117300 144900 124200 151800 met1 -117300 144900 144900 151800 met1 -138000 144900 144900 151800 met1 -138000 144900 144900 151800 met2 -138000 144900 213900 151800 met3 -207000 144900 213900 151800 met3 -207000 144900 213900 262200 met4 -207000 255300 213900 262200 met3 -200100 255300 213900 262200 met3 +96600 144900 103500 151800 met3 +96600 144900 103500 151800 met4 +96600 144900 220800 151800 met5 +213900 144900 220800 151800 met4 +213900 144900 220800 262200 met4 +213900 255300 220800 262200 met3 +200100 255300 220800 262200 met3 200100 255300 207000 262200 met2 200100 255300 207000 262200 met1 200100 255300 207000 262200 li1 @@ -31442,14 +31508,11 @@ _07099_ 117300 165600 124200 172500 li1 117300 117300 124200 124200 met1 117300 117300 124200 158700 met2 -117300 165600 138000 172500 met1 -131100 165600 138000 172500 met1 -131100 165600 138000 186300 met2 -131100 179400 138000 186300 met2 -131100 179400 158700 186300 met3 -151800 179400 158700 186300 met2 -151800 179400 158700 207000 met2 -151800 200100 158700 207000 met1 +117300 165600 165600 172500 met1 +158700 165600 165600 172500 met1 +158700 165600 165600 207000 met2 +158700 200100 165600 207000 met1 +151800 200100 165600 207000 met1 151800 200100 158700 207000 li1 117300 110400 124200 117300 li1 117300 110400 124200 117300 met1 @@ -31479,20 +31542,17 @@ _07101_ ( 144900 158700 151800 165600 li1 144900 158700 151800 165600 met1 -144900 158700 151800 193200 met2 -144900 186300 151800 193200 met2 -144900 186300 158700 193200 met3 -151800 186300 158700 193200 met3 -151800 186300 158700 227700 met4 -151800 220800 158700 227700 met3 -151800 220800 165600 227700 met3 -158700 220800 165600 227700 met2 +144900 158700 151800 200100 met2 +144900 193200 151800 200100 met2 +144900 193200 165600 200100 met3 +158700 193200 165600 200100 met2 +158700 193200 165600 227700 met2 158700 220800 165600 227700 met1 165600 262200 172500 269100 li1 -165600 262200 172500 269100 met1 -165600 262200 172500 276000 met2 -165600 269100 172500 276000 met1 -165600 269100 179400 276000 met1 +165600 262200 179400 269100 met1 +172500 262200 179400 269100 met1 +172500 262200 179400 276000 met2 +172500 269100 179400 276000 met1 172500 269100 179400 276000 li1 144900 151800 151800 165600 met2 144900 151800 151800 158700 met1 @@ -31547,9 +31607,9 @@ _07104_ 151800 207000 158700 213900 met1 151800 207000 158700 213900 li1 151800 144900 158700 172500 met2 -151800 144900 158700 151800 met2 -151800 144900 165600 151800 met3 -158700 144900 165600 151800 met2 +151800 144900 158700 151800 met1 +151800 144900 165600 151800 met1 +158700 144900 165600 151800 met1 158700 138000 165600 151800 met2 158700 138000 165600 144900 met1 158700 138000 165600 144900 li1 @@ -31598,31 +31658,34 @@ _07108_ ) _07109_ ( -82800 172500 89700 179400 li1 -82800 172500 89700 179400 met1 -82800 172500 89700 179400 met2 -82800 172500 89700 179400 met3 -82800 172500 89700 220800 met4 -82800 213900 89700 220800 met3 -82800 213900 89700 220800 met2 -82800 213900 89700 220800 met1 -82800 213900 89700 220800 li1 75900 144900 82800 151800 li1 75900 144900 82800 151800 met1 75900 144900 82800 151800 met2 75900 144900 89700 151800 met3 82800 144900 89700 151800 met3 -82800 144900 89700 179400 met4 -82800 172500 144900 179400 met3 -138000 172500 144900 179400 met2 -138000 172500 144900 179400 met1 -138000 172500 144900 179400 li1 -138000 172500 151800 179400 met3 -144900 172500 151800 179400 met2 -144900 151800 151800 179400 met2 +82800 144900 89700 172500 met4 +82800 165600 89700 172500 met3 +82800 213900 89700 220800 li1 +82800 213900 89700 220800 met1 +82800 213900 89700 220800 met2 +82800 213900 89700 220800 met3 +82800 172500 89700 220800 met4 +82800 172500 89700 179400 met3 +82800 172500 89700 179400 met2 +82800 172500 89700 179400 met1 +82800 172500 89700 179400 li1 +82800 165600 144900 172500 met3 +138000 165600 144900 172500 met2 +138000 165600 151800 172500 met3 +144900 165600 151800 172500 met2 +144900 151800 151800 172500 met2 144900 151800 151800 158700 met1 144900 151800 165600 158700 met1 158700 151800 165600 158700 li1 +82800 165600 89700 179400 met4 +138000 165600 144900 179400 met2 +138000 172500 144900 179400 met1 +138000 172500 144900 179400 li1 ) _07110_ ( @@ -31643,22 +31706,22 @@ _07110_ ) _07111_ ( -138000 200100 151800 207000 met1 -144900 200100 151800 207000 met1 -144900 200100 151800 220800 met2 -144900 213900 151800 220800 met1 144900 213900 151800 220800 li1 +144900 213900 151800 220800 met1 +144900 200100 151800 220800 met2 +144900 200100 151800 207000 met1 158700 213900 165600 220800 li1 158700 213900 165600 220800 met1 158700 213900 165600 227700 met2 158700 220800 165600 227700 met1 158700 220800 165600 227700 li1 138000 193200 144900 200100 li1 -138000 193200 144900 200100 met1 -138000 193200 144900 207000 met2 -138000 200100 144900 207000 met1 -138000 200100 144900 207000 li1 +138000 193200 151800 200100 met1 +144900 193200 151800 200100 met1 +144900 193200 151800 207000 met2 144900 213900 165600 220800 met1 +138000 200100 144900 207000 li1 +138000 200100 151800 207000 met1 ) _07112_ ( @@ -31696,36 +31759,33 @@ _07113_ ) _07114_ ( -158700 144900 165600 151800 li1 -158700 144900 165600 151800 met1 -158700 144900 165600 151800 met2 -158700 144900 165600 151800 met3 -158700 144900 165600 213900 met4 -158700 207000 165600 213900 met3 -131100 207000 165600 213900 met3 -131100 207000 138000 213900 met2 -131100 207000 138000 213900 met1 -131100 207000 138000 213900 li1 +158700 138000 213900 144900 met1 +207000 138000 213900 144900 met1 +207000 138000 213900 234600 met2 +207000 227700 213900 234600 met1 +158700 227700 213900 234600 met1 +158700 227700 165600 234600 li1 138000 227700 144900 234600 met1 -138000 227700 144900 234600 met2 -138000 227700 144900 234600 met3 -138000 227700 144900 241500 met4 -138000 234600 144900 241500 met3 -138000 234600 144900 241500 met2 +138000 227700 144900 241500 met2 138000 234600 144900 241500 met1 138000 234600 144900 241500 li1 -138000 227700 165600 234600 met1 -158700 227700 165600 234600 li1 +131100 207000 138000 213900 li1 +131100 207000 138000 213900 met1 +131100 207000 138000 234600 met2 +131100 227700 138000 234600 met1 +131100 227700 144900 234600 met1 124200 96600 131100 103500 li1 124200 96600 131100 103500 met1 124200 96600 131100 110400 met2 -124200 103500 131100 110400 met2 -124200 103500 165600 110400 met3 -158700 103500 165600 110400 met3 -158700 103500 165600 151800 met4 -131100 207000 138000 234600 met2 -131100 227700 138000 234600 met2 -131100 227700 144900 234600 met3 +124200 103500 131100 110400 met1 +124200 103500 165600 110400 met1 +158700 103500 165600 110400 met1 +158700 103500 165600 144900 met2 +158700 138000 165600 144900 met1 +138000 227700 165600 234600 met1 +158700 138000 165600 151800 met2 +158700 144900 165600 151800 met1 +158700 144900 165600 151800 li1 ) _07115_ ( @@ -31761,9 +31821,9 @@ _07118_ 89700 110400 96600 117300 met1 89700 110400 96600 117300 met2 6900 110400 96600 117300 met3 -6900 110400 13800 117300 met2 -6900 110400 13800 234600 met2 -6900 227700 13800 234600 met2 +6900 110400 13800 117300 met3 +6900 110400 13800 234600 met4 +6900 227700 13800 234600 met3 6900 227700 75900 234600 met3 69000 227700 75900 234600 met2 69000 227700 75900 234600 met1 @@ -31804,32 +31864,32 @@ _07120_ ) _07121_ ( -69000 151800 75900 158700 met2 -69000 151800 131100 158700 met3 -124200 151800 131100 158700 met2 -124200 151800 131100 158700 met1 -124200 151800 131100 158700 li1 +69000 151800 131100 158700 met1 69000 110400 103500 117300 met1 96600 110400 103500 117300 li1 69000 110400 75900 117300 met1 69000 103500 75900 117300 met2 69000 103500 75900 110400 met1 69000 103500 75900 110400 li1 +124200 151800 131100 158700 li1 +124200 151800 131100 158700 met1 124200 151800 131100 165600 met2 124200 158700 131100 165600 met1 124200 158700 138000 165600 met1 131100 158700 138000 165600 li1 69000 110400 75900 158700 met2 +69000 151800 75900 158700 met1 69000 151800 75900 172500 met2 69000 165600 75900 172500 met1 69000 165600 75900 172500 li1 ) _07122_ ( -144900 158700 158700 165600 met1 -151800 158700 158700 165600 met1 -151800 158700 158700 172500 met2 -151800 165600 158700 172500 met1 +144900 158700 151800 165600 li1 +144900 158700 151800 165600 met1 +144900 158700 151800 172500 met2 +144900 165600 151800 172500 met1 +144900 165600 158700 172500 met1 151800 165600 158700 172500 li1 75900 151800 82800 158700 li1 75900 151800 138000 158700 met1 @@ -31837,8 +31897,6 @@ _07122_ 131100 151800 151800 158700 met1 144900 151800 151800 158700 met1 144900 151800 151800 165600 met2 -144900 158700 151800 165600 met1 -144900 158700 151800 165600 li1 69000 158700 75900 165600 li1 69000 158700 75900 165600 met1 69000 151800 75900 165600 met2 @@ -31860,10 +31918,11 @@ _07124_ _07125_ ( 151800 158700 158700 165600 li1 -151800 158700 200100 165600 met1 -193200 158700 200100 165600 met1 -193200 158700 200100 234600 met2 -193200 227700 200100 234600 met1 +151800 158700 234600 165600 met1 +227700 158700 234600 165600 met1 +227700 158700 234600 234600 met2 +227700 227700 234600 234600 met1 +193200 227700 234600 234600 met1 193200 227700 200100 234600 li1 ) _07126_ @@ -31875,14 +31934,15 @@ _07126_ 69000 227700 75900 234600 met1 69000 227700 75900 234600 li1 75900 179400 82800 186300 li1 -75900 179400 82800 186300 met1 -75900 179400 82800 186300 met2 -75900 179400 82800 186300 met3 -75900 158700 82800 186300 met4 -75900 158700 82800 165600 met3 -75900 158700 124200 165600 met3 -117300 158700 124200 165600 met2 -117300 158700 124200 165600 met1 +75900 179400 96600 186300 met1 +89700 179400 96600 186300 met1 +89700 172500 96600 186300 met2 +89700 172500 96600 179400 met1 +89700 172500 103500 179400 met1 +96600 172500 103500 179400 met1 +96600 158700 103500 179400 met2 +96600 158700 103500 165600 met1 +96600 158700 124200 165600 met1 117300 158700 124200 165600 li1 69000 220800 110400 227700 met1 103500 220800 110400 227700 li1 @@ -31906,10 +31966,10 @@ _07128_ 89700 124200 96600 131100 li1 89700 124200 144900 131100 met1 138000 124200 144900 131100 li1 -138000 124200 144900 131100 met1 -138000 124200 144900 138000 met2 -138000 131100 144900 138000 met1 -138000 131100 151800 138000 met1 +138000 124200 151800 131100 met1 +144900 124200 151800 131100 met1 +144900 124200 151800 138000 met2 +144900 131100 151800 138000 met1 144900 131100 151800 138000 li1 82800 131100 89700 138000 li1 82800 131100 89700 138000 met1 @@ -31964,9 +32024,12 @@ _07133_ ( 103500 200100 110400 207000 li1 103500 200100 110400 207000 met1 -103500 165600 110400 207000 met2 -103500 165600 110400 172500 met1 -103500 165600 117300 172500 met1 +103500 179400 110400 207000 met2 +103500 179400 110400 186300 met2 +103500 179400 117300 186300 met3 +110400 179400 117300 186300 met2 +110400 165600 117300 186300 met2 +110400 165600 117300 172500 met1 110400 165600 117300 172500 li1 103500 213900 117300 220800 met1 110400 213900 117300 220800 li1 @@ -31976,13 +32039,14 @@ _07133_ ) _07134_ ( -138000 213900 144900 220800 met1 -138000 207000 144900 220800 met2 -138000 207000 144900 213900 met1 -138000 207000 151800 213900 met1 +138000 213900 151800 220800 met1 +144900 213900 151800 220800 met1 +144900 207000 151800 220800 met2 +144900 207000 151800 213900 met1 144900 207000 151800 213900 li1 75900 213900 82800 220800 li1 75900 213900 96600 220800 met1 +138000 213900 144900 220800 met1 138000 213900 144900 241500 met2 138000 234600 144900 241500 met1 138000 234600 144900 241500 li1 @@ -32017,10 +32081,11 @@ _07137_ 96600 200100 103500 207000 met1 96600 200100 103500 207000 li1 117300 200100 124200 207000 li1 -117300 200100 124200 207000 met1 -117300 200100 124200 213900 met2 -117300 207000 124200 213900 met1 -117300 207000 138000 213900 met1 +117300 200100 131100 207000 met1 +124200 200100 131100 207000 met1 +124200 200100 131100 213900 met2 +124200 207000 131100 213900 met1 +124200 207000 138000 213900 met1 131100 207000 138000 213900 li1 110400 200100 117300 207000 met1 110400 200100 117300 220800 met2 @@ -32073,11 +32138,10 @@ _07141_ _07142_ ( 82800 179400 89700 186300 li1 -82800 179400 96600 186300 met1 -89700 179400 96600 186300 met1 -89700 179400 96600 213900 met2 -89700 207000 96600 213900 met1 -89700 207000 124200 213900 met1 +82800 179400 89700 186300 met1 +82800 179400 89700 213900 met2 +82800 207000 89700 213900 met1 +82800 207000 124200 213900 met1 117300 207000 124200 213900 li1 ) _07143_ @@ -32170,16 +32234,12 @@ _07150_ 131100 131100 138000 138000 li1 82800 193200 89700 200100 li1 82800 193200 89700 200100 met1 -82800 179400 89700 200100 met2 -82800 179400 89700 186300 met2 -82800 179400 103500 186300 met3 -96600 179400 103500 186300 met2 -96600 172500 103500 186300 met2 -96600 172500 103500 179400 met2 -96600 172500 103500 179400 met3 -96600 151800 103500 179400 met4 -96600 151800 103500 158700 met3 -96600 151800 151800 158700 met3 +82800 165600 89700 200100 met2 +82800 165600 89700 172500 met2 +82800 165600 89700 172500 met3 +82800 151800 89700 172500 met4 +82800 151800 89700 158700 met3 +82800 151800 151800 158700 met3 144900 151800 151800 158700 met2 144900 144900 151800 158700 met2 144900 144900 151800 151800 met1 @@ -32443,35 +32503,41 @@ _07172_ 131100 179400 138000 186300 li1 131100 179400 138000 186300 met1 131100 179400 138000 186300 met2 -131100 179400 227700 186300 met3 -220800 179400 227700 186300 met2 -220800 96600 227700 186300 met2 -220800 96600 227700 103500 met1 -138000 96600 227700 103500 met1 +131100 179400 165600 186300 met3 +158700 179400 165600 186300 met3 +158700 96600 165600 186300 met4 +158700 96600 165600 103500 met3 +138000 96600 165600 103500 met3 +138000 96600 144900 103500 met2 +138000 96600 144900 103500 met1 138000 96600 144900 103500 li1 ) _07173_ ( -96600 213900 110400 220800 met1 -103500 213900 110400 220800 met1 -103500 213900 110400 234600 met2 -103500 227700 110400 234600 met1 -103500 227700 138000 234600 met1 +96600 213900 103500 220800 met1 +96600 213900 103500 220800 met2 +96600 213900 110400 220800 met3 +103500 213900 110400 220800 met3 +103500 213900 110400 234600 met4 +103500 227700 110400 234600 met3 +103500 227700 138000 234600 met3 +131100 227700 138000 234600 met2 +131100 227700 138000 234600 met1 131100 227700 138000 234600 li1 96600 110400 103500 117300 li1 13800 110400 103500 117300 met1 13800 110400 20700 117300 met1 13800 110400 20700 207000 met2 -13800 200100 20700 207000 met1 -13800 200100 82800 207000 met1 +13800 200100 20700 207000 met2 +13800 200100 82800 207000 met3 +75900 200100 82800 207000 met2 +75900 200100 82800 207000 met1 +75900 200100 82800 207000 li1 82800 213900 89700 220800 li1 82800 213900 103500 220800 met1 -96600 213900 103500 220800 met1 96600 207000 103500 220800 met2 96600 207000 103500 213900 met1 96600 207000 103500 213900 li1 -75900 200100 82800 207000 li1 -75900 200100 82800 207000 met1 75900 200100 82800 220800 met2 75900 213900 82800 220800 met1 75900 213900 89700 220800 met1 @@ -32498,18 +32564,19 @@ _07176_ ) _07177_ ( -172500 103500 179400 110400 li1 -172500 103500 220800 110400 met1 -213900 103500 220800 110400 met1 -213900 103500 220800 213900 met2 -213900 207000 220800 213900 met2 -165600 207000 220800 213900 met3 +165600 103500 172500 110400 met1 +165600 103500 172500 110400 met2 +165600 103500 172500 110400 met3 +165600 103500 172500 213900 met4 +165600 207000 172500 213900 met3 165600 207000 172500 213900 met2 165600 248400 172500 255300 li1 165600 248400 172500 255300 met1 165600 207000 172500 255300 met2 +165600 103500 179400 110400 met1 +172500 103500 179400 110400 li1 138000 103500 144900 110400 li1 -138000 103500 179400 110400 met1 +138000 103500 172500 110400 met1 138000 207000 144900 213900 li1 138000 207000 144900 213900 met1 138000 207000 144900 213900 met2 @@ -32536,23 +32603,22 @@ _07178_ ) _07179_ ( -131100 193200 138000 200100 li1 -131100 193200 138000 200100 met1 -131100 193200 138000 207000 met2 -131100 200100 138000 207000 met1 -131100 200100 144900 207000 met1 +138000 193200 144900 200100 li1 +138000 193200 144900 200100 met1 +138000 193200 144900 207000 met2 +138000 200100 144900 207000 met1 138000 200100 144900 207000 li1 +131100 193200 144900 200100 met1 131100 144900 138000 151800 li1 131100 144900 138000 151800 met1 131100 144900 138000 200100 met2 -131100 144900 172500 151800 met1 -165600 144900 172500 151800 met1 -165600 103500 172500 151800 met2 -165600 103500 172500 110400 met1 -165600 103500 179400 110400 met1 +131100 193200 138000 200100 met1 +131100 193200 138000 200100 li1 +131100 144900 179400 151800 met1 +172500 144900 179400 151800 met1 +172500 103500 179400 151800 met2 +172500 103500 179400 110400 met1 172500 103500 179400 110400 li1 -131100 193200 144900 200100 met1 -138000 193200 144900 200100 li1 ) _07180_ ( @@ -32564,11 +32630,11 @@ _07181_ 131100 179400 138000 186300 li1 131100 179400 138000 186300 met1 131100 179400 138000 186300 met2 -131100 179400 220800 186300 met3 -213900 179400 220800 186300 met2 -213900 103500 220800 186300 met2 -213900 103500 220800 110400 met1 -172500 103500 220800 110400 met1 +131100 179400 200100 186300 met3 +193200 179400 200100 186300 met2 +193200 103500 200100 186300 met2 +193200 103500 200100 110400 met1 +172500 103500 200100 110400 met1 172500 103500 179400 110400 li1 ) _07182_ @@ -32586,14 +32652,11 @@ _07183_ 96600 179400 103500 186300 met1 96600 179400 103500 186300 met2 96600 179400 103500 186300 met3 -96600 151800 103500 186300 met4 -96600 151800 103500 158700 met4 -96600 151800 117300 158700 met5 -110400 151800 117300 158700 met4 -110400 138000 117300 158700 met4 -110400 138000 117300 144900 met3 -110400 138000 117300 144900 met2 -110400 124200 117300 144900 met2 +96600 144900 103500 186300 met4 +96600 144900 103500 151800 met3 +96600 144900 117300 151800 met3 +110400 144900 117300 151800 met2 +110400 124200 117300 151800 met2 110400 124200 117300 131100 met1 110400 124200 117300 131100 li1 138000 220800 144900 227700 li1 @@ -32641,12 +32704,11 @@ _07187_ 96600 220800 103500 227700 li1 96600 220800 103500 227700 met1 96600 220800 103500 227700 met2 -96600 220800 103500 227700 met3 -96600 179400 103500 227700 met4 -96600 179400 103500 186300 met3 -96600 179400 138000 186300 met3 -131100 179400 138000 186300 met2 -131100 179400 138000 186300 met1 +96600 220800 179400 227700 met3 +172500 220800 179400 227700 met2 +172500 179400 179400 227700 met2 +172500 179400 179400 186300 met1 +131100 179400 179400 186300 met1 131100 179400 138000 186300 li1 ) _07188_ @@ -32675,8 +32737,10 @@ _07189_ _07190_ ( 193200 227700 200100 234600 li1 -193200 227700 220800 234600 met1 -213900 227700 220800 234600 met1 +193200 227700 200100 234600 met1 +193200 227700 200100 234600 met2 +193200 227700 220800 234600 met3 +213900 227700 220800 234600 met2 213900 227700 220800 269100 met2 213900 262200 220800 269100 met1 213900 262200 255300 269100 met1 @@ -32770,15 +32834,19 @@ _07201_ ) _07202_ ( -158700 103500 165600 110400 li1 -158700 103500 165600 110400 met1 -158700 103500 165600 110400 met2 -158700 103500 165600 110400 met3 -158700 103500 165600 234600 met4 -158700 227700 165600 234600 met3 -158700 227700 165600 234600 met2 -158700 227700 165600 234600 met1 +158700 103500 220800 110400 met1 +213900 103500 220800 110400 met1 +213900 103500 220800 158700 met2 +213900 151800 220800 158700 met1 +213900 151800 227700 158700 met1 +220800 151800 227700 158700 met1 +220800 151800 227700 234600 met2 +220800 227700 227700 234600 met1 +158700 227700 227700 234600 met1 158700 227700 165600 234600 li1 +158700 227700 165600 234600 met1 +158700 227700 165600 234600 met2 +158700 227700 165600 234600 met3 158700 227700 165600 276000 met4 158700 269100 165600 276000 met3 158700 269100 172500 276000 met3 @@ -32791,14 +32859,17 @@ _07202_ 69000 103500 75900 110400 met1 69000 103500 75900 110400 met2 69000 103500 165600 110400 met3 +158700 103500 165600 110400 met2 +158700 103500 165600 110400 met1 +158700 103500 165600 110400 li1 ) _07203_ ( 69000 110400 75900 117300 li1 -69000 110400 75900 117300 met1 -69000 103500 75900 117300 met2 -69000 103500 75900 110400 met1 -69000 103500 82800 110400 met1 +69000 110400 82800 117300 met1 +75900 110400 82800 117300 met1 +75900 103500 82800 117300 met2 +75900 103500 82800 110400 met1 75900 103500 82800 110400 li1 ) _07204_ @@ -32889,27 +32960,28 @@ _07211_ ( 75900 213900 82800 220800 li1 75900 213900 82800 220800 met1 -75900 207000 82800 220800 met2 -75900 207000 82800 213900 met2 -75900 207000 138000 213900 met3 -131100 207000 138000 213900 met3 -131100 179400 138000 213900 met4 -131100 179400 138000 186300 met3 -131100 179400 138000 186300 met2 -131100 179400 138000 186300 met1 +75900 213900 82800 220800 met2 +75900 213900 89700 220800 met3 +82800 213900 89700 220800 met3 +82800 179400 89700 220800 met4 +82800 179400 89700 186300 met3 +82800 179400 138000 186300 met3 131100 179400 138000 186300 li1 -103500 144900 138000 151800 met1 -103500 144900 110400 151800 li1 -131100 151800 138000 158700 met2 -131100 151800 138000 158700 met3 -131100 151800 138000 186300 met4 -117300 151800 138000 158700 met3 -117300 151800 124200 158700 met2 -117300 151800 124200 158700 met1 -117300 151800 124200 158700 li1 -131100 144900 138000 158700 met2 +131100 179400 138000 186300 met1 +131100 179400 138000 186300 met2 +131100 179400 138000 186300 met3 +131100 144900 138000 186300 met4 +131100 144900 138000 151800 met3 +131100 144900 138000 151800 met2 131100 144900 138000 151800 met1 131100 144900 138000 151800 li1 +117300 144900 138000 151800 met1 +117300 144900 124200 151800 met1 +117300 144900 124200 158700 met2 +117300 151800 124200 158700 met1 +117300 151800 124200 158700 li1 +103500 144900 124200 151800 met1 +103500 144900 110400 151800 li1 ) _07212_ ( @@ -32927,12 +32999,14 @@ _07213_ 144900 172500 151800 179400 li1 144900 172500 151800 179400 met1 144900 172500 151800 193200 met2 -144900 186300 151800 193200 met1 -144900 186300 179400 193200 met1 -172500 186300 179400 193200 met1 -172500 186300 179400 255300 met2 -172500 248400 179400 255300 met1 -144900 248400 179400 255300 met1 +144900 186300 151800 193200 met2 +144900 186300 165600 193200 met3 +158700 186300 165600 193200 met3 +158700 186300 165600 255300 met4 +158700 248400 165600 255300 met3 +144900 248400 165600 255300 met3 +144900 248400 151800 255300 met2 +144900 248400 151800 255300 met1 144900 248400 151800 255300 li1 ) _07214_ @@ -32943,11 +33017,11 @@ _07214_ _07215_ ( 151800 248400 158700 255300 li1 -151800 248400 186300 255300 met1 -179400 248400 186300 255300 met1 -179400 234600 186300 255300 met2 -179400 234600 186300 241500 met1 -179400 234600 207000 241500 met1 +151800 248400 179400 255300 met1 +172500 248400 179400 255300 met1 +172500 234600 179400 255300 met2 +172500 234600 179400 241500 met1 +172500 234600 207000 241500 met1 200100 234600 207000 241500 li1 ) _07216_ @@ -32992,18 +33066,16 @@ _07219_ 96600 158700 103500 165600 met1 96600 158700 103500 207000 met2 110400 144900 117300 151800 li1 -110400 144900 124200 151800 met1 -117300 144900 124200 151800 met1 -117300 138000 124200 151800 met2 -117300 138000 124200 144900 met1 +110400 144900 117300 151800 met1 +110400 138000 117300 151800 met2 +110400 138000 117300 144900 met1 +110400 138000 124200 144900 met1 117300 138000 124200 144900 li1 89700 158700 96600 165600 li1 89700 158700 103500 165600 met1 -96600 158700 110400 165600 met1 -103500 158700 110400 165600 met1 -103500 144900 110400 165600 met2 -103500 144900 110400 151800 met1 -103500 144900 117300 151800 met1 +96600 144900 103500 165600 met2 +96600 144900 103500 151800 met1 +96600 144900 117300 151800 met1 ) _07220_ ( @@ -33045,11 +33117,11 @@ _07223_ _07224_ ( 82800 144900 89700 151800 li1 -82800 144900 124200 151800 met1 -117300 144900 124200 151800 met1 -117300 144900 124200 158700 met2 -117300 151800 124200 158700 met1 -117300 151800 131100 158700 met1 +82800 144900 117300 151800 met1 +110400 144900 117300 151800 met1 +110400 144900 117300 158700 met2 +110400 151800 117300 158700 met1 +110400 151800 131100 158700 met1 124200 151800 131100 158700 li1 ) _07225_ @@ -33153,10 +33225,13 @@ _07236_ _07237_ ( 75900 131100 82800 138000 li1 -75900 131100 131100 138000 met1 -124200 131100 131100 138000 met1 -124200 131100 131100 144900 met2 -124200 138000 131100 144900 met1 +75900 131100 82800 138000 met1 +75900 131100 82800 144900 met2 +75900 138000 82800 144900 met2 +75900 138000 117300 144900 met3 +110400 138000 117300 144900 met2 +110400 138000 117300 144900 met1 +110400 138000 131100 144900 met1 124200 138000 131100 144900 li1 ) _07238_ @@ -33220,13 +33295,11 @@ _07245_ 110400 131100 117300 138000 li1 110400 131100 117300 138000 met1 110400 131100 117300 138000 met2 -34500 131100 117300 138000 met3 -34500 131100 41400 138000 met3 -34500 131100 41400 227700 met4 -34500 220800 41400 227700 met3 -34500 220800 124200 227700 met3 -117300 220800 124200 227700 met2 -117300 220800 124200 227700 met1 +110400 131100 220800 138000 met3 +213900 131100 220800 138000 met2 +213900 131100 220800 227700 met2 +213900 220800 220800 227700 met1 +117300 220800 220800 227700 met1 117300 220800 124200 227700 li1 ) _07246_ @@ -33252,11 +33325,11 @@ _07247_ _07248_ ( 117300 220800 124200 227700 li1 -117300 220800 200100 227700 met1 -193200 220800 200100 227700 met1 -193200 151800 200100 227700 met2 -193200 151800 200100 158700 met1 -124200 151800 200100 158700 met1 +117300 220800 213900 227700 met1 +207000 220800 213900 227700 met1 +207000 151800 213900 227700 met2 +207000 151800 213900 158700 met1 +124200 151800 213900 158700 met1 124200 151800 131100 158700 li1 ) _07249_ @@ -33342,10 +33415,11 @@ _07256_ _07257_ ( 89700 131100 96600 138000 li1 -89700 131100 96600 138000 met1 -89700 124200 96600 138000 met2 -89700 124200 96600 131100 met1 -89700 124200 138000 131100 met1 +89700 131100 131100 138000 met1 +124200 131100 131100 138000 met1 +124200 124200 131100 138000 met2 +124200 124200 131100 131100 met1 +124200 124200 138000 131100 met1 131100 124200 138000 131100 li1 ) _07258_ @@ -33383,11 +33457,13 @@ _07262_ _07263_ ( 124200 200100 131100 207000 li1 -124200 200100 234600 207000 met1 -227700 200100 234600 207000 met1 -227700 124200 234600 207000 met2 -227700 124200 234600 131100 met2 -124200 124200 234600 131100 met3 +124200 200100 131100 207000 met1 +124200 200100 131100 207000 met2 +124200 200100 165600 207000 met3 +158700 200100 165600 207000 met3 +158700 124200 165600 207000 met4 +158700 124200 165600 131100 met3 +124200 124200 165600 131100 met3 124200 124200 131100 131100 met2 124200 124200 131100 131100 met1 124200 124200 131100 131100 li1 @@ -33431,23 +33507,20 @@ _07269_ ( 124200 179400 131100 186300 li1 124200 179400 131100 186300 met1 -124200 179400 131100 186300 met2 -124200 179400 131100 186300 met3 -124200 131100 131100 186300 met4 -124200 131100 131100 138000 met3 -124200 131100 131100 138000 met2 -124200 124200 131100 138000 met2 +124200 165600 131100 186300 met2 +124200 165600 131100 172500 met2 +124200 165600 131100 172500 met3 +124200 144900 131100 172500 met4 +124200 144900 131100 151800 met3 +124200 144900 131100 151800 met2 +124200 124200 131100 151800 met2 124200 124200 131100 131100 met1 124200 124200 131100 131100 li1 ) _07270_ ( 75900 124200 82800 131100 li1 -75900 124200 82800 131100 met1 -75900 124200 82800 131100 met2 -75900 124200 138000 131100 met3 -131100 124200 138000 131100 met2 -131100 124200 138000 131100 met1 +75900 124200 138000 131100 met1 131100 124200 138000 131100 li1 ) _07271_ @@ -33486,11 +33559,11 @@ _07275_ 131100 151800 138000 158700 li1 131100 151800 138000 158700 met1 131100 151800 138000 158700 met2 -131100 151800 193200 158700 met3 -186300 151800 193200 158700 met3 -186300 151800 193200 241500 met4 -186300 234600 193200 241500 met3 -186300 234600 207000 241500 met3 +131100 151800 186300 158700 met3 +179400 151800 186300 158700 met3 +179400 151800 186300 241500 met4 +179400 234600 186300 241500 met3 +179400 234600 207000 241500 met3 200100 234600 207000 241500 met2 200100 234600 207000 241500 met1 200100 234600 207000 241500 li1 @@ -33676,10 +33749,9 @@ _07294_ 110400 186300 117300 193200 met1 110400 186300 117300 200100 met2 110400 193200 117300 200100 met2 -110400 193200 131100 200100 met3 -124200 193200 131100 200100 met2 -124200 193200 131100 200100 met1 -124200 193200 138000 200100 met1 +110400 193200 138000 200100 met3 +131100 193200 138000 200100 met2 +131100 193200 138000 200100 met1 131100 193200 138000 200100 li1 ) _07295_ @@ -33693,26 +33765,25 @@ _07295_ _07296_ ( 75900 158700 82800 165600 li1 -75900 158700 96600 165600 met1 -89700 158700 96600 165600 met1 -89700 158700 96600 165600 met2 -89700 158700 96600 165600 met3 -89700 158700 96600 213900 met4 -89700 207000 96600 213900 met3 -89700 207000 172500 213900 met3 -165600 207000 172500 213900 met2 -165600 207000 172500 227700 met2 +75900 158700 82800 165600 met1 +75900 158700 82800 165600 met2 +48300 158700 82800 165600 met3 +48300 158700 55200 165600 met3 +48300 158700 55200 227700 met4 +48300 220800 55200 227700 met3 +48300 220800 172500 227700 met3 +165600 220800 172500 227700 met2 165600 220800 172500 227700 met1 165600 220800 172500 227700 li1 ) _07297_ ( 165600 220800 172500 227700 li1 -165600 220800 193200 227700 met1 -186300 220800 193200 227700 met1 -186300 220800 193200 234600 met2 -186300 227700 193200 234600 met1 -186300 227700 213900 234600 met1 +165600 220800 200100 227700 met1 +193200 220800 200100 227700 met1 +193200 220800 200100 234600 met2 +193200 227700 200100 234600 met1 +193200 227700 213900 234600 met1 207000 227700 213900 234600 li1 ) _07298_ @@ -33821,11 +33892,11 @@ _07310_ 89700 220800 96600 227700 li1 89700 220800 96600 227700 met1 89700 220800 96600 227700 met2 -34500 220800 96600 227700 met3 -34500 220800 41400 227700 met3 -34500 117300 41400 227700 met4 -34500 117300 41400 124200 met3 -34500 117300 96600 124200 met3 +20700 220800 96600 227700 met3 +20700 220800 27600 227700 met3 +20700 117300 27600 227700 met4 +20700 117300 27600 124200 met3 +20700 117300 96600 124200 met3 89700 117300 96600 124200 met2 89700 117300 96600 124200 met1 89700 117300 96600 124200 li1 @@ -33848,12 +33919,13 @@ _07312_ ) _07313_ ( +96600 186300 110400 193200 met1 +103500 186300 110400 193200 met1 +103500 186300 110400 200100 met2 +103500 193200 110400 200100 met1 +103500 193200 110400 200100 li1 96600 186300 103500 193200 li1 96600 186300 103500 193200 met1 -96600 186300 103500 200100 met2 -96600 193200 103500 200100 met1 -96600 193200 110400 200100 met1 -103500 193200 110400 200100 li1 96600 124200 103500 193200 met2 96600 124200 103500 131100 met1 96600 124200 103500 131100 li1 @@ -33877,11 +33949,11 @@ _07316_ 89700 117300 96600 124200 li1 89700 117300 96600 124200 met1 89700 117300 96600 124200 met2 -20700 117300 96600 124200 met3 -20700 117300 27600 124200 met2 -20700 117300 27600 186300 met2 -20700 179400 27600 186300 met2 -20700 179400 117300 186300 met3 +34500 117300 96600 124200 met3 +34500 117300 41400 124200 met2 +34500 117300 41400 186300 met2 +34500 179400 41400 186300 met2 +34500 179400 117300 186300 met3 110400 179400 117300 186300 met2 110400 179400 117300 186300 met1 110400 179400 117300 186300 li1 @@ -33895,10 +33967,11 @@ _07317_ _07318_ ( 110400 117300 117300 124200 li1 -110400 117300 117300 124200 met1 -110400 110400 117300 124200 met2 -110400 110400 117300 117300 met1 -110400 110400 131100 117300 met1 +110400 117300 124200 124200 met1 +117300 117300 124200 124200 met1 +117300 110400 124200 124200 met2 +117300 110400 124200 117300 met1 +117300 110400 131100 117300 met1 124200 110400 131100 117300 li1 ) _07319_ @@ -33914,14 +33987,13 @@ _07320_ ( 103500 117300 110400 124200 li1 103500 117300 110400 124200 met1 -103500 117300 110400 151800 met2 -103500 144900 110400 151800 met2 -103500 144900 110400 151800 met3 -103500 144900 110400 165600 met4 -103500 158700 110400 165600 met3 -103500 158700 117300 165600 met3 -110400 158700 117300 165600 met2 -110400 158700 117300 186300 met2 +103500 117300 110400 124200 met2 +103500 117300 110400 124200 met3 +103500 117300 110400 179400 met4 +103500 172500 110400 179400 met3 +103500 172500 117300 179400 met3 +110400 172500 117300 179400 met2 +110400 172500 117300 186300 met2 110400 179400 117300 186300 met1 110400 179400 117300 186300 li1 ) @@ -33941,11 +34013,8 @@ _07322_ 117300 124200 124200 138000 met2 89700 207000 96600 213900 li1 89700 207000 96600 213900 met1 -89700 179400 96600 213900 met2 -89700 179400 96600 186300 met2 -89700 179400 96600 186300 met3 -89700 131100 96600 186300 met4 -89700 131100 96600 138000 met3 +89700 131100 96600 213900 met2 +89700 131100 96600 138000 met2 89700 131100 124200 138000 met3 117300 131100 124200 138000 met2 117300 131100 124200 138000 met1 @@ -33968,11 +34037,11 @@ _07324_ 110400 213900 117300 220800 li1 110400 213900 117300 220800 met1 110400 213900 117300 220800 met2 -0 213900 117300 220800 met3 -0 213900 6900 220800 met2 -0 124200 6900 220800 met2 -0 124200 6900 131100 met2 -0 124200 117300 131100 met3 +6900 213900 117300 220800 met3 +6900 213900 13800 220800 met2 +6900 124200 13800 220800 met2 +6900 124200 13800 131100 met2 +6900 124200 117300 131100 met3 110400 124200 117300 131100 met2 110400 124200 117300 131100 met1 110400 124200 117300 131100 li1 @@ -34097,11 +34166,10 @@ _07337_ 103500 179400 110400 186300 li1 103500 179400 110400 186300 met1 103500 179400 110400 186300 met2 -103500 179400 131100 186300 met3 -124200 179400 131100 186300 met2 -124200 172500 131100 186300 met2 -124200 172500 131100 179400 met1 -124200 172500 138000 179400 met1 +103500 179400 138000 186300 met3 +131100 179400 138000 186300 met2 +131100 172500 138000 186300 met2 +131100 172500 138000 179400 met1 131100 172500 138000 179400 li1 ) _07338_ @@ -34109,9 +34177,13 @@ _07338_ 82800 269100 89700 276000 li1 62100 269100 89700 276000 met1 62100 269100 69000 276000 met1 -62100 179400 69000 276000 met2 -62100 179400 69000 186300 met1 -62100 179400 110400 186300 met1 +62100 200100 69000 276000 met2 +62100 200100 69000 207000 met2 +62100 200100 96600 207000 met3 +89700 200100 96600 207000 met2 +89700 179400 96600 207000 met2 +89700 179400 96600 186300 met1 +89700 179400 110400 186300 met1 103500 179400 110400 186300 li1 ) _07339_ @@ -34124,14 +34196,11 @@ _07339_ ) _07340_ ( -110400 186300 124200 193200 met1 -110400 186300 117300 193200 met1 -110400 186300 117300 200100 met2 -110400 193200 117300 200100 met2 -110400 193200 124200 200100 met3 -117300 193200 124200 200100 met2 -117300 193200 124200 213900 met2 -117300 207000 124200 213900 met1 +117300 186300 138000 193200 met1 +131100 186300 138000 193200 met1 +131100 186300 138000 213900 met2 +131100 207000 138000 213900 met1 +117300 207000 138000 213900 met1 117300 207000 124200 213900 li1 110400 207000 117300 213900 li1 110400 207000 124200 213900 met1 @@ -34198,10 +34267,10 @@ _07348_ _07349_ ( 103500 172500 110400 179400 li1 -103500 172500 110400 179400 met1 -103500 165600 110400 179400 met2 -103500 165600 110400 172500 met1 -103500 165600 117300 172500 met1 +103500 172500 117300 179400 met1 +110400 172500 117300 179400 met1 +110400 165600 117300 179400 met2 +110400 165600 117300 172500 met1 110400 165600 117300 172500 li1 ) _07350_ @@ -34212,10 +34281,11 @@ _07350_ 131100 158700 138000 179400 met2 131100 172500 138000 179400 met2 131100 172500 138000 179400 met3 -131100 172500 138000 241500 met4 -131100 234600 138000 241500 met3 -117300 234600 138000 241500 met3 -117300 234600 124200 241500 met2 +131100 172500 138000 227700 met4 +131100 220800 138000 227700 met3 +117300 220800 138000 227700 met3 +117300 220800 124200 227700 met2 +117300 220800 124200 241500 met2 117300 234600 124200 241500 met1 110400 234600 124200 241500 met1 110400 234600 117300 241500 li1 @@ -34361,11 +34431,10 @@ _07364_ _07365_ ( 165600 213900 172500 220800 li1 -165600 213900 179400 220800 met1 -172500 213900 179400 220800 met1 -172500 207000 179400 220800 met2 -172500 207000 179400 213900 met1 -172500 207000 193200 213900 met1 +165600 213900 172500 220800 met1 +165600 207000 172500 220800 met2 +165600 207000 172500 213900 met1 +165600 207000 193200 213900 met1 186300 207000 193200 213900 li1 ) _07366_ @@ -34398,12 +34467,13 @@ _07369_ ( 82800 131100 89700 138000 li1 82800 131100 89700 138000 met1 -82800 131100 89700 179400 met2 -82800 172500 89700 179400 met2 -82800 172500 89700 179400 met3 -82800 172500 89700 193200 met4 -82800 186300 89700 193200 met3 -82800 186300 89700 193200 met2 +82800 131100 89700 158700 met2 +82800 151800 89700 158700 met2 +82800 151800 89700 158700 met3 +82800 151800 89700 186300 met4 +82800 179400 89700 186300 met3 +82800 179400 89700 186300 met2 +82800 179400 89700 193200 met2 82800 186300 89700 193200 met1 82800 186300 89700 193200 li1 ) @@ -34411,11 +34481,10 @@ _07370_ ( 75900 131100 82800 138000 li1 75900 131100 82800 138000 met1 -75900 131100 82800 144900 met2 -75900 138000 82800 144900 met2 -75900 138000 89700 144900 met3 -82800 138000 89700 144900 met3 -82800 138000 89700 186300 met4 +75900 131100 82800 138000 met2 +75900 131100 89700 138000 met3 +82800 131100 89700 138000 met3 +82800 131100 89700 186300 met4 82800 179400 89700 186300 met3 82800 179400 89700 186300 met2 82800 179400 89700 193200 met2 @@ -34580,11 +34649,16 @@ _07391_ _07392_ ( 89700 103500 96600 110400 li1 -13800 103500 96600 110400 met1 -13800 103500 20700 110400 met1 -13800 103500 20700 179400 met2 -13800 172500 20700 179400 met2 -13800 172500 117300 179400 met3 +89700 103500 96600 110400 met1 +89700 103500 96600 110400 met2 +89700 103500 110400 110400 met3 +103500 103500 110400 110400 met3 +103500 103500 110400 151800 met4 +103500 144900 110400 151800 met3 +103500 144900 117300 151800 met3 +110400 144900 117300 151800 met3 +110400 144900 117300 179400 met4 +110400 172500 117300 179400 met3 110400 172500 117300 179400 met2 110400 172500 117300 179400 met1 110400 172500 117300 179400 li1 @@ -34598,10 +34672,10 @@ _07393_ _07394_ ( 110400 96600 117300 103500 li1 -110400 96600 117300 103500 met1 -110400 96600 117300 110400 met2 -110400 103500 117300 110400 met1 -110400 103500 124200 110400 met1 +110400 96600 124200 103500 met1 +117300 96600 124200 103500 met1 +117300 96600 124200 110400 met2 +117300 103500 124200 110400 met1 117300 103500 124200 110400 li1 ) _07395_ @@ -34612,20 +34686,15 @@ _07395_ _07396_ ( 117300 103500 124200 110400 li1 -117300 103500 124200 110400 met1 -117300 103500 124200 124200 met2 -117300 117300 124200 124200 met2 -103500 117300 124200 124200 met3 +103500 103500 124200 110400 met1 +103500 103500 110400 110400 met1 +103500 103500 110400 124200 met2 +103500 117300 110400 124200 met2 103500 117300 110400 124200 met3 -103500 117300 110400 151800 met4 -103500 144900 110400 151800 met4 -82800 144900 110400 151800 met5 -82800 144900 89700 151800 met4 -82800 144900 89700 172500 met4 -82800 165600 89700 172500 met3 -82800 165600 124200 172500 met3 -117300 165600 124200 172500 met2 -117300 165600 124200 179400 met2 +103500 117300 110400 179400 met4 +103500 172500 110400 179400 met3 +103500 172500 124200 179400 met3 +117300 172500 124200 179400 met2 117300 172500 124200 179400 met1 117300 172500 124200 179400 li1 ) @@ -34643,11 +34712,11 @@ _07398_ 117300 220800 124200 227700 li1 117300 220800 124200 227700 met1 117300 220800 124200 227700 met2 -117300 220800 227700 227700 met3 -220800 220800 227700 227700 met2 -220800 110400 227700 227700 met2 -220800 110400 227700 117300 met2 -124200 110400 227700 117300 met3 +117300 220800 234600 227700 met3 +227700 220800 234600 227700 met3 +227700 110400 234600 227700 met4 +227700 110400 234600 117300 met3 +124200 110400 234600 117300 met3 124200 110400 131100 117300 met2 124200 110400 131100 117300 met1 124200 110400 131100 117300 li1 @@ -34663,11 +34732,11 @@ _07400_ 117300 172500 124200 179400 li1 117300 172500 124200 179400 met1 117300 172500 124200 179400 met2 -117300 172500 172500 179400 met3 -165600 172500 172500 179400 met2 -165600 110400 172500 179400 met2 -165600 110400 172500 117300 met1 -124200 110400 172500 117300 met1 +117300 172500 179400 179400 met3 +172500 172500 179400 179400 met2 +172500 110400 179400 179400 met2 +172500 110400 179400 117300 met1 +124200 110400 179400 117300 met1 124200 110400 131100 117300 li1 ) _07401_ @@ -34695,12 +34764,9 @@ _07403_ _07404_ ( 117300 172500 124200 179400 li1 -117300 172500 124200 179400 met1 -117300 172500 124200 193200 met2 -117300 186300 124200 193200 met1 -117300 186300 138000 193200 met1 -131100 186300 138000 193200 met1 -131100 186300 138000 200100 met2 +117300 172500 138000 179400 met1 +131100 172500 138000 179400 met1 +131100 172500 138000 200100 met2 131100 193200 138000 200100 met1 131100 193200 138000 200100 li1 ) @@ -34733,10 +34799,11 @@ _07408_ 82800 213900 89700 220800 li1 82800 213900 89700 220800 met1 82800 213900 89700 220800 met2 -82800 213900 89700 220800 met3 -82800 172500 89700 220800 met4 -82800 172500 89700 179400 met3 -82800 172500 124200 179400 met3 +41400 213900 89700 220800 met3 +41400 213900 48300 220800 met2 +41400 172500 48300 220800 met2 +41400 172500 48300 179400 met2 +41400 172500 124200 179400 met3 117300 172500 124200 179400 met2 117300 172500 124200 179400 met1 117300 172500 124200 179400 li1 @@ -34759,11 +34826,8 @@ _07411_ 75900 269100 82800 276000 met1 75900 269100 82800 276000 met2 75900 269100 82800 276000 met3 -75900 193200 82800 276000 met4 -75900 193200 82800 200100 met3 -75900 193200 82800 200100 met2 -75900 186300 82800 200100 met2 -75900 186300 82800 193200 met2 +75900 186300 82800 276000 met4 +75900 186300 82800 193200 met3 75900 186300 117300 193200 met3 110400 186300 117300 193200 met2 110400 179400 117300 193200 met2 @@ -34996,27 +35060,29 @@ _07435_ _07436_ ( 117300 165600 124200 172500 li1 -110400 165600 124200 172500 met1 -110400 165600 117300 172500 met1 -110400 165600 117300 186300 met2 -110400 179400 117300 186300 met2 -110400 179400 131100 186300 met3 -124200 179400 131100 186300 met3 -124200 179400 131100 234600 met4 -124200 227700 131100 234600 met3 -124200 227700 131100 234600 met2 -124200 227700 131100 234600 met1 -117300 227700 131100 234600 met1 +117300 165600 124200 172500 met1 +117300 165600 124200 186300 met2 +117300 179400 124200 186300 met2 +117300 179400 138000 186300 met3 +131100 179400 138000 186300 met3 +131100 179400 138000 234600 met4 +131100 227700 138000 234600 met3 +131100 227700 138000 234600 met2 +131100 227700 138000 234600 met1 +117300 227700 138000 234600 met1 117300 227700 124200 234600 li1 ) _07437_ ( 69000 165600 75900 172500 li1 -48300 165600 75900 172500 met1 -48300 165600 55200 172500 met1 -48300 165600 55200 234600 met2 -48300 227700 55200 234600 met1 -48300 227700 75900 234600 met1 +62100 165600 75900 172500 met1 +62100 165600 69000 172500 met1 +62100 165600 69000 213900 met2 +62100 207000 69000 213900 met1 +62100 207000 75900 213900 met1 +69000 207000 75900 213900 met1 +69000 207000 75900 234600 met2 +69000 227700 75900 234600 met1 69000 227700 75900 234600 li1 ) _07438_ @@ -35034,10 +35100,10 @@ _07439_ _07440_ ( 110400 234600 117300 241500 li1 -110400 234600 124200 241500 met1 -117300 234600 124200 241500 met1 -117300 227700 124200 241500 met2 -117300 227700 124200 234600 met1 +110400 234600 117300 241500 met1 +110400 227700 117300 241500 met2 +110400 227700 117300 234600 met1 +110400 227700 124200 234600 met1 117300 227700 124200 234600 li1 ) _07441_ @@ -35046,11 +35112,11 @@ _07441_ 117300 227700 124200 234600 met1 117300 227700 124200 248400 met2 117300 241500 124200 248400 met1 -117300 241500 138000 248400 met1 -131100 241500 138000 248400 met1 -131100 241500 138000 255300 met2 -131100 248400 138000 255300 met1 -131100 248400 213900 255300 met1 +117300 241500 144900 248400 met1 +138000 241500 144900 248400 met1 +138000 241500 144900 255300 met2 +138000 248400 144900 255300 met1 +138000 248400 213900 255300 met1 207000 248400 213900 255300 li1 ) _07442_ @@ -35080,15 +35146,11 @@ _07444_ _07445_ ( 117300 138000 124200 144900 li1 -110400 138000 124200 144900 met1 -110400 138000 117300 144900 met1 -110400 138000 117300 151800 met2 -110400 144900 117300 151800 met2 -89700 144900 117300 151800 met3 -89700 144900 96600 151800 met2 -89700 144900 96600 200100 met2 -89700 193200 96600 200100 met2 -89700 193200 124200 200100 met3 +96600 138000 124200 144900 met1 +96600 138000 103500 144900 met1 +96600 138000 103500 200100 met2 +96600 193200 103500 200100 met2 +96600 193200 124200 200100 met3 117300 193200 124200 200100 met2 117300 193200 124200 200100 met1 117300 193200 124200 200100 li1 @@ -35107,20 +35169,23 @@ _07447_ _07448_ ( 96600 213900 103500 220800 li1 -96600 213900 117300 220800 met1 -110400 213900 117300 220800 met1 -110400 207000 117300 220800 met2 -110400 207000 117300 213900 met1 +96600 213900 110400 220800 met1 +103500 213900 110400 220800 met1 +103500 207000 110400 220800 met2 +103500 207000 110400 213900 met1 +103500 207000 117300 213900 met1 110400 207000 117300 213900 li1 ) _07449_ ( 96600 213900 103500 220800 li1 -96600 213900 103500 220800 met1 -96600 193200 103500 220800 met2 -96600 193200 103500 200100 met2 -96600 193200 117300 200100 met3 -110400 193200 117300 200100 met2 +96600 213900 110400 220800 met1 +103500 213900 110400 220800 met1 +103500 200100 110400 220800 met2 +103500 200100 110400 207000 met1 +103500 200100 117300 207000 met1 +110400 200100 117300 207000 met1 +110400 193200 117300 207000 met2 110400 193200 117300 200100 met1 110400 193200 117300 200100 li1 ) @@ -35149,11 +35214,10 @@ _07453_ ( 110400 193200 117300 200100 li1 110400 193200 117300 200100 met1 -110400 179400 117300 200100 met2 -110400 179400 117300 186300 met1 -110400 179400 124200 186300 met1 -117300 179400 124200 186300 met1 -117300 172500 124200 186300 met2 +110400 172500 117300 200100 met2 +110400 172500 117300 179400 met2 +110400 172500 124200 179400 met3 +117300 172500 124200 179400 met2 117300 172500 124200 179400 met1 117300 172500 124200 179400 li1 ) @@ -35202,11 +35266,11 @@ _07459_ ( 117300 220800 124200 227700 li1 117300 220800 124200 227700 met1 -117300 200100 124200 227700 met2 -117300 200100 124200 207000 met2 -117300 200100 131100 207000 met3 -124200 200100 131100 207000 met2 -124200 193200 131100 207000 met2 +117300 207000 124200 227700 met2 +117300 207000 124200 213900 met1 +117300 207000 131100 213900 met1 +124200 207000 131100 213900 met1 +124200 193200 131100 213900 met2 124200 193200 131100 200100 met1 124200 193200 131100 200100 li1 ) @@ -35253,11 +35317,13 @@ _07465_ _07466_ ( 89700 213900 96600 220800 li1 -89700 213900 96600 220800 met1 -89700 213900 96600 220800 met2 -89700 213900 124200 220800 met3 -117300 213900 124200 220800 met2 -117300 193200 124200 220800 met2 +89700 213900 103500 220800 met1 +96600 213900 103500 220800 met1 +96600 200100 103500 220800 met2 +96600 200100 103500 207000 met1 +96600 200100 124200 207000 met1 +117300 200100 124200 207000 met1 +117300 193200 124200 207000 met2 117300 193200 124200 200100 met1 117300 193200 124200 200100 li1 ) @@ -35298,10 +35364,16 @@ _07471_ 103500 131100 110400 138000 met1 103500 131100 110400 158700 met2 103500 151800 110400 158700 met2 -103500 151800 117300 158700 met3 -110400 151800 117300 158700 met3 -110400 151800 117300 200100 met4 -110400 193200 117300 200100 met3 +103500 151800 110400 158700 met3 +103500 151800 110400 165600 met4 +103500 158700 110400 165600 met3 +103500 158700 110400 165600 met2 +103500 158700 110400 193200 met2 +103500 186300 110400 193200 met1 +103500 186300 117300 193200 met1 +110400 186300 117300 193200 met1 +110400 186300 117300 200100 met2 +110400 193200 117300 200100 met2 110400 193200 124200 200100 met3 117300 193200 124200 200100 met2 117300 193200 124200 200100 met1 @@ -35366,10 +35438,10 @@ _07479_ _07480_ ( 96600 186300 103500 193200 li1 -96600 186300 110400 193200 met1 -103500 186300 110400 193200 met1 -103500 186300 110400 200100 met2 -103500 193200 110400 200100 met1 +96600 186300 103500 193200 met1 +96600 186300 103500 200100 met2 +96600 193200 103500 200100 met1 +96600 193200 110400 200100 met1 103500 193200 110400 200100 li1 ) _07481_ @@ -35436,13 +35508,17 @@ _07489_ 124200 193200 131100 200100 li1 124200 193200 131100 200100 met1 124200 193200 131100 200100 met2 -124200 193200 220800 200100 met3 -213900 193200 220800 200100 met2 -213900 193200 220800 255300 met2 -213900 248400 220800 255300 met1 -213900 248400 220800 255300 li1 +124200 193200 165600 200100 met3 +158700 193200 165600 200100 met3 +158700 193200 165600 227700 met4 +158700 220800 165600 227700 met3 +158700 220800 213900 227700 met3 +207000 220800 213900 227700 met2 +207000 220800 213900 255300 met2 +207000 248400 213900 255300 met1 207000 248400 213900 255300 li1 207000 248400 220800 255300 met1 +213900 248400 220800 255300 li1 ) _07490_ ( @@ -35518,24 +35594,25 @@ _07497_ _07498_ ( 144900 158700 151800 165600 li1 -144900 158700 165600 165600 met1 -158700 158700 165600 165600 met1 -158700 117300 165600 165600 met2 -158700 117300 165600 124200 met1 -151800 117300 165600 124200 met1 -151800 117300 158700 124200 met1 -151800 82800 158700 124200 met2 -151800 82800 158700 89700 met1 -151800 82800 158700 89700 li1 +144900 158700 158700 165600 met1 +151800 158700 158700 165600 met1 +151800 144900 158700 165600 met2 +151800 144900 158700 151800 met2 +151800 144900 158700 151800 met3 +151800 82800 158700 151800 met4 +151800 82800 158700 89700 met3 +144900 82800 158700 89700 met3 +144900 82800 151800 89700 met2 +144900 82800 151800 89700 met1 138000 82800 151800 89700 met1 138000 82800 144900 89700 li1 -144900 82800 151800 89700 met1 144900 69000 151800 89700 met2 144900 69000 151800 75900 met1 144900 69000 151800 75900 li1 -144900 82800 158700 89700 met1 138000 158700 144900 165600 li1 138000 158700 151800 165600 met1 +144900 82800 158700 89700 met1 +151800 82800 158700 89700 li1 ) _07499_ ( @@ -35567,10 +35644,11 @@ _07501_ _07502_ ( 75900 213900 82800 220800 li1 -75900 213900 82800 220800 met1 -75900 207000 82800 220800 met2 -75900 207000 82800 213900 met1 -75900 207000 144900 213900 met1 +75900 213900 96600 220800 met1 +89700 213900 96600 220800 met1 +89700 207000 96600 220800 met2 +89700 207000 96600 213900 met1 +89700 207000 144900 213900 met1 138000 207000 144900 213900 li1 ) _07503_ @@ -35604,14 +35682,11 @@ _07507_ 75900 213900 82800 220800 li1 75900 213900 82800 220800 met1 75900 213900 82800 220800 met2 -75900 213900 82800 220800 met3 -75900 165600 82800 220800 met4 -75900 165600 82800 172500 met3 -75900 165600 110400 172500 met3 -103500 165600 110400 172500 met2 -103500 158700 110400 172500 met2 -103500 158700 110400 165600 met2 -103500 158700 138000 165600 met3 +48300 213900 82800 220800 met3 +48300 213900 55200 220800 met2 +48300 158700 55200 220800 met2 +48300 158700 55200 165600 met2 +48300 158700 138000 165600 met3 131100 158700 138000 165600 met2 131100 158700 138000 165600 met1 131100 158700 138000 165600 li1 @@ -35659,17 +35734,13 @@ _07514_ ( 144900 158700 151800 165600 li1 144900 158700 151800 165600 met1 -144900 158700 151800 165600 met2 -144900 158700 151800 165600 met3 -144900 158700 151800 220800 met4 -144900 213900 151800 220800 met3 -144900 213900 186300 220800 met3 -179400 213900 186300 220800 met3 -179400 213900 186300 241500 met4 -179400 234600 186300 241500 met3 -179400 234600 207000 241500 met3 -200100 234600 207000 241500 met2 -200100 234600 207000 241500 met1 +144900 158700 151800 220800 met2 +144900 213900 151800 220800 met1 +144900 213900 186300 220800 met1 +179400 213900 186300 220800 met1 +179400 213900 186300 241500 met2 +179400 234600 186300 241500 met1 +179400 234600 207000 241500 met1 200100 234600 207000 241500 li1 ) _07515_ @@ -35696,13 +35767,9 @@ _07518_ 131100 158700 138000 165600 li1 131100 158700 138000 165600 met1 131100 158700 138000 165600 met2 -131100 158700 151800 165600 met3 -144900 158700 151800 165600 met2 -144900 158700 151800 172500 met2 -144900 165600 151800 172500 met2 -144900 165600 158700 172500 met3 -151800 165600 158700 172500 met3 -151800 165600 158700 220800 met4 +131100 158700 158700 165600 met3 +151800 158700 158700 165600 met3 +151800 158700 158700 220800 met4 151800 213900 158700 220800 met3 151800 213900 158700 220800 met2 151800 213900 158700 220800 met1 @@ -35800,9 +35867,9 @@ _07530_ 131100 220800 138000 227700 li1 131100 220800 138000 227700 met1 131100 193200 138000 227700 met2 -131100 193200 138000 200100 met1 -131100 193200 144900 200100 met1 -138000 193200 144900 200100 met1 +131100 193200 138000 200100 met2 +131100 193200 144900 200100 met3 +138000 193200 144900 200100 met2 138000 172500 144900 200100 met2 138000 172500 144900 179400 met1 138000 172500 144900 179400 li1 @@ -35832,14 +35899,9 @@ _07534_ ( 144900 220800 151800 227700 li1 144900 220800 151800 227700 met1 -144900 179400 151800 227700 met2 -144900 179400 151800 186300 met2 -144900 179400 158700 186300 met3 -151800 179400 158700 186300 met3 -151800 158700 158700 186300 met4 -151800 158700 158700 165600 met3 -151800 158700 158700 165600 met2 -151800 158700 158700 165600 met1 +144900 158700 151800 227700 met2 +144900 158700 151800 165600 met1 +144900 158700 158700 165600 met1 151800 158700 158700 165600 li1 ) _07535_ @@ -35869,7 +35931,12 @@ _07538_ ( 144900 144900 151800 151800 li1 144900 144900 151800 151800 met1 -144900 144900 151800 220800 met2 +144900 144900 151800 158700 met2 +144900 151800 151800 158700 met2 +144900 151800 151800 158700 met3 +144900 151800 151800 220800 met4 +144900 213900 151800 220800 met3 +144900 213900 151800 220800 met2 144900 213900 151800 220800 met1 144900 213900 151800 220800 li1 ) @@ -35900,11 +35967,15 @@ _07541_ _07542_ ( 138000 144900 144900 151800 li1 -138000 144900 213900 151800 met1 -207000 144900 213900 151800 met1 -207000 144900 213900 227700 met2 -207000 220800 213900 227700 met1 -138000 220800 213900 227700 met1 +138000 144900 144900 151800 met1 +138000 144900 144900 151800 met2 +138000 144900 193200 151800 met3 +186300 144900 193200 151800 met3 +186300 144900 193200 227700 met4 +186300 220800 193200 227700 met3 +138000 220800 193200 227700 met3 +138000 220800 144900 227700 met2 +138000 220800 144900 227700 met1 138000 220800 144900 227700 li1 ) _07543_ @@ -35932,11 +36003,11 @@ _07545_ _07546_ ( 151800 220800 158700 227700 li1 -151800 220800 193200 227700 met1 -186300 220800 193200 227700 met1 -186300 220800 193200 241500 met2 -186300 234600 193200 241500 met1 -186300 234600 207000 241500 met1 +151800 220800 179400 227700 met1 +172500 220800 179400 227700 met1 +172500 220800 179400 241500 met2 +172500 234600 179400 241500 met1 +172500 234600 207000 241500 met1 200100 234600 207000 241500 li1 ) _07547_ @@ -35992,11 +36063,10 @@ _07551_ _07552_ ( 255300 393300 262200 400200 li1 -255300 393300 269100 400200 met1 -262200 393300 269100 400200 met1 -262200 393300 269100 441600 met2 -262200 434700 269100 441600 met1 -262200 434700 282900 441600 met1 +255300 393300 282900 400200 met1 +276000 393300 282900 400200 met1 +276000 393300 282900 441600 met2 +276000 434700 282900 441600 met1 276000 434700 282900 441600 li1 ) _07553_ @@ -36530,10 +36600,13 @@ _07601_ _07602_ ( 345000 179400 351900 186300 li1 -345000 179400 365700 186300 met1 -358800 179400 365700 186300 met1 -358800 179400 365700 227700 met2 -358800 220800 365700 227700 met1 +345000 179400 351900 186300 met1 +345000 179400 351900 227700 met2 +345000 220800 351900 227700 met2 +345000 220800 358800 227700 met3 +351900 220800 358800 227700 met2 +351900 220800 358800 227700 met1 +351900 220800 358800 227700 li1 358800 248400 365700 255300 li1 358800 248400 365700 255300 met1 358800 234600 365700 255300 met2 @@ -36541,9 +36614,9 @@ _07602_ 358800 234600 365700 241500 li1 351900 248400 358800 255300 li1 351900 248400 365700 255300 met1 -358800 220800 365700 241500 met2 -351900 220800 358800 227700 li1 351900 220800 365700 227700 met1 +358800 220800 365700 227700 met1 +358800 220800 365700 241500 met2 ) _07603_ ( @@ -36564,15 +36637,15 @@ _07603_ ) _07604_ ( +345000 103500 351900 110400 li1 +345000 103500 351900 110400 met1 +345000 103500 351900 117300 met2 +345000 110400 351900 117300 met1 345000 110400 351900 117300 li1 345000 110400 358800 117300 met1 -351900 103500 358800 110400 li1 -351900 103500 358800 110400 met1 -351900 103500 358800 117300 met2 -351900 110400 358800 117300 met1 351900 110400 358800 117300 li1 -345000 103500 351900 110400 li1 345000 103500 358800 110400 met1 +351900 103500 358800 110400 li1 ) _07605_ ( @@ -36724,11 +36797,11 @@ _07615_ ( 317400 103500 324300 110400 li1 317400 103500 324300 110400 met1 -317400 89700 324300 110400 met2 -317400 89700 324300 96600 met1 -317400 89700 331200 96600 met1 -324300 89700 331200 96600 met1 -324300 82800 331200 96600 met2 +317400 96600 324300 110400 met2 +317400 96600 324300 103500 met2 +317400 96600 331200 103500 met3 +324300 96600 331200 103500 met2 +324300 82800 331200 103500 met2 324300 82800 331200 89700 met1 317400 82800 331200 89700 met1 317400 82800 324300 89700 li1 @@ -36911,10 +36984,11 @@ _07627_ ) _07628_ ( -310500 172500 345000 179400 met1 -338100 172500 345000 179400 met1 -338100 172500 345000 186300 met2 -338100 179400 345000 186300 met1 +310500 172500 338100 179400 met1 +331200 172500 338100 179400 met1 +331200 172500 338100 186300 met2 +331200 179400 338100 186300 met1 +331200 179400 345000 186300 met1 338100 179400 345000 186300 li1 289800 172500 296700 179400 li1 289800 172500 303600 179400 met1 @@ -36980,10 +37054,10 @@ _07632_ _07633_ ( 303600 165600 310500 172500 li1 -303600 165600 317400 172500 met1 -310500 165600 317400 172500 met1 -310500 138000 317400 172500 met2 -310500 138000 317400 144900 met1 +303600 165600 310500 172500 met1 +303600 138000 310500 172500 met2 +303600 138000 310500 144900 met1 +303600 138000 317400 144900 met1 310500 138000 317400 144900 li1 ) _07634_ @@ -37133,11 +37207,15 @@ _07645_ 317400 165600 358800 172500 met1 351900 165600 358800 172500 met1 351900 144900 358800 172500 met2 -351900 144900 358800 151800 met1 -351900 144900 358800 151800 li1 351900 96600 358800 103500 li1 351900 96600 358800 103500 met1 -351900 96600 358800 151800 met2 +351900 96600 358800 103500 met2 +351900 96600 358800 103500 met3 +351900 96600 358800 151800 met4 +351900 144900 358800 151800 met3 +351900 144900 358800 151800 met2 +351900 144900 358800 151800 met1 +351900 144900 358800 151800 li1 310500 207000 317400 213900 li1 310500 207000 317400 213900 met1 310500 179400 317400 213900 met2 @@ -37176,17 +37254,17 @@ _07648_ 331200 82800 338100 89700 li1 310500 131100 317400 138000 li1 310500 131100 324300 138000 met1 -317400 117300 324300 124200 li1 -317400 117300 324300 124200 met1 -317400 117300 324300 138000 met2 317400 131100 324300 138000 met1 +317400 117300 324300 138000 met2 +317400 117300 324300 124200 met1 +317400 117300 324300 124200 li1 317400 131100 331200 138000 met1 324300 131100 331200 138000 li1 -317400 96600 324300 124200 met2 -317400 96600 324300 103500 met2 -317400 96600 331200 103500 met3 -324300 96600 331200 103500 met2 -324300 82800 331200 103500 met2 +317400 89700 324300 124200 met2 +317400 89700 324300 96600 met2 +317400 89700 331200 96600 met3 +324300 89700 331200 96600 met2 +324300 82800 331200 96600 met2 324300 82800 331200 89700 met1 ) _07649_ @@ -37230,15 +37308,18 @@ _07651_ 358800 96600 365700 103500 li1 317400 179400 324300 186300 li1 317400 179400 324300 186300 met1 -317400 179400 324300 193200 met2 -317400 186300 324300 193200 met1 -317400 186300 365700 193200 met1 +317400 179400 324300 186300 met2 +317400 179400 365700 186300 met3 +358800 179400 365700 186300 met2 +358800 179400 365700 193200 met2 +358800 186300 365700 193200 met1 358800 186300 365700 193200 li1 -317400 117300 324300 186300 met2 -317400 117300 324300 124200 met1 317400 117300 324300 124200 li1 -317400 117300 365700 124200 met1 -358800 117300 365700 124200 met1 +317400 117300 324300 124200 met1 +317400 117300 324300 124200 met2 +317400 117300 365700 124200 met3 +358800 117300 365700 124200 met2 +358800 117300 365700 186300 met2 358800 110400 365700 124200 met2 ) _07652_ @@ -37280,7 +37361,11 @@ _07654_ ) _07655_ ( -317400 117300 345000 124200 met1 +324300 110400 331200 117300 li1 +324300 110400 345000 117300 met1 +338100 110400 345000 117300 met1 +338100 110400 345000 124200 met2 +338100 117300 345000 124200 met1 338100 117300 345000 124200 li1 317400 110400 324300 117300 met1 317400 103500 324300 117300 met2 @@ -37291,13 +37376,10 @@ _07655_ 338100 158700 345000 213900 met2 338100 207000 345000 213900 met1 338100 207000 345000 213900 li1 +317400 110400 331200 117300 met1 317400 158700 324300 165600 li1 317400 158700 324300 165600 met1 -317400 117300 324300 165600 met2 -317400 117300 324300 124200 met1 -317400 110400 331200 117300 met1 -324300 110400 331200 117300 li1 -317400 110400 324300 124200 met2 +317400 110400 324300 165600 met2 ) _07656_ ( @@ -37529,11 +37611,11 @@ _07674_ 351900 241500 358800 248400 li1 331200 179400 338100 186300 li1 331200 179400 338100 186300 met1 -331200 179400 338100 207000 met2 -331200 200100 338100 207000 met1 -331200 200100 351900 207000 met1 -345000 200100 351900 207000 met1 -345000 200100 351900 248400 met2 +331200 179400 338100 241500 met2 +331200 234600 338100 241500 met1 +331200 234600 351900 241500 met1 +345000 234600 351900 241500 met1 +345000 234600 351900 248400 met2 345000 241500 351900 248400 met1 345000 241500 351900 248400 li1 331200 110400 338100 117300 li1 @@ -37754,10 +37836,12 @@ _07687_ _07688_ ( 310500 151800 317400 165600 met2 -310500 151800 317400 158700 met1 -310500 151800 351900 158700 met1 -345000 151800 351900 158700 met1 -345000 96600 351900 158700 met2 +310500 151800 317400 158700 met2 +310500 151800 351900 158700 met3 +345000 151800 351900 158700 met3 +345000 96600 351900 158700 met4 +345000 96600 351900 103500 met3 +345000 96600 351900 103500 met2 345000 96600 351900 103500 met1 345000 96600 351900 103500 li1 310500 158700 317400 165600 li1 @@ -37802,9 +37886,11 @@ _07691_ 351900 117300 358800 151800 met2 351900 144900 358800 151800 met1 351900 144900 358800 151800 li1 -345000 179400 358800 186300 met1 -351900 179400 358800 186300 met1 -351900 144900 358800 186300 met2 +345000 179400 351900 186300 li1 +345000 179400 351900 186300 met1 +345000 144900 351900 186300 met2 +345000 144900 351900 151800 met1 +345000 144900 358800 151800 met1 317400 220800 324300 227700 met1 317400 220800 324300 248400 met2 317400 241500 324300 248400 met1 @@ -37814,8 +37900,6 @@ _07691_ 317400 220800 351900 227700 met1 345000 220800 351900 227700 met1 345000 179400 351900 227700 met2 -345000 179400 351900 186300 met1 -345000 179400 351900 186300 li1 ) _07692_ ( @@ -37979,20 +38063,20 @@ _07707_ ) _07708_ ( -289800 103500 296700 110400 li1 -282900 103500 296700 110400 met1 -282900 103500 289800 110400 li1 -289800 103500 310500 110400 met1 -303600 103500 310500 110400 li1 -303600 103500 310500 110400 met1 -303600 103500 310500 131100 met2 -282900 124200 310500 131100 met1 -282900 124200 289800 131100 li1 303600 124200 310500 131100 met1 303600 124200 310500 227700 met2 303600 220800 310500 227700 met1 303600 220800 317400 227700 met1 310500 220800 317400 227700 li1 +303600 103500 310500 110400 li1 +303600 103500 310500 110400 met1 +303600 103500 310500 131100 met2 +289800 103500 296700 110400 li1 +289800 103500 310500 110400 met1 +282900 103500 296700 110400 met1 +282900 103500 289800 110400 li1 +282900 124200 289800 131100 li1 +282900 124200 310500 131100 met1 ) _07709_ ( @@ -38057,11 +38141,10 @@ _07712_ _07713_ ( 282900 124200 289800 131100 li1 -282900 124200 296700 131100 met1 -289800 124200 296700 131100 met1 -289800 117300 296700 131100 met2 -289800 117300 296700 124200 met1 -289800 117300 303600 124200 met1 +282900 124200 303600 131100 met1 +296700 124200 303600 131100 met1 +296700 117300 303600 131100 met2 +296700 117300 303600 124200 met1 296700 117300 303600 124200 li1 ) _07714_ @@ -38200,26 +38283,26 @@ _07723_ ) _07724_ ( -331200 131100 351900 138000 met3 -345000 131100 351900 138000 met3 -345000 110400 351900 138000 met4 -345000 110400 351900 117300 met3 -345000 110400 351900 117300 met2 -345000 110400 351900 117300 met1 345000 110400 351900 117300 li1 -331200 131100 338100 138000 met1 -331200 131100 338100 138000 met2 -331200 131100 338100 138000 met3 -331200 131100 338100 255300 met4 -331200 248400 338100 255300 met3 -331200 248400 338100 255300 met2 +345000 110400 351900 117300 met1 +345000 110400 351900 117300 met2 +345000 110400 351900 117300 met3 +345000 110400 351900 138000 met4 +345000 131100 351900 138000 met3 +345000 131100 351900 138000 met2 +345000 131100 351900 138000 met1 +345000 131100 351900 179400 met2 +345000 172500 351900 179400 met1 +331200 172500 351900 179400 met1 +331200 172500 338100 179400 met1 +331200 172500 338100 255300 met2 331200 248400 338100 255300 met1 317400 248400 324300 255300 li1 317400 248400 338100 255300 met1 310500 248400 324300 255300 met1 310500 248400 317400 255300 li1 310500 131100 317400 138000 li1 -310500 131100 338100 138000 met1 +310500 131100 351900 138000 met1 331200 248400 338100 262200 met2 331200 255300 338100 262200 met1 331200 255300 345000 262200 met1 @@ -38296,12 +38379,12 @@ _07729_ _07730_ ( 324300 248400 331200 255300 li1 -324300 248400 331200 255300 met1 -324300 248400 331200 262200 met2 -324300 255300 331200 262200 met2 -324300 255300 338100 262200 met3 -331200 255300 338100 262200 met3 -331200 255300 338100 372600 met4 +324300 248400 338100 255300 met1 +331200 248400 338100 255300 met1 +331200 248400 338100 282900 met2 +331200 276000 338100 282900 met2 +331200 276000 338100 282900 met3 +331200 276000 338100 372600 met4 331200 365700 338100 372600 met3 331200 365700 338100 372600 met2 331200 365700 338100 372600 met1 @@ -38340,15 +38423,20 @@ _07733_ 358800 75900 365700 82800 li1 324300 82800 358800 89700 met1 351900 82800 358800 89700 met1 -351900 82800 358800 103500 met2 +351900 82800 358800 89700 met2 +351900 82800 358800 89700 met3 +351900 82800 358800 103500 met4 +351900 96600 358800 103500 met3 +351900 96600 358800 103500 met2 351900 96600 358800 103500 met1 351900 96600 358800 103500 li1 -324300 151800 358800 158700 met3 -351900 151800 358800 158700 met3 -351900 151800 358800 241500 met4 -351900 234600 358800 241500 met3 -351900 234600 365700 241500 met3 -358800 234600 365700 241500 met2 +324300 151800 345000 158700 met3 +338100 151800 345000 158700 met3 +338100 151800 345000 186300 met4 +338100 179400 345000 186300 met3 +338100 179400 365700 186300 met3 +358800 179400 365700 186300 met2 +358800 179400 365700 241500 met2 358800 234600 365700 241500 met1 358800 234600 365700 241500 li1 324300 82800 331200 89700 li1 @@ -38366,23 +38454,25 @@ _07733_ _07734_ ( 358800 234600 365700 241500 li1 -358800 234600 372600 241500 met1 -365700 234600 372600 241500 met1 -365700 234600 372600 248400 met2 -365700 241500 372600 248400 met1 -365700 241500 386400 248400 met1 +358800 234600 386400 241500 met1 +379500 234600 386400 241500 met1 +379500 234600 386400 248400 met2 +379500 241500 386400 248400 met1 379500 241500 386400 248400 li1 ) _07735_ ( 331200 103500 338100 110400 li1 -331200 103500 372600 110400 met1 -365700 103500 372600 110400 met1 -365700 103500 372600 179400 met2 -365700 172500 372600 179400 met1 -365700 172500 386400 179400 met1 -379500 172500 386400 179400 met1 -379500 172500 386400 248400 met2 +331200 103500 338100 110400 met1 +331200 103500 338100 144900 met2 +331200 138000 338100 144900 met1 +331200 138000 358800 144900 met1 +351900 138000 358800 144900 met1 +351900 138000 358800 200100 met2 +351900 193200 358800 200100 met1 +351900 193200 386400 200100 met1 +379500 193200 386400 200100 met1 +379500 193200 386400 248400 met2 379500 241500 386400 248400 met1 379500 241500 386400 248400 li1 379500 241500 386400 345000 met2 @@ -38559,10 +38649,10 @@ _07749_ ) _07750_ ( -317400 144900 338100 151800 met1 -331200 144900 338100 151800 met1 -331200 117300 338100 151800 met2 -331200 117300 338100 124200 met1 +317400 144900 324300 151800 met1 +317400 117300 324300 151800 met2 +317400 117300 324300 124200 met1 +317400 117300 338100 124200 met1 331200 117300 338100 124200 li1 296700 144900 303600 151800 li1 296700 144900 324300 151800 met1 @@ -38575,7 +38665,6 @@ _07750_ 317400 151800 324300 158700 li1 317400 151800 324300 158700 met1 317400 144900 324300 158700 met2 -317400 144900 324300 151800 met1 ) _07751_ ( @@ -38648,13 +38737,7 @@ _07755_ ( 289800 255300 296700 262200 li1 289800 255300 296700 262200 met1 -289800 255300 296700 262200 met2 -234600 255300 296700 262200 met3 -234600 255300 241500 262200 met3 -234600 138000 241500 262200 met4 -234600 138000 241500 144900 met3 -234600 138000 296700 144900 met3 -289800 138000 296700 144900 met2 +289800 138000 296700 262200 met2 289800 138000 296700 144900 met1 289800 138000 296700 144900 li1 ) @@ -38676,15 +38759,11 @@ _07757_ 310500 262200 317400 276000 met4 310500 262200 317400 269100 met3 317400 110400 324300 117300 li1 -255300 110400 324300 117300 met1 -255300 110400 262200 117300 met1 -255300 110400 262200 193200 met2 -255300 186300 262200 193200 met1 -248400 186300 262200 193200 met1 -248400 186300 255300 193200 met1 -248400 186300 255300 269100 met2 -248400 262200 255300 269100 met2 -248400 262200 317400 269100 met3 +227700 110400 324300 117300 met1 +227700 110400 234600 117300 met1 +227700 110400 234600 269100 met2 +227700 262200 234600 269100 met2 +227700 262200 317400 269100 met3 310500 262200 324300 269100 met3 317400 262200 324300 269100 met2 317400 262200 324300 269100 met1 @@ -38716,10 +38795,10 @@ _07759_ 303600 227700 310500 234600 met1 303600 227700 324300 234600 met1 317400 227700 324300 234600 li1 -282900 276000 289800 282900 li1 -282900 276000 289800 282900 met1 -282900 269100 289800 282900 met2 282900 269100 289800 276000 met1 +282900 269100 289800 282900 met2 +282900 276000 289800 282900 met1 +282900 276000 289800 282900 li1 282900 262200 289800 269100 li1 282900 262200 289800 269100 met1 282900 255300 289800 269100 met2 @@ -38746,15 +38825,16 @@ _07761_ 310500 255300 317400 269100 met2 310500 255300 317400 262200 met1 310500 255300 317400 262200 li1 -296700 282900 317400 289800 met1 -296700 282900 303600 289800 li1 -310500 262200 317400 282900 met2 -310500 276000 317400 282900 met1 -289800 276000 296700 282900 li1 -289800 276000 317400 282900 met1 -310500 276000 317400 289800 met2 +310500 262200 317400 289800 met2 310500 282900 317400 289800 met1 310500 282900 317400 289800 li1 +296700 282900 317400 289800 met1 +289800 276000 296700 282900 li1 +289800 276000 303600 282900 met1 +296700 276000 303600 282900 met1 +296700 276000 303600 289800 met2 +296700 282900 303600 289800 met1 +296700 282900 303600 289800 li1 ) _07762_ ( @@ -38803,36 +38883,38 @@ _07764_ ) _07765_ ( -310500 262200 317400 269100 li1 -310500 262200 317400 269100 met1 310500 262200 317400 289800 met2 310500 282900 317400 289800 met1 310500 282900 317400 289800 li1 310500 158700 317400 165600 li1 -289800 158700 317400 165600 met1 -289800 158700 296700 165600 met1 -289800 158700 296700 269100 met2 -289800 262200 296700 269100 met1 -289800 262200 317400 269100 met1 +310500 158700 317400 165600 met1 +310500 158700 317400 165600 met2 +248400 158700 317400 165600 met3 +248400 158700 255300 165600 met3 +248400 158700 255300 269100 met4 +248400 262200 255300 269100 met3 +248400 262200 317400 269100 met3 +310500 262200 317400 269100 met2 +310500 262200 317400 269100 met1 +310500 262200 317400 269100 li1 ) _07766_ ( -310500 262200 317400 269100 li1 +303600 234600 310500 241500 li1 +303600 234600 317400 241500 met1 +310500 234600 317400 241500 met1 +310500 234600 317400 269100 met2 310500 262200 317400 269100 met1 +310500 262200 317400 269100 li1 310500 262200 317400 276000 met2 310500 269100 317400 276000 met1 310500 269100 317400 276000 li1 -303600 262200 310500 269100 met1 -303600 234600 310500 269100 met2 -303600 234600 310500 241500 met1 -303600 234600 310500 241500 li1 -276000 262200 310500 269100 met1 -276000 262200 282900 269100 li1 -276000 262200 282900 269100 met1 -276000 262200 282900 276000 met2 -276000 269100 282900 276000 met1 +276000 269100 317400 276000 met1 276000 269100 282900 276000 li1 -303600 262200 317400 269100 met1 +276000 269100 282900 276000 met1 +276000 262200 282900 276000 met2 +276000 262200 282900 269100 met1 +276000 262200 282900 269100 li1 ) _07767_ ( @@ -38871,10 +38953,8 @@ _07771_ 310500 179400 317400 186300 li1 310500 179400 317400 186300 met1 310500 69000 317400 186300 met2 -310500 69000 317400 75900 met2 -310500 69000 324300 75900 met3 -317400 69000 324300 75900 met2 -317400 69000 324300 75900 met1 +310500 69000 317400 75900 met1 +310500 69000 324300 75900 met1 317400 69000 324300 75900 li1 282900 179400 289800 186300 li1 282900 179400 289800 186300 met1 @@ -38990,10 +39070,10 @@ _07779_ _07780_ ( 282900 186300 289800 193200 li1 -282900 186300 296700 193200 met1 -289800 186300 296700 193200 met1 -289800 179400 296700 193200 met2 -289800 179400 296700 186300 met1 +282900 186300 289800 193200 met1 +282900 179400 289800 193200 met2 +282900 179400 289800 186300 met1 +282900 179400 296700 186300 met1 289800 179400 296700 186300 li1 ) _07781_ @@ -39029,10 +39109,11 @@ _07782_ _07783_ ( 241500 172500 248400 179400 li1 -241500 172500 262200 179400 met1 -255300 172500 262200 179400 met1 -255300 172500 262200 186300 met2 -255300 179400 262200 186300 met1 +241500 172500 255300 179400 met1 +248400 172500 255300 179400 met1 +248400 172500 255300 186300 met2 +248400 179400 255300 186300 met1 +248400 179400 262200 186300 met1 255300 179400 262200 186300 li1 255300 179400 317400 186300 met1 310500 179400 317400 186300 li1 @@ -39068,13 +39149,9 @@ _07786_ ( 248400 172500 255300 179400 li1 248400 172500 255300 179400 met1 -248400 158700 255300 179400 met2 -248400 158700 255300 165600 met1 -248400 158700 303600 165600 met1 -296700 158700 303600 165600 met1 -296700 131100 303600 165600 met2 -296700 131100 303600 138000 met1 -296700 131100 324300 138000 met1 +248400 131100 255300 179400 met2 +248400 131100 255300 138000 met1 +248400 131100 324300 138000 met1 317400 131100 324300 138000 li1 248400 172500 255300 213900 met2 248400 207000 255300 213900 met1 @@ -39106,25 +39183,21 @@ _07787_ ) _07788_ ( -241500 193200 248400 200100 li1 241500 193200 255300 200100 met1 248400 193200 255300 200100 met1 248400 193200 255300 207000 met2 248400 200100 255300 207000 met1 248400 200100 255300 207000 li1 -248400 193200 262200 200100 met1 -255300 193200 262200 200100 met1 -255300 179400 262200 200100 met2 -255300 179400 262200 186300 met1 -255300 179400 269100 186300 met1 -262200 179400 269100 186300 met1 -262200 158700 269100 186300 met2 -262200 158700 269100 165600 met1 -262200 158700 317400 165600 met1 +241500 193200 248400 200100 li1 +241500 193200 248400 200100 met1 +241500 158700 248400 200100 met2 +241500 158700 248400 165600 met1 +241500 158700 317400 165600 met1 310500 158700 317400 165600 li1 ) _07789_ ( +255300 213900 262200 220800 li1 255300 213900 317400 220800 met1 310500 213900 317400 220800 li1 248400 200100 255300 207000 li1 @@ -39132,11 +39205,9 @@ _07789_ 248400 200100 255300 213900 met2 248400 207000 255300 213900 met1 248400 207000 255300 213900 li1 -248400 207000 262200 213900 met1 -255300 207000 262200 213900 met1 -255300 207000 262200 220800 met2 -255300 213900 262200 220800 met1 -255300 213900 262200 220800 li1 +248400 207000 255300 220800 met2 +248400 213900 255300 220800 met1 +248400 213900 262200 220800 met1 ) _07790_ ( @@ -39176,22 +39247,19 @@ _07793_ ) _07794_ ( -289800 82800 331200 89700 met1 -324300 82800 331200 89700 li1 +289800 82800 296700 89700 met1 +289800 82800 296700 138000 met2 +289800 131100 296700 138000 met1 +289800 131100 324300 138000 met1 +317400 131100 324300 138000 li1 289800 75900 296700 82800 li1 289800 75900 296700 82800 met1 -289800 75900 296700 89700 met2 -289800 82800 296700 89700 met1 289800 69000 296700 82800 met2 289800 69000 296700 75900 met1 289800 69000 296700 75900 li1 -289800 82800 296700 131100 met2 -289800 124200 296700 131100 met1 -289800 124200 324300 131100 met1 -317400 124200 324300 131100 met1 -317400 124200 324300 138000 met2 -317400 131100 324300 138000 met1 -317400 131100 324300 138000 li1 +289800 75900 296700 89700 met2 +289800 82800 331200 89700 met1 +324300 82800 331200 89700 li1 ) _07795_ ( @@ -39208,10 +39276,10 @@ _07795_ ) _07796_ ( -296700 82800 303600 89700 met1 -296700 82800 303600 138000 met2 -296700 131100 303600 138000 met1 -296700 131100 324300 138000 met1 +282900 82800 289800 89700 met1 +282900 82800 289800 138000 met2 +282900 131100 289800 138000 met1 +282900 131100 324300 138000 met1 317400 131100 324300 138000 li1 282900 62100 289800 69000 met1 282900 55200 289800 69000 met2 @@ -39220,12 +39288,10 @@ _07796_ 282900 69000 289800 75900 li1 282900 69000 289800 75900 met1 282900 69000 289800 89700 met2 -282900 82800 289800 89700 met1 -282900 82800 303600 89700 met1 282900 62100 296700 69000 met1 289800 62100 296700 69000 li1 282900 62100 289800 75900 met2 -296700 82800 324300 89700 met1 +282900 82800 324300 89700 met1 317400 82800 324300 89700 li1 ) _07797_ @@ -39353,10 +39419,10 @@ _07807_ 310500 41400 351900 48300 met1 345000 41400 351900 48300 met1 345000 41400 351900 62100 met2 +345000 55200 351900 62100 met1 345000 138000 351900 144900 li1 345000 138000 351900 144900 met1 345000 55200 351900 144900 met2 -345000 55200 351900 62100 met1 303600 41400 310500 48300 li1 303600 41400 317400 48300 met1 296700 41400 303600 48300 li1 @@ -39460,11 +39526,11 @@ _07815_ 358800 55200 365700 62100 li1 310500 131100 317400 138000 li1 310500 131100 317400 138000 met1 -310500 89700 317400 138000 met2 -310500 89700 317400 96600 met2 -310500 89700 358800 96600 met3 -351900 89700 358800 96600 met2 -351900 55200 358800 96600 met2 +310500 103500 317400 138000 met2 +310500 103500 317400 110400 met1 +310500 103500 358800 110400 met1 +351900 103500 358800 110400 met1 +351900 55200 358800 110400 met2 351900 55200 358800 62100 met1 351900 34500 358800 62100 met2 351900 34500 358800 41400 met1 @@ -39602,11 +39668,11 @@ _07826_ _07827_ ( 269100 82800 276000 89700 li1 -269100 82800 289800 89700 met1 -282900 82800 289800 89700 met1 -282900 82800 289800 131100 met2 -282900 124200 289800 131100 met1 -282900 124200 317400 131100 met1 +269100 82800 296700 89700 met1 +289800 82800 296700 89700 met1 +289800 82800 296700 131100 met2 +289800 124200 296700 131100 met1 +289800 124200 317400 131100 met1 310500 124200 317400 131100 li1 255300 75900 262200 82800 li1 255300 75900 269100 82800 met1 @@ -39637,14 +39703,11 @@ _07829_ 248400 82800 255300 89700 met1 248400 82800 255300 89700 met2 248400 82800 255300 89700 met3 -248400 82800 255300 234600 met4 -248400 227700 255300 234600 met3 -248400 227700 289800 234600 met3 -282900 227700 289800 234600 met3 -282900 227700 289800 262200 met4 -282900 255300 289800 262200 met3 -282900 255300 338100 262200 met3 -331200 255300 338100 262200 met2 +248400 82800 255300 255300 met4 +248400 248400 255300 255300 met3 +248400 248400 338100 255300 met3 +331200 248400 338100 255300 met2 +331200 248400 338100 262200 met2 331200 255300 338100 262200 met1 331200 255300 338100 262200 li1 ) @@ -39707,10 +39770,8 @@ _07835_ ( 289800 186300 296700 193200 li1 289800 186300 296700 193200 met1 -289800 186300 296700 193200 met2 -289800 186300 296700 193200 met3 -289800 186300 296700 227700 met4 -289800 220800 296700 227700 met3 +289800 186300 296700 227700 met2 +289800 220800 296700 227700 met2 289800 220800 303600 227700 met3 296700 220800 303600 227700 met3 296700 220800 303600 379500 met4 @@ -39867,8 +39928,10 @@ _07851_ ( 289800 172500 296700 179400 li1 289800 172500 296700 179400 met1 -289800 172500 296700 193200 met2 -289800 186300 296700 193200 met2 +289800 172500 296700 179400 met2 +289800 172500 296700 179400 met3 +289800 172500 296700 193200 met4 +289800 186300 296700 193200 met3 289800 186300 303600 193200 met3 296700 186300 303600 193200 met3 296700 186300 303600 358800 met4 @@ -39917,9 +39980,12 @@ _07855_ ( 282900 103500 289800 110400 li1 282900 103500 289800 110400 met1 -282900 103500 289800 186300 met2 -282900 179400 289800 186300 met1 -282900 179400 296700 186300 met1 +282900 103500 289800 158700 met2 +282900 151800 289800 158700 met1 +282900 151800 296700 158700 met1 +289800 151800 296700 158700 met1 +289800 151800 296700 186300 met2 +289800 179400 296700 186300 met1 289800 179400 296700 186300 li1 ) _07856_ @@ -39963,11 +40029,16 @@ _07861_ 289800 186300 296700 193200 met1 289800 186300 296700 193200 met2 289800 186300 296700 193200 met3 -289800 186300 296700 296700 met4 -289800 289800 296700 296700 met3 -289800 289800 345000 296700 met3 -338100 289800 345000 296700 met2 -338100 289800 345000 338100 met2 +289800 186300 296700 248400 met4 +289800 241500 296700 248400 met3 +289800 241500 345000 248400 met3 +338100 241500 345000 248400 met2 +338100 241500 345000 255300 met2 +338100 248400 345000 255300 met2 +338100 248400 345000 255300 met3 +338100 248400 345000 338100 met4 +338100 331200 345000 338100 met3 +338100 331200 345000 338100 met2 338100 331200 345000 338100 met1 338100 331200 345000 338100 li1 ) @@ -40008,16 +40079,20 @@ _07864_ 282900 310500 289800 317400 met1 282900 310500 289800 317400 met2 282900 310500 289800 317400 met3 -282900 179400 289800 317400 met4 +282900 220800 289800 317400 met4 +282900 220800 289800 227700 met3 +282900 220800 289800 227700 met2 +282900 186300 289800 227700 met2 +282900 186300 289800 193200 met2 +282900 186300 289800 193200 met3 +282900 179400 289800 193200 met4 282900 179400 289800 186300 met3 282900 179400 289800 186300 met2 -282900 172500 289800 186300 met2 -282900 172500 289800 179400 met2 -282900 172500 289800 179400 met3 -282900 144900 289800 179400 met4 -282900 144900 289800 151800 met3 -282900 144900 296700 151800 met3 -289800 144900 296700 151800 met2 +282900 151800 289800 186300 met2 +282900 151800 289800 158700 met1 +282900 151800 296700 158700 met1 +289800 151800 296700 158700 met1 +289800 144900 296700 158700 met2 289800 144900 296700 151800 met1 289800 144900 296700 151800 li1 ) @@ -40033,10 +40108,10 @@ _07865_ _07866_ ( 276000 262200 282900 269100 li1 -276000 262200 282900 269100 met1 -276000 255300 282900 269100 met2 -276000 255300 282900 262200 met1 -276000 255300 289800 262200 met1 +276000 262200 289800 269100 met1 +282900 262200 289800 269100 met1 +282900 255300 289800 269100 met2 +282900 255300 289800 262200 met1 282900 255300 289800 262200 li1 ) _07867_ @@ -40051,12 +40126,12 @@ _07868_ ( 282900 179400 289800 186300 li1 282900 179400 289800 186300 met1 -282900 179400 289800 186300 met2 -282900 179400 351900 186300 met3 -345000 179400 351900 186300 met2 -345000 158700 351900 186300 met2 -345000 158700 351900 165600 met1 -345000 158700 372600 165600 met1 +282900 172500 289800 186300 met2 +282900 172500 289800 179400 met1 +282900 172500 372600 179400 met1 +365700 172500 372600 179400 met1 +365700 158700 372600 179400 met2 +365700 158700 372600 165600 met1 365700 158700 372600 165600 li1 ) _07869_ @@ -40098,10 +40173,10 @@ _07873_ _07874_ ( 282900 69000 289800 75900 li1 -282900 69000 296700 75900 met1 -289800 69000 296700 75900 met1 -289800 69000 296700 89700 met2 -289800 82800 296700 89700 met1 +282900 69000 289800 75900 met1 +282900 69000 289800 89700 met2 +282900 82800 289800 89700 met1 +282900 82800 296700 89700 met1 289800 82800 296700 89700 li1 ) _07875_ @@ -40217,10 +40292,11 @@ _07885_ 282900 82800 289800 89700 met1 282900 82800 289800 89700 met2 282900 82800 289800 89700 met3 -282900 82800 289800 186300 met4 -282900 179400 289800 186300 met3 -282900 179400 296700 186300 met3 -289800 179400 296700 186300 met2 +282900 82800 289800 172500 met4 +282900 165600 289800 172500 met3 +282900 165600 296700 172500 met3 +289800 165600 296700 172500 met2 +289800 165600 296700 186300 met2 289800 179400 296700 186300 met1 289800 179400 296700 186300 li1 ) @@ -40236,9 +40312,12 @@ _07886_ _07887_ ( 296700 351900 303600 358800 li1 -296700 351900 310500 358800 met1 -303600 351900 310500 358800 met1 -303600 351900 310500 448500 met2 +296700 351900 303600 358800 met1 +296700 351900 303600 386400 met2 +296700 379500 303600 386400 met1 +296700 379500 310500 386400 met1 +303600 379500 310500 386400 met1 +303600 379500 310500 448500 met2 303600 441600 310500 448500 met1 303600 441600 310500 448500 li1 ) @@ -40289,11 +40368,11 @@ _07893_ ( 262200 138000 269100 144900 li1 262200 138000 269100 144900 met1 -262200 138000 269100 186300 met2 -262200 179400 269100 186300 met2 -262200 179400 276000 186300 met3 -269100 179400 276000 186300 met2 -269100 179400 276000 220800 met2 +262200 138000 269100 193200 met2 +262200 186300 269100 193200 met1 +262200 186300 276000 193200 met1 +269100 186300 276000 193200 met1 +269100 186300 276000 220800 met2 269100 213900 276000 220800 met1 269100 213900 276000 220800 li1 ) @@ -40307,9 +40386,13 @@ _07895_ ( 289800 303600 296700 310500 li1 289800 303600 296700 310500 met1 -289800 303600 296700 351900 met2 -289800 345000 296700 351900 met1 -289800 345000 365700 351900 met1 +289800 303600 296700 331200 met2 +289800 324300 296700 331200 met1 +289800 324300 351900 331200 met1 +345000 324300 351900 331200 met1 +345000 324300 351900 351900 met2 +345000 345000 351900 351900 met1 +345000 345000 365700 351900 met1 358800 345000 365700 351900 li1 ) _07896_ @@ -40325,10 +40408,9 @@ _07897_ 282900 213900 289800 220800 li1 282900 213900 289800 220800 met1 282900 213900 289800 220800 met2 -282900 213900 324300 220800 met3 -317400 213900 324300 220800 met2 -317400 213900 324300 220800 met1 -317400 213900 338100 220800 met1 +282900 213900 338100 220800 met3 +331200 213900 338100 220800 met2 +331200 213900 338100 220800 met1 331200 213900 338100 220800 li1 ) _07898_ @@ -40350,17 +40432,11 @@ _07900_ 289800 172500 296700 179400 met1 289800 172500 296700 179400 met2 289800 172500 296700 179400 met3 -289800 172500 296700 193200 met4 -289800 186300 296700 193200 met3 -289800 186300 296700 193200 met2 -289800 186300 296700 200100 met2 -289800 193200 296700 200100 met2 -289800 193200 296700 200100 met3 -289800 193200 296700 358800 met4 -289800 351900 296700 358800 met3 -289800 351900 310500 358800 met3 -303600 351900 310500 358800 met2 -303600 351900 310500 365700 met2 +289800 172500 296700 351900 met4 +289800 345000 296700 351900 met3 +289800 345000 310500 351900 met3 +303600 345000 310500 351900 met2 +303600 345000 310500 365700 met2 303600 358800 310500 365700 met1 303600 358800 310500 365700 li1 ) @@ -40376,11 +40452,7 @@ _07902_ ( 289800 103500 296700 110400 li1 289800 103500 296700 110400 met1 -289800 103500 296700 110400 met2 -289800 103500 296700 110400 met3 -289800 103500 296700 200100 met4 -289800 193200 296700 200100 met3 -289800 193200 296700 200100 met2 +289800 103500 296700 200100 met2 289800 193200 296700 200100 met1 289800 193200 296700 200100 li1 ) @@ -40425,16 +40497,13 @@ _07908_ ( 289800 193200 296700 200100 li1 289800 193200 296700 200100 met1 -289800 193200 296700 248400 met2 -289800 241500 296700 248400 met1 -289800 241500 345000 248400 met1 -338100 241500 345000 248400 met1 -338100 241500 345000 269100 met2 -338100 262200 345000 269100 met2 -338100 262200 345000 269100 met3 -338100 262200 345000 338100 met4 -338100 331200 345000 338100 met3 -338100 331200 345000 338100 met2 +289800 193200 296700 200100 met2 +289800 193200 296700 200100 met3 +289800 193200 296700 296700 met4 +289800 289800 296700 296700 met3 +289800 289800 345000 296700 met3 +338100 289800 345000 296700 met2 +338100 289800 345000 338100 met2 338100 331200 345000 338100 met1 338100 331200 345000 338100 li1 ) @@ -40443,9 +40512,11 @@ _07909_ 296700 303600 303600 310500 li1 296700 303600 303600 310500 met1 296700 303600 303600 310500 met2 -296700 303600 303600 310500 met3 -296700 144900 303600 310500 met4 -296700 144900 303600 151800 met3 +234600 303600 303600 310500 met3 +234600 303600 241500 310500 met3 +234600 144900 241500 310500 met4 +234600 144900 241500 151800 met3 +234600 144900 303600 151800 met3 296700 144900 303600 151800 met2 296700 144900 303600 151800 met1 296700 144900 303600 151800 li1 @@ -40845,11 +40916,11 @@ _07945_ 262200 110400 269100 117300 li1 255300 117300 262200 124200 li1 255300 117300 269100 124200 met1 -269100 117300 324300 124200 met1 -317400 117300 324300 124200 met1 -317400 117300 324300 138000 met2 -317400 131100 324300 138000 met1 -317400 131100 345000 138000 met1 +269100 117300 338100 124200 met1 +331200 117300 338100 124200 met1 +331200 117300 338100 138000 met2 +331200 131100 338100 138000 met1 +331200 131100 345000 138000 met1 338100 131100 345000 138000 li1 ) _07946_ @@ -40857,30 +40928,29 @@ _07946_ 262200 117300 269100 124200 li1 262200 117300 269100 124200 met1 262200 117300 269100 124200 met2 -262200 117300 282900 124200 met3 -276000 117300 282900 124200 met3 -276000 117300 282900 227700 met4 -276000 220800 282900 227700 met3 -276000 220800 296700 227700 met3 -289800 220800 296700 227700 met2 -289800 220800 296700 227700 met1 +262200 117300 269100 124200 met3 +262200 117300 269100 213900 met4 +262200 207000 269100 213900 met3 +262200 207000 289800 213900 met3 +282900 207000 289800 213900 met2 +282900 207000 289800 227700 met2 +282900 220800 289800 227700 met1 +282900 220800 296700 227700 met1 289800 220800 296700 227700 li1 ) _07947_ ( +289800 220800 310500 227700 met1 +303600 220800 310500 227700 li1 +289800 227700 296700 234600 li1 +289800 227700 296700 234600 met1 +289800 227700 296700 255300 met2 +289800 248400 296700 255300 met1 +289800 248400 331200 255300 met1 +324300 248400 331200 255300 li1 289800 220800 296700 227700 li1 289800 220800 296700 227700 met1 289800 220800 296700 234600 met2 -289800 227700 296700 234600 met1 -289800 227700 296700 234600 li1 -303600 220800 310500 227700 li1 -303600 220800 317400 227700 met1 -310500 220800 317400 227700 met1 -310500 220800 317400 255300 met2 -310500 248400 317400 255300 met1 -310500 248400 331200 255300 met1 -324300 248400 331200 255300 li1 -289800 220800 310500 227700 met1 ) _07948_ ( @@ -40919,11 +40989,10 @@ _07950_ _07951_ ( 310500 227700 317400 234600 li1 -310500 227700 358800 234600 met1 -351900 227700 358800 234600 met1 -351900 220800 358800 234600 met2 -351900 220800 358800 227700 met1 -351900 220800 372600 227700 met1 +310500 227700 372600 234600 met1 +365700 227700 372600 234600 met1 +365700 220800 372600 234600 met2 +365700 220800 372600 227700 met1 365700 220800 372600 227700 li1 ) _07952_ @@ -41045,14 +41114,12 @@ _07961_ 351900 220800 358800 227700 met1 351900 220800 358800 227700 li1 338100 227700 351900 234600 met1 -338100 200100 351900 207000 met1 -345000 200100 351900 207000 met1 -345000 193200 351900 207000 met2 -345000 193200 351900 200100 met1 -345000 193200 358800 200100 met1 -351900 193200 358800 200100 li1 338100 200100 345000 207000 li1 338100 200100 345000 207000 met1 +338100 193200 345000 207000 met2 +338100 193200 345000 200100 met1 +338100 193200 358800 200100 met1 +351900 193200 358800 200100 li1 338100 200100 345000 234600 met2 338100 227700 345000 234600 met1 338100 227700 345000 234600 li1 @@ -41060,10 +41127,11 @@ _07961_ _07962_ ( 303600 220800 310500 227700 li1 -303600 220800 310500 227700 met1 -303600 220800 310500 234600 met2 -303600 227700 310500 234600 met1 -303600 227700 345000 234600 met1 +303600 220800 317400 227700 met1 +310500 220800 317400 227700 met1 +310500 220800 317400 234600 met2 +310500 227700 317400 234600 met1 +310500 227700 345000 234600 met1 338100 227700 345000 234600 li1 ) _07963_ @@ -41350,11 +41418,11 @@ _07987_ _07988_ ( 310500 179400 317400 186300 li1 -310500 179400 338100 186300 met1 -331200 179400 338100 186300 met1 -331200 172500 338100 186300 met2 -331200 172500 338100 179400 met1 -331200 172500 365700 179400 met1 +310500 179400 358800 186300 met1 +351900 179400 358800 186300 met1 +351900 172500 358800 186300 met2 +351900 172500 358800 179400 met1 +351900 172500 365700 179400 met1 358800 172500 365700 179400 li1 ) _07989_ @@ -41365,13 +41433,13 @@ _07989_ _07990_ ( 234600 165600 241500 172500 li1 -234600 165600 248400 172500 met1 +234600 165600 241500 172500 met1 +234600 165600 241500 179400 met2 +234600 172500 241500 179400 met1 234600 172500 241500 179400 li1 -234600 172500 248400 179400 met1 +234600 165600 248400 172500 met1 241500 165600 248400 172500 li1 -241500 165600 248400 172500 met1 -241500 165600 248400 179400 met2 -241500 172500 248400 179400 met1 +234600 172500 248400 179400 met1 241500 172500 248400 179400 li1 ) _07991_ @@ -41420,11 +41488,10 @@ _07994_ _07995_ ( 241500 172500 248400 179400 li1 -241500 172500 289800 179400 met1 -282900 172500 289800 179400 met1 -282900 172500 289800 186300 met2 -282900 179400 289800 186300 met1 -282900 179400 303600 186300 met1 +241500 172500 303600 179400 met1 +296700 172500 303600 179400 met1 +296700 172500 303600 186300 met2 +296700 179400 303600 186300 met1 296700 179400 303600 186300 li1 ) _07996_ @@ -41491,11 +41558,10 @@ _08001_ _08002_ ( 317400 62100 324300 69000 li1 -317400 62100 379500 69000 met1 -372600 62100 379500 69000 met1 -372600 62100 379500 75900 met2 -372600 69000 379500 75900 met1 -372600 69000 386400 75900 met1 +317400 62100 386400 69000 met1 +379500 62100 386400 69000 met1 +379500 62100 386400 75900 met2 +379500 69000 386400 75900 met1 379500 69000 386400 75900 li1 ) _08003_ @@ -41740,10 +41806,10 @@ _08025_ _08026_ ( 331200 200100 338100 207000 li1 -331200 200100 338100 207000 met1 -331200 200100 338100 227700 met2 -331200 220800 338100 227700 met1 -331200 220800 345000 227700 met1 +331200 200100 345000 207000 met1 +338100 200100 345000 207000 met1 +338100 200100 345000 227700 met2 +338100 220800 345000 227700 met1 338100 220800 345000 227700 li1 ) _08027_ @@ -41776,14 +41842,9 @@ _08029_ 276000 89700 282900 179400 met4 276000 172500 282900 179400 met3 276000 172500 282900 179400 met2 -276000 172500 282900 227700 met2 -276000 220800 282900 227700 met2 -276000 220800 282900 227700 met3 -276000 220800 282900 255300 met4 -276000 248400 282900 255300 met3 -276000 248400 331200 255300 met3 -324300 248400 331200 255300 met2 -324300 248400 331200 255300 met1 +276000 172500 282900 255300 met2 +276000 248400 282900 255300 met1 +276000 248400 331200 255300 met1 324300 248400 331200 255300 li1 ) _08030_ @@ -41853,13 +41914,15 @@ _08037_ 317400 131100 324300 138000 li1 317400 131100 324300 138000 met1 317400 131100 324300 138000 met2 -227700 131100 324300 138000 met3 -227700 131100 234600 138000 met3 -227700 131100 234600 351900 met4 -227700 345000 234600 351900 met3 -227700 345000 331200 351900 met3 -324300 345000 331200 351900 met2 -324300 345000 331200 351900 met1 +220800 131100 324300 138000 met3 +220800 131100 227700 138000 met3 +220800 131100 227700 262200 met4 +220800 255300 227700 262200 met3 +220800 255300 255300 262200 met3 +248400 255300 255300 262200 met2 +248400 255300 255300 351900 met2 +248400 345000 255300 351900 met1 +248400 345000 331200 351900 met1 324300 345000 331200 351900 li1 ) _08038_ @@ -41871,11 +41934,10 @@ _08039_ ( 324300 131100 331200 138000 li1 324300 131100 331200 138000 met1 -324300 131100 331200 144900 met2 -324300 138000 331200 144900 met1 -324300 138000 358800 144900 met1 -351900 138000 358800 144900 met1 -351900 138000 358800 200100 met2 +324300 131100 331200 138000 met2 +324300 131100 358800 138000 met3 +351900 131100 358800 138000 met2 +351900 131100 358800 200100 met2 351900 193200 358800 200100 met1 351900 193200 358800 200100 li1 ) @@ -41895,34 +41957,32 @@ _08041_ _08042_ ( 317400 227700 324300 234600 li1 -269100 227700 324300 234600 met1 -269100 227700 276000 234600 met1 -269100 186300 276000 234600 met2 -269100 186300 276000 193200 met1 -269100 186300 282900 193200 met1 -276000 186300 282900 193200 met1 -276000 172500 282900 193200 met2 +276000 227700 324300 234600 met1 +276000 227700 282900 234600 met1 +276000 172500 282900 234600 met2 276000 172500 282900 179400 met1 269100 172500 282900 179400 met1 269100 172500 276000 179400 met1 -269100 131100 276000 179400 met2 -269100 131100 276000 138000 met1 -269100 131100 324300 138000 met1 +269100 151800 276000 179400 met2 +269100 151800 276000 158700 met1 +269100 151800 303600 158700 met1 +296700 151800 303600 158700 met1 +296700 131100 303600 158700 met2 +296700 131100 303600 138000 met1 +296700 131100 324300 138000 met1 317400 131100 324300 138000 li1 ) _08043_ ( 317400 131100 324300 138000 li1 317400 131100 324300 138000 met1 -317400 131100 324300 179400 met2 -317400 172500 324300 179400 met2 -317400 172500 331200 179400 met3 -324300 172500 331200 179400 met3 -324300 172500 331200 200100 met4 -324300 193200 331200 200100 met3 -324300 193200 331200 200100 met2 -324300 193200 331200 200100 met1 -317400 193200 331200 200100 met1 +317400 131100 324300 193200 met2 +317400 186300 324300 193200 met1 +317400 186300 338100 193200 met1 +331200 186300 338100 193200 met1 +331200 186300 338100 200100 met2 +331200 193200 338100 200100 met1 +317400 193200 338100 200100 met1 317400 193200 324300 200100 li1 ) _08044_ @@ -41970,11 +42030,11 @@ _08049_ 317400 69000 324300 75900 li1 317400 69000 331200 75900 met1 324300 69000 331200 75900 met1 -324300 69000 331200 103500 met2 -324300 96600 331200 103500 met1 -317400 96600 331200 103500 met1 -317400 96600 324300 103500 met1 -317400 96600 324300 124200 met2 +324300 69000 331200 96600 met2 +324300 89700 331200 96600 met1 +317400 89700 331200 96600 met1 +317400 89700 324300 96600 met1 +317400 89700 324300 124200 met2 317400 117300 324300 124200 met1 317400 117300 324300 124200 li1 ) @@ -41998,22 +42058,20 @@ _08051_ _08052_ ( 317400 117300 324300 124200 li1 -317400 117300 324300 124200 met1 -317400 117300 324300 124200 met2 -317400 117300 358800 124200 met3 -351900 117300 358800 124200 met2 -351900 117300 358800 200100 met2 -351900 193200 358800 200100 met1 -317400 193200 358800 200100 met1 +296700 117300 324300 124200 met1 +296700 117300 303600 124200 met1 +296700 117300 303600 200100 met2 +296700 193200 303600 200100 met1 +296700 193200 324300 200100 met1 317400 193200 324300 200100 li1 ) _08053_ ( 255300 207000 262200 213900 li1 -255300 207000 269100 213900 met1 -262200 207000 269100 213900 met1 -262200 193200 269100 213900 met2 -262200 193200 269100 200100 met1 +255300 207000 262200 213900 met1 +255300 193200 262200 213900 met2 +255300 193200 262200 200100 met1 +255300 193200 269100 200100 met1 262200 193200 269100 200100 li1 ) _08054_ @@ -42045,11 +42103,10 @@ _08056_ _08057_ ( 345000 179400 351900 186300 li1 -345000 179400 358800 186300 met1 -351900 179400 358800 186300 met1 -351900 172500 358800 186300 met2 -351900 172500 358800 179400 met1 -351900 172500 386400 179400 met1 +345000 179400 351900 186300 met1 +345000 172500 351900 186300 met2 +345000 172500 351900 179400 met1 +345000 172500 386400 179400 met1 379500 172500 386400 179400 li1 ) _08058_ @@ -42091,11 +42148,11 @@ _08063_ 317400 200100 324300 207000 li1 317400 200100 324300 207000 met1 317400 200100 324300 207000 met2 -317400 200100 331200 207000 met3 -324300 200100 331200 207000 met3 -324300 200100 331200 393300 met4 -324300 386400 331200 393300 met3 -317400 386400 331200 393300 met3 +282900 200100 324300 207000 met3 +282900 200100 289800 207000 met3 +282900 200100 289800 393300 met4 +282900 386400 289800 393300 met3 +282900 386400 324300 393300 met3 317400 386400 324300 393300 met2 317400 386400 324300 393300 met1 317400 386400 324300 393300 li1 @@ -42237,11 +42294,13 @@ _08075_ ( 262200 110400 269100 117300 li1 262200 110400 269100 117300 met1 -262200 110400 269100 117300 met2 -262200 110400 269100 117300 met3 -262200 110400 269100 234600 met4 -262200 227700 269100 234600 met3 -262200 227700 296700 234600 met3 +262200 110400 269100 124200 met2 +262200 117300 269100 124200 met2 +262200 117300 282900 124200 met3 +276000 117300 282900 124200 met3 +276000 117300 282900 234600 met4 +276000 227700 282900 234600 met3 +276000 227700 296700 234600 met3 289800 227700 296700 234600 met2 289800 227700 296700 234600 met1 289800 227700 296700 234600 li1 @@ -42249,10 +42308,11 @@ _08075_ _08076_ ( 296700 227700 303600 234600 li1 -296700 227700 303600 234600 met1 -296700 220800 303600 234600 met2 -296700 220800 303600 227700 met1 -296700 220800 324300 227700 met1 +296700 227700 310500 234600 met1 +303600 227700 310500 234600 met1 +303600 220800 310500 234600 met2 +303600 220800 310500 227700 met1 +303600 220800 324300 227700 met1 317400 220800 324300 227700 li1 ) _08077_ @@ -42264,11 +42324,11 @@ _08077_ _08078_ ( 317400 303600 324300 310500 li1 -317400 303600 365700 310500 met1 -358800 303600 365700 310500 met1 -358800 220800 365700 310500 met2 -358800 220800 365700 227700 met2 -317400 220800 365700 227700 met3 +317400 303600 331200 310500 met1 +324300 303600 331200 310500 met1 +324300 220800 331200 310500 met2 +324300 220800 331200 227700 met2 +317400 220800 331200 227700 met3 317400 220800 324300 227700 met2 317400 220800 324300 227700 met1 317400 220800 324300 227700 li1 @@ -42276,10 +42336,10 @@ _08078_ _08079_ ( 317400 220800 324300 227700 li1 -317400 220800 351900 227700 met1 -345000 220800 351900 227700 met1 -345000 220800 351900 234600 met2 -345000 227700 351900 234600 met1 +317400 220800 324300 227700 met1 +317400 220800 324300 234600 met2 +317400 227700 324300 234600 met1 +317400 227700 351900 234600 met1 345000 227700 351900 234600 li1 ) _08080_ @@ -42391,25 +42451,31 @@ _08092_ _08093_ ( 310500 282900 317400 289800 li1 -234600 282900 317400 289800 met1 -234600 282900 241500 289800 met1 -234600 193200 241500 289800 met2 -234600 193200 241500 200100 met1 -234600 193200 262200 200100 met1 -255300 193200 262200 200100 met1 -255300 165600 262200 200100 met2 -255300 165600 262200 172500 met1 -255300 165600 317400 172500 met1 +310500 282900 317400 289800 met1 +310500 282900 317400 289800 met2 +262200 282900 317400 289800 met3 +262200 282900 269100 289800 met3 +262200 207000 269100 289800 met4 +262200 207000 269100 213900 met3 +262200 207000 276000 213900 met3 +269100 207000 276000 213900 met2 +269100 179400 276000 213900 met2 +269100 179400 276000 186300 met2 +269100 179400 296700 186300 met3 +289800 179400 296700 186300 met2 +289800 165600 296700 186300 met2 +289800 165600 296700 172500 met1 +289800 165600 317400 172500 met1 310500 165600 317400 172500 li1 ) _08094_ ( 324300 179400 331200 186300 li1 -324300 179400 345000 186300 met1 -338100 179400 345000 186300 met1 -338100 165600 345000 186300 met2 -338100 165600 345000 172500 met1 -338100 165600 365700 172500 met1 +324300 179400 338100 186300 met1 +331200 179400 338100 186300 met1 +331200 165600 338100 186300 met2 +331200 165600 338100 172500 met1 +331200 165600 365700 172500 met1 358800 165600 365700 172500 li1 ) _08095_ @@ -42444,11 +42510,10 @@ _08098_ _08099_ ( 345000 69000 351900 75900 li1 -345000 69000 379500 75900 met1 -372600 69000 379500 75900 met1 -372600 62100 379500 75900 met2 -372600 62100 379500 69000 met1 -372600 62100 386400 69000 met1 +345000 69000 386400 75900 met1 +379500 69000 386400 75900 met1 +379500 62100 386400 75900 met2 +379500 62100 386400 69000 met1 379500 62100 386400 69000 li1 ) _08100_ @@ -42580,21 +42645,24 @@ _08114_ _08115_ ( 317400 227700 324300 234600 li1 -317400 227700 372600 234600 met1 -365700 227700 372600 234600 met1 -365700 213900 372600 234600 met2 -365700 213900 372600 220800 met1 +317400 227700 358800 234600 met1 +351900 227700 358800 234600 met1 +351900 213900 358800 234600 met2 +351900 213900 358800 220800 met1 +351900 213900 372600 220800 met1 365700 213900 372600 220800 li1 ) _08116_ ( 262200 117300 269100 124200 li1 262200 117300 269100 124200 met1 -262200 117300 269100 124200 met2 -262200 117300 269100 124200 met3 -262200 117300 269100 234600 met4 -262200 227700 269100 234600 met3 -262200 227700 296700 234600 met3 +262200 117300 269100 158700 met2 +262200 151800 269100 158700 met2 +262200 151800 289800 158700 met3 +282900 151800 289800 158700 met3 +282900 151800 289800 234600 met4 +282900 227700 289800 234600 met3 +282900 227700 296700 234600 met3 289800 227700 296700 234600 met2 289800 227700 296700 234600 met1 289800 227700 296700 234600 li1 @@ -42608,11 +42676,10 @@ _08117_ _08118_ ( 317400 289800 324300 296700 li1 -317400 289800 379500 296700 met1 -372600 289800 379500 296700 met1 -372600 282900 379500 296700 met2 -372600 282900 379500 289800 met1 -372600 282900 386400 289800 met1 +317400 289800 386400 296700 met1 +379500 289800 386400 296700 met1 +379500 282900 386400 296700 met2 +379500 282900 386400 289800 met1 379500 282900 386400 289800 li1 ) _08119_ @@ -42730,15 +42797,11 @@ _08131_ _08132_ ( 317400 234600 324300 241500 li1 -317400 234600 331200 241500 met1 -324300 234600 331200 241500 met1 -324300 193200 331200 241500 met2 -324300 193200 331200 200100 met2 -324300 193200 338100 200100 met3 -331200 193200 338100 200100 met2 -331200 186300 338100 200100 met2 -331200 186300 338100 193200 met1 -317400 186300 338100 193200 met1 +303600 234600 324300 241500 met1 +303600 234600 310500 241500 met1 +303600 186300 310500 241500 met2 +303600 186300 310500 193200 met1 +303600 186300 324300 193200 met1 317400 186300 324300 193200 li1 ) _08133_ @@ -42752,14 +42815,11 @@ _08133_ _08134_ ( 310500 255300 317400 262200 li1 -310500 255300 317400 262200 met1 -310500 241500 317400 262200 met2 -310500 241500 317400 248400 met1 -303600 241500 317400 248400 met1 -303600 241500 310500 248400 met1 -303600 186300 310500 248400 met2 -303600 186300 310500 193200 met1 -303600 186300 324300 193200 met1 +310500 255300 331200 262200 met1 +324300 255300 331200 262200 met1 +324300 186300 331200 262200 met2 +324300 186300 331200 193200 met1 +317400 186300 331200 193200 met1 317400 186300 324300 193200 li1 ) _08135_ @@ -42792,13 +42852,9 @@ _08138_ ( 234600 172500 241500 179400 li1 234600 172500 241500 179400 met1 -234600 172500 241500 179400 met2 -234600 172500 241500 179400 met3 -234600 172500 241500 193200 met4 -234600 186300 241500 193200 met3 -234600 186300 324300 193200 met3 -317400 186300 324300 193200 met2 -317400 186300 324300 193200 met1 +234600 172500 241500 193200 met2 +234600 186300 241500 193200 met1 +234600 186300 324300 193200 met1 317400 186300 324300 193200 li1 ) _08139_ @@ -42889,11 +42945,11 @@ _08150_ 317400 193200 324300 200100 li1 317400 193200 324300 200100 met1 317400 193200 324300 200100 met2 -282900 193200 324300 200100 met3 -282900 193200 289800 200100 met3 -282900 193200 289800 379500 met4 -282900 372600 289800 379500 met3 -282900 372600 324300 379500 met3 +234600 193200 324300 200100 met3 +234600 193200 241500 200100 met3 +234600 193200 241500 379500 met4 +234600 372600 241500 379500 met3 +234600 372600 324300 379500 met3 317400 372600 324300 379500 met2 317400 372600 324300 379500 met1 317400 372600 324300 379500 li1 @@ -42946,10 +43002,13 @@ _08156_ ( 262200 131100 269100 138000 li1 262200 131100 269100 138000 met1 -262200 131100 269100 220800 met2 -262200 213900 269100 220800 met2 -262200 213900 296700 220800 met3 -289800 213900 296700 220800 met2 +262200 131100 269100 138000 met2 +262200 131100 269100 138000 met3 +262200 131100 269100 213900 met4 +262200 207000 269100 213900 met3 +262200 207000 296700 213900 met3 +289800 207000 296700 213900 met2 +289800 207000 296700 220800 met2 289800 213900 296700 220800 met1 289800 213900 296700 220800 li1 ) @@ -42974,11 +43033,11 @@ _08158_ _08159_ ( 310500 310500 317400 317400 li1 -310500 310500 365700 317400 met1 -358800 310500 365700 317400 met1 -358800 310500 365700 324300 met2 -358800 317400 365700 324300 met1 -358800 317400 372600 324300 met1 +310500 310500 358800 317400 met1 +351900 310500 358800 317400 met1 +351900 310500 358800 324300 met2 +351900 317400 358800 324300 met1 +351900 317400 372600 324300 met1 365700 317400 372600 324300 li1 ) _08160_ @@ -43011,9 +43070,12 @@ _08163_ ( 303600 220800 310500 227700 li1 303600 220800 310500 227700 met1 -303600 193200 310500 227700 met2 -303600 193200 310500 200100 met1 -303600 193200 317400 200100 met1 +303600 200100 310500 227700 met2 +303600 200100 310500 207000 met2 +303600 200100 317400 207000 met3 +310500 200100 317400 207000 met2 +310500 193200 317400 207000 met2 +310500 193200 317400 200100 met1 310500 193200 317400 200100 li1 ) _08164_ @@ -43074,13 +43136,11 @@ _08171_ 324300 158700 331200 165600 li1 324300 158700 331200 165600 met1 324300 158700 331200 165600 met2 -324300 158700 345000 165600 met3 -338100 158700 345000 165600 met3 -338100 158700 345000 193200 met4 -338100 186300 345000 193200 met3 -338100 186300 358800 193200 met3 -351900 186300 358800 193200 met2 -351900 186300 358800 282900 met2 +324300 158700 358800 165600 met3 +351900 158700 358800 165600 met3 +351900 158700 358800 282900 met4 +351900 276000 358800 282900 met3 +351900 276000 358800 282900 met2 351900 276000 358800 282900 met1 351900 276000 358800 282900 li1 ) @@ -43109,11 +43169,15 @@ _08174_ _08175_ ( 317400 269100 324300 276000 li1 -262200 269100 324300 276000 met1 -262200 269100 269100 276000 met1 -262200 158700 269100 276000 met2 -262200 158700 269100 165600 met1 -262200 158700 324300 165600 met1 +317400 269100 324300 276000 met1 +317400 269100 324300 276000 met2 +317400 269100 338100 276000 met3 +331200 269100 338100 276000 met3 +331200 158700 338100 276000 met4 +331200 158700 338100 165600 met3 +317400 158700 338100 165600 met3 +317400 158700 324300 165600 met2 +317400 158700 324300 165600 met1 317400 158700 324300 165600 li1 ) _08176_ @@ -44653,32 +44717,33 @@ _08330_ 69000 255300 75900 269100 met2 69000 262200 75900 269100 met1 69000 262200 75900 269100 li1 -69000 262200 131100 269100 met1 -124200 262200 131100 269100 met1 -124200 262200 131100 289800 met2 +69000 262200 75900 282900 met2 +69000 276000 75900 282900 met1 +69000 276000 131100 282900 met1 +193200 276000 200100 282900 li1 +193200 276000 200100 282900 met1 +193200 262200 200100 282900 met2 +193200 262200 200100 269100 met1 +193200 262200 200100 269100 li1 +124200 276000 131100 282900 met1 +124200 276000 131100 289800 met2 124200 282900 131100 289800 met1 124200 282900 131100 289800 li1 -124200 262200 200100 269100 met1 -193200 262200 200100 269100 li1 -193200 262200 200100 269100 met1 -193200 262200 200100 282900 met2 -193200 276000 200100 282900 met1 -193200 276000 200100 282900 li1 +124200 276000 200100 282900 met1 ) _08331_ ( 110400 324300 117300 331200 li1 110400 324300 124200 331200 met1 -110400 282900 117300 289800 li1 -110400 282900 124200 289800 met1 -117300 282900 124200 289800 met1 -117300 282900 124200 331200 met2 -117300 324300 124200 331200 met1 117300 324300 124200 331200 li1 -117300 282900 131100 289800 met1 +110400 282900 117300 289800 li1 +110400 282900 131100 289800 met1 124200 282900 131100 289800 li1 -117300 324300 131100 331200 met1 +124200 282900 131100 289800 met1 +124200 282900 131100 331200 met2 +124200 324300 131100 331200 met1 124200 324300 131100 331200 li1 +117300 324300 131100 331200 met1 ) _08332_ ( @@ -44742,11 +44807,15 @@ _08336_ 55200 255300 62100 262200 li1 55200 255300 75900 262200 met1 69000 255300 75900 262200 li1 -69000 255300 82800 262200 met1 -75900 255300 82800 262200 met1 -75900 255300 82800 289800 met2 -75900 282900 82800 289800 met1 -75900 282900 131100 289800 met1 +69000 255300 75900 262200 met1 +69000 255300 75900 262200 met2 +69000 255300 82800 262200 met3 +75900 255300 82800 262200 met3 +75900 255300 82800 289800 met4 +75900 282900 82800 289800 met3 +75900 282900 131100 289800 met3 +124200 282900 131100 289800 met2 +124200 282900 131100 289800 met1 124200 282900 131100 289800 li1 186300 282900 193200 289800 li1 186300 282900 193200 289800 met1 @@ -44988,12 +45057,10 @@ _08352_ 75900 220800 82800 227700 li1 75900 220800 82800 227700 met1 75900 220800 82800 262200 met2 -75900 255300 82800 262200 met2 -75900 255300 131100 262200 met3 -124200 255300 131100 262200 met3 -124200 255300 131100 282900 met4 -124200 276000 131100 282900 met3 -124200 276000 131100 282900 met2 +75900 255300 82800 262200 met1 +75900 255300 131100 262200 met1 +124200 255300 131100 262200 met1 +124200 255300 131100 282900 met2 124200 276000 131100 282900 met1 124200 276000 131100 282900 li1 200100 276000 207000 282900 li1 @@ -45005,19 +45072,20 @@ _08352_ ) _08353_ ( -103500 276000 131100 282900 met1 124200 276000 131100 282900 li1 -103500 276000 110400 282900 li1 -103500 276000 110400 282900 met1 -103500 276000 110400 303600 met2 -103500 296700 110400 303600 met1 +124200 276000 131100 282900 met1 +124200 276000 131100 303600 met2 +124200 296700 131100 303600 met1 +124200 296700 165600 303600 met1 103500 296700 110400 303600 li1 -103500 296700 165600 303600 met1 +103500 296700 131100 303600 met1 158700 296700 165600 303600 li1 158700 296700 165600 303600 met1 158700 289800 165600 303600 met2 158700 289800 165600 296700 met1 158700 289800 165600 296700 li1 +103500 276000 110400 282900 li1 +103500 276000 131100 282900 met1 ) _08354_ ( @@ -45096,23 +45164,28 @@ _08359_ 82800 207000 89700 213900 li1 82800 207000 89700 213900 met1 82800 207000 89700 213900 met2 -82800 207000 207000 213900 met3 -200100 207000 207000 213900 met2 -200100 207000 207000 220800 met2 -200100 213900 207000 220800 met1 -200100 213900 207000 220800 li1 +82800 207000 89700 213900 met3 +82800 207000 89700 262200 met4 +82800 255300 89700 262200 met3 +82800 255300 117300 262200 met3 +110400 255300 117300 262200 met2 +110400 255300 117300 282900 met2 +110400 276000 117300 282900 met1 +110400 276000 124200 282900 met1 75900 207000 82800 213900 li1 75900 207000 82800 213900 met1 75900 207000 82800 213900 met2 75900 207000 89700 213900 met3 -117300 282900 124200 289800 li1 -117300 282900 124200 289800 met1 -117300 276000 124200 289800 met2 -117300 276000 124200 282900 met1 -117300 276000 207000 282900 met1 200100 276000 207000 282900 li1 200100 276000 207000 282900 met1 200100 213900 207000 282900 met2 +200100 213900 207000 220800 met1 +200100 213900 207000 220800 li1 +117300 276000 124200 282900 met1 +117300 276000 124200 289800 met2 +117300 282900 124200 289800 met1 +117300 282900 124200 289800 li1 +117300 276000 207000 282900 met1 ) _08360_ ( @@ -45129,11 +45202,11 @@ _08360_ 165600 296700 172500 310500 met2 165600 303600 172500 310500 met1 165600 303600 172500 310500 li1 -117300 289800 124200 296700 met1 -117300 289800 124200 303600 met2 -117300 296700 124200 303600 met1 -117300 296700 172500 303600 met1 +117300 289800 172500 296700 met1 +165600 289800 172500 296700 met1 +165600 289800 172500 303600 met2 117300 282900 124200 296700 met2 +117300 289800 124200 296700 met1 ) _08361_ ( @@ -45293,18 +45366,20 @@ _08371_ 96600 227700 103500 241500 met2 96600 227700 103500 234600 met1 96600 227700 103500 234600 li1 +193200 255300 200100 262200 li1 +193200 255300 200100 262200 met1 +193200 234600 200100 262200 met2 +193200 234600 200100 241500 met1 193200 234600 207000 241500 met1 200100 234600 207000 241500 li1 -151800 234600 158700 241500 met1 -151800 234600 158700 269100 met2 +151800 255300 158700 262200 met1 +151800 255300 158700 269100 met2 151800 262200 158700 269100 met1 151800 262200 158700 269100 li1 -151800 234600 200100 241500 met1 +151800 255300 200100 262200 met1 96600 234600 158700 241500 met1 -193200 234600 200100 241500 met1 -193200 234600 200100 262200 met2 -193200 255300 200100 262200 met1 -193200 255300 200100 262200 li1 +151800 234600 158700 241500 met1 +151800 234600 158700 262200 met2 ) _08372_ ( @@ -46540,12 +46615,10 @@ _08493_ ( 220800 131100 227700 138000 li1 220800 131100 227700 138000 met1 -220800 131100 227700 138000 met2 -220800 131100 227700 138000 met3 -220800 131100 227700 262200 met4 -220800 255300 227700 262200 met3 -200100 255300 227700 262200 met3 -200100 255300 207000 262200 met2 +220800 131100 227700 262200 met2 +220800 255300 227700 262200 met1 +200100 255300 227700 262200 met1 +200100 255300 207000 262200 met1 200100 255300 207000 400200 met2 200100 393300 207000 400200 met1 200100 393300 276000 400200 met1 @@ -48064,9 +48137,9 @@ _08655_ 262200 317400 269100 331200 met2 262200 317400 269100 324300 met1 262200 317400 269100 324300 li1 -262200 324300 296700 331200 met1 -289800 324300 296700 331200 met1 -289800 324300 296700 345000 met2 +262200 324300 269100 345000 met2 +262200 338100 269100 345000 met1 +262200 338100 296700 345000 met1 289800 365700 296700 400200 met2 289800 393300 296700 400200 met1 289800 393300 303600 400200 met1 @@ -48121,17 +48194,17 @@ _08659_ ) _08660_ ( +276000 338100 282900 345000 li1 276000 338100 296700 345000 met1 289800 338100 296700 345000 met1 289800 338100 296700 358800 met2 289800 351900 296700 358800 met1 289800 351900 296700 358800 li1 269100 317400 276000 324300 li1 -269100 317400 282900 324300 met1 -276000 317400 282900 324300 met1 -276000 317400 282900 345000 met2 -276000 338100 282900 345000 met1 -276000 338100 282900 345000 li1 +269100 317400 276000 324300 met1 +269100 317400 276000 345000 met2 +269100 338100 276000 345000 met1 +269100 338100 282900 345000 met1 262200 317400 269100 324300 li1 262200 317400 276000 324300 met1 289800 351900 296700 393300 met2 @@ -48200,15 +48273,16 @@ _08665_ ) _08666_ ( -296700 393300 303600 400200 li1 -296700 393300 303600 400200 met1 -296700 386400 303600 400200 met2 -296700 386400 303600 393300 met1 -296700 386400 310500 393300 met1 303600 386400 310500 393300 li1 -296700 393300 303600 407100 met2 -296700 400200 303600 407100 met1 +303600 386400 310500 393300 met1 +303600 386400 310500 400200 met2 +303600 393300 310500 400200 met1 +303600 393300 310500 407100 met2 +303600 400200 310500 407100 met1 +296700 400200 310500 407100 met1 296700 400200 303600 407100 li1 +296700 393300 303600 400200 li1 +296700 393300 310500 400200 met1 ) _08667_ ( @@ -48364,15 +48438,19 @@ _08678_ ) _08679_ ( -255300 255300 262200 393300 met2 -255300 386400 262200 393300 met1 -255300 386400 303600 393300 met1 +282900 255300 289800 262200 met3 +282900 255300 289800 393300 met4 +282900 386400 289800 393300 met3 +282900 386400 303600 393300 met3 +296700 386400 303600 393300 met2 +296700 386400 303600 393300 met1 296700 386400 303600 393300 li1 255300 248400 262200 255300 li1 255300 248400 262200 255300 met1 255300 248400 262200 262200 met2 255300 255300 262200 262200 met2 -255300 255300 324300 262200 met3 +255300 255300 289800 262200 met3 +282900 255300 324300 262200 met3 317400 255300 324300 262200 met2 317400 255300 324300 262200 met1 317400 255300 324300 262200 li1 @@ -48418,9 +48496,9 @@ _08682_ 303600 365700 310500 393300 met2 303600 310500 317400 317400 met1 310500 310500 317400 317400 li1 -262200 296700 269100 317400 met2 -262200 310500 269100 317400 met1 -262200 310500 310500 317400 met1 +262200 296700 310500 303600 met1 +303600 296700 310500 303600 met1 +303600 296700 310500 317400 met2 ) _08683_ ( @@ -48483,20 +48561,20 @@ _08689_ ( 262200 317400 269100 324300 li1 262200 317400 269100 324300 met1 -262200 255300 269100 324300 met2 -262200 255300 269100 262200 met1 -241500 255300 248400 262200 li1 -241500 255300 248400 262200 met1 -241500 241500 248400 262200 met2 +262200 248400 269100 324300 met2 +262200 248400 269100 255300 met1 +262200 248400 269100 255300 li1 +241500 248400 248400 255300 met1 +241500 241500 248400 255300 met2 241500 241500 248400 248400 met1 241500 241500 248400 248400 li1 262200 317400 269100 331200 met2 262200 324300 269100 331200 met1 262200 324300 269100 331200 li1 -241500 255300 269100 262200 met1 -262200 248400 269100 262200 met2 -262200 248400 269100 255300 met1 -262200 248400 269100 255300 li1 +241500 248400 248400 262200 met2 +241500 255300 248400 262200 met1 +241500 255300 248400 262200 li1 +241500 248400 269100 255300 met1 ) _08690_ ( @@ -48538,17 +48616,19 @@ _08693_ 262200 282900 269100 289800 li1 262200 282900 276000 289800 met1 234600 241500 241500 248400 li1 -234600 241500 276000 248400 met1 -269100 241500 276000 248400 met1 -269100 241500 276000 255300 met2 -269100 248400 276000 255300 met1 -269100 248400 276000 255300 li1 +234600 241500 269100 248400 met1 +262200 241500 269100 248400 met1 +262200 241500 269100 255300 met2 +262200 248400 269100 255300 met1 +262200 248400 276000 255300 met1 269100 282900 276000 289800 met1 269100 282900 276000 296700 met2 269100 289800 276000 296700 met1 269100 289800 276000 296700 li1 227700 241500 234600 248400 li1 227700 241500 241500 248400 met1 +269100 248400 276000 255300 li1 +269100 248400 276000 255300 met1 269100 248400 276000 289800 met2 ) _08694_ @@ -48615,9 +48695,9 @@ _08698_ 262200 296700 269100 303600 li1 220800 241500 227700 248400 li1 220800 241500 234600 248400 met1 -227700 241500 234600 282900 met2 -227700 276000 234600 282900 met1 -227700 276000 262200 282900 met1 +227700 241500 262200 248400 met1 +255300 241500 262200 248400 met1 +255300 241500 262200 282900 met2 ) _08699_ ( @@ -48657,23 +48737,23 @@ _08701_ ) _08702_ ( -255300 276000 262200 282900 met1 -255300 269100 262200 282900 met2 -255300 269100 262200 276000 met1 -255300 269100 262200 276000 li1 234600 207000 241500 213900 li1 -234600 207000 241500 213900 met1 -234600 207000 241500 282900 met2 -234600 276000 241500 282900 met1 -234600 276000 248400 282900 met1 -241500 276000 248400 282900 li1 +234600 207000 248400 213900 met1 +241500 207000 248400 213900 met1 +241500 207000 248400 276000 met2 +241500 269100 248400 276000 met1 255300 289800 262200 296700 li1 255300 289800 262200 296700 met1 255300 282900 262200 296700 met2 255300 282900 262200 289800 met1 255300 282900 262200 289800 li1 -241500 276000 262200 282900 met1 -255300 276000 262200 289800 met2 +241500 269100 262200 276000 met1 +255300 269100 262200 276000 li1 +255300 269100 262200 276000 met1 +255300 269100 262200 289800 met2 +241500 269100 248400 282900 met2 +241500 276000 248400 282900 met1 +241500 276000 248400 282900 li1 ) _08703_ ( @@ -48804,16 +48884,16 @@ _08718_ ) _08719_ ( -220800 269100 227700 276000 met1 -220800 262200 227700 276000 met2 -220800 262200 227700 269100 met1 +227700 269100 234600 276000 met1 +227700 262200 234600 276000 met2 +227700 262200 234600 269100 met1 +220800 262200 234600 269100 met1 220800 262200 227700 269100 li1 213900 269100 220800 276000 li1 -213900 269100 227700 276000 met1 -220800 269100 227700 282900 met2 -220800 276000 227700 282900 met1 -220800 276000 234600 282900 met1 +213900 269100 234600 276000 met1 227700 276000 234600 282900 li1 +227700 276000 234600 282900 met1 +227700 269100 234600 282900 met2 ) _08720_ ( @@ -49033,21 +49113,21 @@ _08745_ _08746_ ( 213900 248400 220800 255300 li1 -213900 248400 234600 255300 met1 -227700 248400 234600 255300 met1 -227700 248400 234600 303600 met2 -227700 296700 234600 303600 met1 +213900 248400 220800 255300 met1 +213900 248400 220800 303600 met2 +213900 296700 220800 303600 met1 +213900 296700 234600 303600 met1 227700 296700 234600 303600 li1 -227700 296700 234600 317400 met2 -227700 310500 234600 317400 met1 -227700 310500 248400 317400 met1 +227700 296700 248400 303600 met1 +241500 296700 248400 303600 met1 +241500 296700 248400 317400 met2 +241500 310500 248400 317400 met1 +241500 310500 248400 317400 li1 241500 317400 255300 324300 met1 248400 317400 255300 324300 li1 241500 317400 248400 324300 li1 241500 317400 248400 324300 met1 241500 310500 248400 324300 met2 -241500 310500 248400 317400 met1 -241500 310500 248400 317400 li1 ) _08747_ ( @@ -49466,20 +49546,20 @@ _08788_ ) _08789_ ( -227700 345000 241500 351900 met1 +220800 345000 241500 351900 met1 234600 345000 241500 351900 li1 -227700 345000 234600 351900 met1 -227700 345000 234600 358800 met2 -227700 351900 234600 358800 met1 -220800 351900 234600 358800 met1 +220800 345000 227700 351900 met1 +220800 345000 227700 358800 met2 +220800 351900 227700 358800 met1 220800 351900 227700 358800 li1 213900 345000 220800 351900 li1 -213900 345000 234600 351900 met1 +213900 345000 227700 351900 met1 +227700 338100 234600 345000 li1 227700 338100 241500 345000 met1 234600 338100 241500 345000 li1 -227700 338100 234600 351900 met2 -227700 338100 234600 345000 met1 -227700 338100 234600 345000 li1 +220800 338100 227700 351900 met2 +220800 338100 227700 345000 met1 +220800 338100 234600 345000 met1 ) _08790_ ( @@ -49702,22 +49782,21 @@ _08817_ ) _08818_ ( -200100 262200 213900 269100 met1 -207000 262200 213900 269100 met1 -207000 255300 213900 269100 met2 -207000 255300 213900 262200 met1 207000 255300 213900 262200 li1 +207000 255300 213900 262200 met1 +207000 255300 213900 269100 met2 +207000 262200 213900 269100 met1 193200 269100 200100 276000 li1 -193200 269100 207000 276000 met1 -200100 269100 207000 276000 met1 -200100 262200 207000 276000 met2 -200100 262200 207000 269100 met1 -200100 262200 207000 269100 li1 +193200 269100 213900 276000 met1 +207000 269100 213900 276000 met1 +207000 262200 213900 276000 met2 200100 193200 207000 200100 li1 200100 193200 213900 200100 met1 207000 193200 213900 262200 met2 207000 193200 213900 200100 met1 207000 193200 213900 200100 li1 +200100 262200 207000 269100 li1 +200100 262200 213900 269100 met1 ) _08819_ ( @@ -49851,12 +49930,10 @@ _08829_ 75900 55200 82800 62100 li1 75900 55200 82800 62100 met1 75900 55200 82800 75900 met2 -75900 69000 82800 75900 met2 -75900 69000 193200 75900 met3 -186300 69000 193200 75900 met3 -186300 69000 193200 186300 met4 -186300 179400 193200 186300 met3 -186300 179400 193200 186300 met2 +75900 69000 82800 75900 met1 +75900 69000 193200 75900 met1 +186300 69000 193200 75900 met1 +186300 69000 193200 186300 met2 186300 179400 193200 186300 met1 186300 179400 193200 186300 li1 ) @@ -49904,11 +49981,15 @@ _08833_ 186300 34500 193200 48300 met2 186300 34500 193200 41400 met1 186300 34500 193200 41400 li1 -186300 179400 193200 262200 met4 -186300 255300 193200 262200 met3 -144900 255300 193200 262200 met3 -144900 255300 151800 262200 met2 -144900 255300 151800 262200 met1 +172500 179400 179400 220800 met2 +172500 213900 179400 220800 met2 +172500 213900 179400 220800 met3 +172500 213900 179400 248400 met4 +172500 241500 179400 248400 met3 +172500 241500 179400 248400 met2 +172500 241500 179400 262200 met2 +172500 255300 179400 262200 met1 +144900 255300 179400 262200 met1 144900 255300 151800 262200 li1 62100 172500 69000 179400 li1 62100 172500 69000 179400 met1 @@ -49916,17 +49997,20 @@ _08833_ 62100 172500 69000 179400 met3 62100 172500 69000 186300 met4 62100 179400 69000 186300 met4 -62100 179400 193200 186300 met5 -186300 179400 193200 186300 met4 -186300 179400 193200 186300 met3 -186300 179400 193200 186300 met2 -186300 179400 193200 186300 met1 -186300 179400 193200 186300 li1 +62100 179400 179400 186300 met5 +172500 179400 179400 186300 met4 +172500 179400 179400 186300 met3 +172500 179400 179400 186300 met2 186300 41400 193200 48300 li1 186300 41400 193200 48300 met1 186300 41400 193200 48300 met2 186300 41400 193200 48300 met3 186300 41400 193200 186300 met4 +186300 179400 193200 186300 met3 +186300 179400 193200 186300 met2 +186300 179400 193200 186300 met1 +186300 179400 193200 186300 li1 +172500 179400 193200 186300 met3 ) _08834_ ( @@ -49941,21 +50025,21 @@ _08834_ ) _08835_ ( -193200 186300 207000 193200 met1 200100 193200 207000 200100 met1 200100 193200 207000 220800 met2 200100 213900 207000 220800 met1 200100 213900 207000 220800 li1 -193200 186300 200100 193200 li1 -193200 186300 200100 193200 met1 -193200 172500 200100 193200 met2 -193200 172500 200100 179400 met1 +200100 186300 207000 193200 li1 +200100 186300 207000 193200 met1 +200100 172500 207000 193200 met2 +200100 172500 207000 179400 met1 +193200 172500 207000 179400 met1 193200 172500 200100 179400 li1 200100 193200 213900 200100 met1 207000 193200 213900 200100 li1 -200100 186300 207000 193200 li1 -200100 186300 207000 193200 met1 200100 186300 207000 200100 met2 +193200 186300 200100 193200 li1 +193200 186300 207000 193200 met1 ) _08836_ ( @@ -50350,10 +50434,13 @@ clknet_leaf_102_usb_clk 172500 227700 179400 241500 met2 172500 241500 179400 248400 li1 172500 241500 179400 248400 met1 -172500 241500 179400 269100 met2 -172500 262200 179400 269100 met1 +172500 241500 179400 255300 met2 +172500 248400 179400 255300 met1 172500 234600 179400 248400 met2 +172500 248400 179400 269100 met2 +172500 262200 179400 269100 met1 158700 262200 179400 269100 met1 +158700 262200 165600 269100 li1 165600 241500 179400 248400 met1 165600 241500 172500 248400 li1 165600 282900 172500 289800 li1 @@ -50371,10 +50458,7 @@ clknet_leaf_102_usb_clk 186300 262200 193200 269100 li1 172500 276000 186300 282900 met1 179400 276000 186300 282900 li1 -158700 262200 165600 269100 li1 -158700 262200 165600 269100 met1 -158700 248400 165600 269100 met2 -158700 248400 165600 255300 met1 +158700 248400 179400 255300 met1 158700 248400 165600 255300 li1 179400 276000 193200 282900 met1 186300 276000 193200 282900 li1 @@ -50445,82 +50529,79 @@ clknet_leaf_105_usb_clk 144900 179400 151800 200100 met2 144900 179400 151800 186300 met1 144900 179400 151800 186300 li1 -158700 207000 165600 213900 li1 -158700 207000 165600 213900 met1 -158700 207000 165600 220800 met2 -158700 213900 165600 220800 met1 -131100 213900 138000 220800 li1 -131100 213900 165600 220800 met1 +151800 207000 165600 213900 met1 +151800 207000 158700 213900 li1 +165600 227700 172500 234600 li1 +158700 227700 172500 234600 met1 +158700 227700 165600 234600 met1 +158700 220800 165600 234600 met2 +158700 220800 165600 227700 met1 +158700 220800 165600 227700 li1 +144900 234600 151800 241500 li1 +144900 234600 151800 241500 met1 +144900 213900 151800 241500 met2 +144900 213900 151800 220800 met1 138000 241500 144900 248400 li1 138000 241500 151800 248400 met1 -158700 241500 165600 248400 met1 -158700 241500 165600 262200 met2 -158700 255300 165600 262200 met1 -151800 255300 165600 262200 met1 +151800 241500 158700 248400 li1 +151800 241500 158700 248400 met1 +151800 241500 158700 262200 met2 +151800 255300 158700 262200 met1 151800 255300 158700 262200 li1 -144900 241500 151800 248400 met1 -144900 234600 151800 248400 met2 -144900 234600 151800 241500 met1 -144900 234600 151800 241500 li1 -158700 227700 172500 234600 met1 -165600 227700 172500 234600 li1 +144900 241500 158700 248400 met1 +131100 213900 138000 220800 li1 +131100 213900 151800 220800 met1 138000 193200 151800 200100 met1 138000 193200 144900 200100 li1 -144900 193200 165600 200100 met1 -158700 193200 165600 200100 met1 -158700 193200 165600 213900 met2 -158700 220800 165600 227700 li1 -158700 220800 165600 227700 met1 -158700 220800 165600 234600 met2 -158700 227700 165600 234600 met1 -144900 241500 158700 248400 met1 -151800 241500 158700 248400 li1 -158700 213900 165600 227700 met2 -151800 241500 165600 248400 met1 -158700 227700 165600 248400 met2 -151800 207000 158700 213900 li1 -151800 207000 165600 213900 met1 +144900 207000 151800 213900 met1 +144900 207000 151800 220800 met2 +144900 193200 151800 213900 met2 +158700 207000 165600 213900 li1 +158700 207000 165600 213900 met1 +158700 207000 165600 227700 met2 +144900 234600 151800 248400 met2 +144900 241500 151800 248400 met1 +144900 207000 158700 213900 met1 ) clknet_leaf_106_usb_clk ( 151800 151800 165600 158700 met1 151800 151800 158700 158700 li1 144900 172500 151800 179400 li1 -144900 172500 151800 179400 met1 -144900 158700 151800 179400 met2 -144900 158700 151800 165600 met1 -144900 158700 165600 165600 met1 +144900 172500 165600 179400 met1 +158700 172500 165600 179400 met1 +158700 158700 165600 179400 met2 +158700 158700 165600 165600 met1 +158700 158700 165600 165600 li1 158700 138000 172500 144900 met1 165600 138000 172500 144900 li1 -144900 138000 151800 144900 li1 -144900 138000 151800 144900 met1 -144900 117300 151800 144900 met2 -144900 117300 151800 124200 met1 -144900 117300 151800 124200 li1 +158700 131100 165600 138000 li1 +158700 131100 165600 138000 met1 +158700 117300 165600 138000 met2 +158700 117300 165600 124200 met1 +158700 117300 165600 124200 li1 +158700 138000 165600 144900 met1 +158700 131100 165600 144900 met2 144900 110400 151800 117300 met1 144900 103500 151800 117300 met2 144900 103500 151800 110400 met1 144900 103500 151800 110400 li1 138000 110400 144900 117300 li1 138000 110400 151800 117300 met1 +144900 117300 165600 124200 met1 151800 131100 165600 138000 met1 151800 131100 158700 138000 li1 -158700 158700 165600 165600 li1 -158700 158700 165600 165600 met1 158700 151800 165600 165600 met2 158700 151800 165600 158700 met1 158700 144900 165600 151800 li1 158700 144900 165600 151800 met1 158700 138000 165600 151800 met2 -158700 138000 165600 144900 met1 158700 144900 165600 158700 met2 +144900 117300 151800 124200 li1 +144900 117300 151800 124200 met1 144900 110400 151800 124200 met2 +144900 138000 151800 144900 li1 144900 138000 165600 144900 met1 -144900 117300 165600 124200 met1 -158700 117300 165600 124200 li1 -158700 131100 165600 144900 met2 -158700 131100 165600 138000 met1 -158700 131100 165600 138000 li1 ) clknet_leaf_107_usb_clk ( @@ -50601,35 +50682,38 @@ clknet_leaf_108_usb_clk ) clknet_leaf_109_usb_clk ( +158700 75900 165600 82800 li1 +158700 75900 172500 82800 met1 158700 89700 165600 96600 met1 +158700 82800 165600 96600 met2 +158700 82800 165600 89700 met1 +158700 82800 172500 89700 met1 +165600 69000 172500 75900 li1 +165600 69000 172500 75900 met1 +165600 69000 172500 82800 met2 +165600 75900 172500 82800 met1 +165600 75900 172500 82800 li1 +172500 82800 179400 89700 li1 +172500 82800 186300 89700 met1 +179400 82800 186300 89700 li1 +165600 69000 179400 75900 met1 +172500 62100 179400 69000 li1 +172500 62100 179400 69000 met1 +172500 62100 179400 75900 met2 +172500 69000 179400 75900 met1 +179400 82800 193200 89700 met1 158700 89700 165600 103500 met2 158700 96600 165600 103500 met1 158700 96600 165600 103500 li1 +151800 89700 158700 96600 li1 +151800 89700 165600 96600 met1 +165600 82800 179400 89700 met1 186300 89700 193200 96600 li1 186300 89700 193200 96600 met1 186300 89700 193200 103500 met2 186300 96600 193200 103500 met1 179400 96600 193200 103500 met1 179400 96600 186300 103500 li1 -165600 69000 179400 75900 met1 -172500 62100 179400 69000 li1 -172500 62100 179400 69000 met1 -172500 62100 179400 75900 met2 -172500 69000 179400 75900 met1 -179400 82800 193200 89700 met1 -179400 82800 186300 89700 li1 -158700 75900 165600 96600 met2 -158700 75900 165600 82800 met1 -158700 75900 165600 82800 li1 -151800 89700 158700 96600 li1 -151800 89700 165600 96600 met1 -165600 69000 172500 75900 li1 -165600 69000 172500 75900 met1 -165600 69000 172500 82800 met2 -165600 75900 172500 82800 met1 -165600 75900 172500 82800 li1 -172500 82800 186300 89700 met1 -172500 82800 179400 89700 li1 158700 103500 165600 110400 li1 158700 103500 165600 110400 met1 158700 103500 165600 117300 met2 @@ -50639,10 +50723,10 @@ clknet_leaf_109_usb_clk 186300 82800 193200 89700 li1 186300 82800 193200 89700 met1 186300 82800 193200 96600 met2 -158700 96600 186300 103500 met1 172500 69000 186300 75900 met1 179400 69000 186300 75900 li1 -158700 75900 172500 82800 met1 +165600 82800 172500 89700 met1 +165600 75900 172500 89700 met2 ) clknet_leaf_10_app_clk ( @@ -50805,15 +50889,11 @@ clknet_leaf_111_usb_clk ) clknet_leaf_112_usb_clk ( -131100 41400 138000 48300 li1 -131100 41400 138000 48300 met1 -131100 13800 138000 48300 met2 -131100 13800 138000 20700 met1 -131100 13800 151800 20700 met1 +144900 48300 151800 55200 met1 +144900 13800 151800 55200 met2 +144900 13800 151800 20700 met1 144900 13800 151800 20700 li1 -131100 48300 138000 55200 li1 -131100 48300 138000 55200 met1 -131100 41400 138000 55200 met2 +131100 48300 151800 55200 met1 144900 69000 151800 75900 li1 144900 69000 158700 75900 met1 151800 69000 158700 75900 li1 @@ -50833,7 +50913,12 @@ clknet_leaf_112_usb_clk 158700 62100 165600 69000 li1 151800 48300 172500 55200 met1 165600 48300 172500 55200 li1 -131100 48300 158700 55200 met1 +131100 48300 138000 55200 li1 +131100 48300 138000 55200 met1 +131100 41400 138000 55200 met2 +131100 41400 138000 48300 met1 +131100 41400 138000 48300 li1 +144900 48300 158700 55200 met1 ) clknet_leaf_113_usb_clk ( @@ -51288,19 +51373,20 @@ clknet_leaf_12_usb_clk 96600 234600 103500 255300 met2 96600 248400 103500 255300 met1 96600 248400 103500 255300 li1 -82800 255300 96600 262200 met1 +96600 255300 103500 262200 met1 +96600 255300 103500 269100 met2 +96600 262200 103500 269100 met1 +96600 262200 103500 269100 li1 89700 255300 96600 262200 li1 +89700 255300 103500 262200 met1 +82800 255300 96600 262200 met1 82800 255300 89700 262200 li1 82800 255300 89700 262200 met1 82800 255300 89700 269100 met2 82800 262200 89700 269100 met1 82800 262200 89700 269100 li1 -96600 262200 103500 269100 li1 -82800 262200 103500 269100 met1 75900 255300 82800 262200 li1 75900 255300 89700 262200 met1 -89700 255300 103500 262200 met1 -96600 255300 103500 262200 met1 96600 248400 103500 262200 met2 ) clknet_leaf_13_app_clk @@ -51412,12 +51498,13 @@ clknet_leaf_14_usb_clk 138000 262200 144900 269100 li1 138000 262200 151800 269100 met1 144900 262200 151800 269100 li1 -124200 248400 144900 255300 met1 -138000 248400 144900 255300 li1 124200 248400 131100 255300 li1 124200 248400 131100 255300 met1 124200 248400 131100 262200 met2 124200 255300 131100 262200 met1 +117300 255300 131100 262200 met1 +117300 255300 124200 262200 li1 +124200 248400 138000 255300 met1 124200 241500 131100 255300 met2 124200 241500 131100 248400 met1 124200 241500 131100 248400 li1 @@ -51430,11 +51517,10 @@ clknet_leaf_14_usb_clk 131100 262200 138000 282900 met2 131100 262200 138000 269100 met1 131100 262200 138000 269100 li1 -124200 255300 131100 269100 met2 -124200 262200 131100 269100 met1 -124200 262200 138000 269100 met1 -117300 255300 131100 262200 met1 -117300 255300 124200 262200 li1 +131100 248400 138000 255300 met1 +131100 248400 138000 269100 met2 +131100 248400 144900 255300 met1 +138000 248400 144900 255300 li1 117300 276000 124200 282900 li1 117300 276000 138000 282900 met1 ) @@ -52801,12 +52887,13 @@ clknet_leaf_3_u_uart_core.line_clk_16x ) clknet_leaf_3_usb_clk ( -62100 138000 69000 144900 li1 -48300 138000 69000 144900 met1 -48300 138000 55200 144900 li1 +48300 144900 55200 151800 li1 +48300 144900 55200 151800 met1 +48300 138000 55200 151800 met2 48300 138000 55200 144900 met1 -48300 131100 55200 144900 met2 -48300 131100 55200 138000 met1 +48300 138000 55200 144900 li1 +41400 138000 55200 144900 met1 +41400 138000 48300 144900 li1 48300 124200 69000 131100 met1 62100 124200 69000 131100 li1 48300 110400 62100 117300 met1 @@ -52821,23 +52908,21 @@ clknet_leaf_3_usb_clk 48300 124200 55200 131100 li1 48300 124200 55200 131100 met1 48300 117300 55200 131100 met2 -41400 158700 48300 165600 li1 -41400 158700 48300 165600 met1 -41400 144900 48300 165600 met2 -41400 144900 48300 151800 met1 +48300 138000 69000 144900 met1 +62100 138000 69000 144900 li1 34500 131100 41400 138000 li1 34500 131100 55200 138000 met1 -48300 144900 55200 151800 li1 -41400 144900 55200 151800 met1 +48300 131100 55200 144900 met2 +48300 131100 55200 138000 met1 +48300 158700 55200 165600 met1 +48300 144900 55200 165600 met2 +41400 158700 48300 165600 li1 +41400 158700 55200 165600 met1 +48300 124200 55200 138000 met2 +48300 158700 62100 165600 met1 +55200 158700 62100 165600 li1 48300 144900 62100 151800 met1 55200 144900 62100 151800 li1 -41400 158700 62100 165600 met1 -55200 158700 62100 165600 li1 -41400 138000 55200 144900 met1 -41400 138000 48300 151800 met2 -41400 138000 48300 144900 met1 -41400 138000 48300 144900 li1 -48300 124200 55200 138000 met2 ) clknet_leaf_40_app_clk ( @@ -53417,23 +53502,25 @@ clknet_leaf_4_usb_clk ( 55200 193200 62100 200100 li1 55200 193200 69000 200100 met1 -62100 179400 89700 186300 met1 -82800 179400 96600 186300 met1 -89700 179400 96600 186300 li1 +75900 158700 82800 165600 li1 +75900 158700 89700 165600 met1 +82800 158700 89700 165600 met1 +82800 158700 89700 172500 met2 +82800 165600 89700 172500 met1 +82800 165600 89700 172500 li1 82800 179400 89700 186300 li1 82800 179400 89700 186300 met1 82800 165600 89700 186300 met2 -82800 165600 89700 172500 met1 -82800 165600 89700 172500 li1 -62100 158700 82800 165600 met1 -75900 158700 82800 165600 li1 -62100 172500 75900 179400 met1 -69000 172500 75900 179400 li1 +89700 179400 96600 186300 li1 +82800 179400 96600 186300 met1 62100 193200 69000 200100 li1 62100 193200 69000 200100 met1 62100 179400 69000 200100 met2 62100 179400 69000 186300 met1 62100 179400 69000 186300 li1 +62100 172500 75900 179400 met1 +69000 172500 75900 179400 li1 +62100 158700 82800 165600 met1 55200 165600 62100 172500 li1 55200 165600 69000 172500 met1 62100 165600 69000 172500 met1 @@ -54246,15 +54333,17 @@ clknet_leaf_62_usb_clk 289800 248400 296700 262200 met2 289800 255300 296700 262200 met1 289800 255300 296700 262200 li1 -269100 241500 276000 248400 li1 -269100 241500 282900 248400 met1 276000 255300 296700 262200 met1 -262200 241500 276000 248400 met1 -262200 241500 269100 248400 li1 276000 255300 282900 262200 li1 -276000 255300 282900 262200 met1 -276000 241500 282900 262200 met2 -276000 241500 282900 248400 met1 +269100 241500 276000 248400 li1 +269100 241500 276000 248400 met1 +269100 234600 276000 248400 met2 +269100 234600 276000 241500 met1 +269100 234600 282900 241500 met1 +276000 234600 282900 241500 li1 +269100 255300 276000 262200 met1 +269100 241500 276000 262200 met2 +269100 255300 282900 262200 met1 262200 255300 269100 262200 li1 262200 255300 269100 262200 met1 262200 255300 269100 269100 met2 @@ -54267,10 +54356,9 @@ clknet_leaf_62_usb_clk 255300 269100 262200 276000 met1 255300 269100 262200 276000 li1 255300 262200 269100 269100 met1 -262200 255300 282900 262200 met1 -276000 234600 282900 248400 met2 -276000 234600 282900 241500 met1 -276000 234600 282900 241500 li1 +262200 255300 276000 262200 met1 +262200 241500 269100 248400 li1 +262200 241500 276000 248400 met1 ) clknet_leaf_63_app_clk ( @@ -54294,22 +54382,20 @@ clknet_leaf_63_app_clk ) clknet_leaf_63_usb_clk ( -296700 227700 324300 234600 met1 -317400 227700 324300 234600 met1 -317400 220800 324300 234600 met2 -317400 220800 324300 227700 met1 -317400 220800 331200 227700 met1 -324300 220800 331200 227700 li1 296700 248400 303600 255300 li1 296700 248400 303600 255300 met1 -296700 241500 303600 255300 met2 -296700 241500 303600 248400 met1 +296700 234600 303600 255300 met2 296700 234600 303600 241500 met1 -296700 227700 303600 241500 met2 -296700 227700 303600 234600 met1 -296700 227700 303600 234600 li1 -303600 241500 310500 248400 li1 -296700 241500 310500 248400 met1 +296700 227700 310500 234600 met1 +303600 227700 331200 234600 met1 +324300 227700 331200 234600 met1 +324300 220800 331200 234600 met2 +324300 220800 331200 227700 met1 +324300 220800 331200 227700 li1 +296700 207000 303600 213900 met1 +296700 207000 303600 220800 met2 +296700 213900 303600 220800 met1 +296700 213900 303600 220800 li1 296700 200100 303600 207000 met1 296700 193200 303600 207000 met2 296700 193200 303600 200100 met1 @@ -54323,22 +54409,26 @@ clknet_leaf_63_usb_clk 289800 200100 296700 207000 li1 289800 200100 303600 207000 met1 282900 207000 289800 213900 li1 -282900 207000 303600 213900 met1 +282900 207000 289800 213900 met1 +282900 207000 289800 227700 met2 +282900 220800 289800 227700 met1 +276000 220800 289800 227700 met1 276000 220800 282900 227700 li1 -276000 220800 303600 227700 met1 -296700 220800 303600 234600 met2 -296700 220800 303600 227700 met1 -296700 213900 303600 220800 li1 -296700 213900 303600 220800 met1 -296700 207000 303600 220800 met2 -296700 207000 303600 213900 met1 -296700 200100 303600 213900 met2 -296700 234600 310500 241500 met1 -303600 234600 310500 241500 li1 -296700 213900 303600 227700 met2 282900 234600 303600 241500 met1 282900 234600 289800 241500 li1 -296700 234600 303600 248400 met2 +303600 234600 310500 241500 li1 +303600 234600 310500 241500 met1 +303600 234600 310500 248400 met2 +303600 241500 310500 248400 met1 +303600 241500 310500 248400 li1 +303600 227700 310500 241500 met2 +303600 227700 310500 234600 met1 +296700 200100 303600 213900 met2 +296700 234600 310500 241500 met1 +296700 213900 303600 234600 met2 +296700 227700 303600 234600 met1 +296700 227700 303600 234600 li1 +282900 207000 303600 213900 met1 ) clknet_leaf_64_usb_clk ( @@ -54347,14 +54437,19 @@ clknet_leaf_64_usb_clk 296700 255300 303600 269100 met2 296700 255300 303600 262200 met1 296700 255300 317400 262200 met1 -310500 255300 338100 262200 met1 +310500 255300 317400 262200 li1 +310500 234600 317400 241500 li1 +310500 234600 331200 241500 met1 +324300 234600 331200 241500 met1 +324300 234600 331200 248400 met2 +324300 241500 331200 248400 met1 +324300 241500 331200 248400 li1 310500 282900 324300 289800 met1 317400 282900 324300 289800 li1 -324300 262200 338100 269100 met1 -331200 262200 338100 269100 met1 -331200 255300 338100 269100 met2 -331200 255300 338100 262200 met1 -331200 255300 338100 262200 li1 +324300 262200 331200 269100 li1 +324300 262200 331200 269100 met1 +324300 255300 331200 269100 met2 +324300 255300 331200 262200 met1 310500 276000 331200 282900 met1 310500 282900 317400 289800 li1 310500 282900 317400 289800 met1 @@ -54364,20 +54459,13 @@ clknet_leaf_64_usb_clk 324300 276000 331200 282900 li1 324300 276000 331200 282900 met1 324300 262200 331200 282900 met2 -324300 262200 331200 269100 met1 -324300 262200 331200 269100 li1 -310500 241500 331200 248400 met1 -324300 241500 331200 248400 li1 -310500 241500 317400 248400 met1 -310500 234600 317400 248400 met2 -310500 234600 317400 241500 met1 -310500 234600 317400 241500 li1 +310500 255300 331200 262200 met1 296700 262200 303600 276000 met2 296700 269100 303600 276000 met1 296700 269100 303600 276000 li1 -310500 255300 317400 262200 li1 -310500 255300 317400 262200 met1 -310500 241500 317400 262200 met2 +324300 241500 331200 262200 met2 +324300 255300 338100 262200 met1 +331200 255300 338100 262200 li1 ) clknet_leaf_65_usb_clk ( @@ -54729,11 +54817,11 @@ clknet_leaf_73_usb_clk 324300 213900 331200 227700 met2 324300 220800 331200 227700 met1 324300 220800 331200 227700 li1 -324300 220800 338100 227700 met1 -331200 220800 338100 227700 met1 -331200 220800 338100 234600 met2 -331200 227700 338100 234600 met1 +324300 220800 331200 234600 met2 +324300 227700 331200 234600 met1 +324300 227700 338100 234600 met1 331200 227700 338100 234600 li1 +331200 227700 338100 234600 met1 331200 227700 338100 241500 met2 331200 234600 338100 241500 met1 331200 234600 338100 241500 li1 @@ -54824,9 +54912,11 @@ clknet_leaf_76_usb_clk 372600 158700 379500 165600 met1 372600 158700 379500 172500 met2 372600 165600 379500 172500 met1 -372600 165600 379500 179400 met2 -372600 172500 379500 179400 met1 -372600 172500 386400 179400 met1 +372600 165600 386400 172500 met1 +379500 165600 386400 172500 li1 +379500 165600 386400 172500 met1 +379500 165600 386400 179400 met2 +379500 172500 386400 179400 met1 379500 172500 386400 179400 li1 358800 151800 365700 158700 li1 358800 151800 365700 158700 met1 @@ -54844,8 +54934,6 @@ clknet_leaf_76_usb_clk 372600 144900 379500 158700 met2 372600 151800 379500 158700 met1 372600 151800 379500 158700 li1 -372600 165600 386400 172500 met1 -379500 165600 386400 172500 li1 372600 151800 379500 165600 met2 ) clknet_leaf_77_usb_clk @@ -55118,20 +55206,20 @@ clknet_leaf_82_usb_clk 310500 75900 317400 82800 met1 296700 82800 317400 89700 met1 296700 82800 303600 89700 li1 -303600 75900 317400 82800 met1 -303600 75900 310500 82800 li1 296700 62100 303600 69000 li1 296700 62100 310500 69000 met1 -310500 75900 331200 82800 met1 -324300 75900 331200 82800 li1 -303600 69000 317400 75900 met1 -303600 69000 310500 75900 met1 -303600 62100 310500 75900 met2 -303600 62100 310500 69000 met1 303600 62100 310500 69000 li1 +303600 62100 310500 69000 met1 +303600 62100 310500 75900 met2 +303600 69000 310500 75900 met1 +303600 69000 317400 75900 met1 310500 69000 317400 82800 met2 310500 69000 317400 75900 met1 310500 69000 317400 75900 li1 +310500 75900 331200 82800 met1 +324300 75900 331200 82800 li1 +303600 75900 310500 82800 li1 +303600 75900 317400 82800 met1 ) clknet_leaf_83_usb_clk ( @@ -55160,11 +55248,6 @@ clknet_leaf_83_usb_clk ) clknet_leaf_84_usb_clk ( -303600 138000 310500 144900 li1 -303600 138000 310500 144900 met1 -303600 138000 310500 151800 met2 -303600 144900 310500 151800 met1 -303600 144900 310500 151800 li1 276000 131100 289800 138000 met1 282900 131100 289800 138000 li1 276000 131100 282900 138000 li1 @@ -55172,9 +55255,6 @@ clknet_leaf_84_usb_clk 276000 131100 282900 144900 met2 276000 138000 282900 144900 met1 276000 138000 282900 144900 li1 -276000 138000 282900 151800 met2 -276000 144900 282900 151800 met1 -276000 144900 282900 151800 li1 282900 131100 296700 138000 met1 289800 144900 296700 151800 li1 289800 144900 296700 151800 met1 @@ -55187,19 +55267,27 @@ clknet_leaf_84_usb_clk 296700 165600 303600 172500 met1 296700 165600 303600 172500 li1 289800 158700 303600 165600 met1 -296700 138000 310500 144900 met1 +289800 144900 310500 151800 met1 +303600 144900 310500 151800 li1 296700 138000 303600 144900 li1 +296700 138000 303600 144900 met1 +296700 131100 303600 144900 met2 +296700 131100 303600 138000 met1 +296700 131100 303600 138000 li1 +276000 138000 282900 151800 met2 +276000 144900 282900 151800 met1 +276000 144900 282900 151800 li1 +289800 117300 310500 124200 met1 +303600 117300 310500 124200 li1 289800 131100 296700 138000 li1 289800 131100 296700 138000 met1 289800 131100 296700 151800 met2 -289800 144900 310500 151800 met1 -289800 117300 310500 124200 met1 -303600 117300 310500 124200 li1 289800 117300 296700 124200 li1 289800 117300 296700 124200 met1 289800 117300 296700 138000 met2 289800 131100 303600 138000 met1 -296700 131100 303600 138000 li1 +296700 138000 310500 144900 met1 +303600 138000 310500 144900 li1 ) clknet_leaf_85_usb_clk ( @@ -55249,36 +55337,36 @@ clknet_leaf_86_usb_clk 289800 41400 296700 55200 met2 289800 48300 296700 55200 met1 289800 48300 296700 55200 li1 +289800 48300 296700 69000 met2 289800 62100 296700 69000 met1 -289800 62100 296700 75900 met2 -289800 69000 296700 75900 met1 -289800 69000 296700 75900 li1 289800 62100 303600 69000 met1 296700 62100 303600 69000 li1 -276000 82800 282900 89700 li1 276000 82800 296700 89700 met1 -269100 82800 282900 89700 met1 -269100 82800 276000 89700 li1 -289800 69000 296700 89700 met2 -289800 82800 296700 89700 met1 289800 82800 296700 89700 li1 +276000 69000 282900 75900 met1 +276000 69000 282900 89700 met2 +276000 82800 282900 89700 met1 +276000 82800 282900 89700 li1 +289800 62100 296700 75900 met2 +289800 69000 296700 75900 met1 +289800 69000 296700 75900 li1 276000 62100 282900 69000 li1 276000 62100 282900 69000 met1 -276000 55200 282900 69000 met2 -276000 55200 282900 62100 met1 -276000 55200 282900 62100 li1 -289800 48300 296700 69000 met2 276000 62100 282900 75900 met2 -276000 69000 282900 75900 met1 -276000 69000 296700 75900 met1 +276000 62100 296700 69000 met1 276000 41400 282900 48300 li1 276000 41400 289800 48300 met1 282900 27600 289800 34500 li1 282900 27600 289800 34500 met1 282900 27600 289800 48300 met2 282900 41400 289800 48300 met1 -269100 69000 282900 75900 met1 269100 69000 276000 75900 li1 +269100 69000 282900 75900 met1 +269100 82800 276000 89700 li1 +269100 82800 282900 89700 met1 +276000 55200 282900 69000 met2 +276000 55200 282900 62100 met1 +276000 55200 282900 62100 li1 ) clknet_leaf_87_usb_clk ( @@ -55678,23 +55766,22 @@ clknet_leaf_95_usb_clk 282900 165600 289800 172500 li1 276000 158700 289800 165600 met1 282900 158700 289800 165600 li1 -262200 158700 269100 165600 li1 -262200 158700 269100 165600 met1 -262200 151800 269100 165600 met2 -262200 151800 269100 158700 met1 -262200 151800 269100 158700 li1 276000 165600 282900 172500 li1 276000 165600 282900 172500 met1 276000 158700 282900 172500 met2 276000 158700 282900 165600 met1 276000 158700 282900 165600 li1 -262200 144900 269100 158700 met2 -262200 144900 269100 151800 met1 -262200 144900 276000 151800 met1 +276000 144900 282900 165600 met2 +276000 144900 282900 151800 met1 +269100 144900 282900 151800 met1 269100 144900 276000 151800 li1 -269100 158700 282900 165600 met1 -269100 158700 276000 165600 li1 +262200 158700 269100 165600 li1 +262200 158700 269100 165600 met1 +262200 151800 269100 165600 met2 +262200 151800 269100 158700 met1 +262200 151800 269100 158700 li1 262200 158700 276000 165600 met1 +269100 158700 276000 165600 li1 276000 179400 282900 186300 li1 276000 179400 282900 186300 met1 276000 165600 282900 186300 met2 @@ -55708,6 +55795,7 @@ clknet_leaf_95_usb_clk 248400 172500 255300 179400 met1 248400 172500 255300 179400 li1 248400 179400 276000 186300 met1 +269100 158700 282900 165600 met1 ) clknet_leaf_96_usb_clk ( @@ -55759,37 +55847,36 @@ clknet_leaf_97_usb_clk 234600 193200 241500 207000 met2 234600 200100 241500 207000 met1 234600 200100 241500 207000 li1 -227700 213900 241500 220800 met1 -227700 213900 234600 220800 li1 +234600 213900 248400 220800 met1 +241500 213900 248400 220800 li1 234600 200100 241500 220800 met2 234600 213900 241500 220800 met1 234600 213900 241500 220800 li1 -234600 213900 248400 220800 met1 -234600 234600 248400 241500 met1 -234600 234600 241500 241500 li1 -227700 227700 248400 234600 met1 -227700 227700 234600 234600 li1 -241500 213900 248400 220800 li1 -241500 213900 248400 220800 met1 -241500 213900 248400 234600 met2 -241500 227700 248400 234600 met1 -248400 241500 255300 248400 li1 +234600 213900 241500 234600 met2 +234600 227700 241500 234600 met1 +248400 234600 255300 241500 li1 +248400 234600 255300 241500 met1 +248400 234600 255300 248400 met2 248400 241500 255300 248400 met1 -248400 241500 255300 262200 met2 -248400 255300 255300 262200 met1 -241500 255300 255300 262200 met1 +248400 241500 255300 248400 li1 +234600 234600 241500 241500 li1 +234600 234600 241500 241500 met1 +234600 227700 241500 241500 met2 +241500 241500 255300 248400 met1 +241500 241500 248400 248400 li1 +241500 241500 248400 248400 met1 +241500 241500 248400 262200 met2 +241500 255300 248400 262200 met1 241500 255300 248400 262200 li1 +234600 234600 248400 241500 met1 +241500 234600 248400 241500 li1 241500 234600 255300 241500 met1 227700 193200 234600 200100 li1 227700 193200 241500 200100 met1 -248400 234600 255300 241500 li1 -248400 234600 255300 241500 met1 -248400 234600 255300 248400 met2 -241500 227700 248400 241500 met2 -241500 234600 248400 241500 met1 -241500 234600 248400 241500 li1 -241500 241500 248400 248400 li1 -241500 241500 255300 248400 met1 +227700 213900 234600 220800 li1 +227700 213900 241500 220800 met1 +227700 227700 234600 234600 li1 +227700 227700 241500 234600 met1 ) clknet_leaf_98_usb_clk ( @@ -57139,11 +57226,11 @@ net44 193200 531300 200100 538200 met1 193200 531300 200100 586500 met2 193200 579600 200100 586500 met1 -193200 579600 296700 586500 met1 -289800 579600 296700 586500 met1 -289800 579600 296700 607200 met2 -289800 600300 296700 607200 met1 -289800 600300 400000 607200 met1 +193200 579600 303600 586500 met1 +296700 579600 303600 586500 met1 +296700 579600 303600 607200 met2 +296700 600300 303600 607200 met1 +296700 600300 400000 607200 met1 386400 600300 400000 607200 li1 ) net45 @@ -57307,13 +57394,7 @@ net74 338100 400200 345000 407100 met2 338100 400200 386400 407100 met3 379500 400200 386400 407100 met3 -379500 227700 386400 407100 met4 -379500 227700 386400 234600 met3 -379500 227700 386400 234600 met2 -379500 207000 386400 234600 met2 -379500 207000 386400 213900 met2 -379500 207000 386400 213900 met3 -379500 6900 386400 213900 met4 +379500 6900 386400 407100 met4 379500 6900 386400 13800 met3 379500 6900 386400 13800 met2 379500 6900 386400 13800 met1 @@ -57351,13 +57432,19 @@ net78 158700 545100 165600 552000 met1 158700 545100 165600 552000 met2 158700 545100 165600 552000 met3 -158700 144900 165600 552000 met4 +158700 200100 165600 552000 met4 +158700 200100 165600 207000 met3 +158700 200100 165600 207000 met2 +158700 193200 165600 207000 met2 +158700 193200 165600 200100 met2 +158700 193200 165600 200100 met3 +158700 144900 165600 200100 met4 158700 144900 165600 151800 met3 158700 144900 165600 151800 met2 -158700 103500 165600 151800 met2 -158700 103500 165600 110400 met2 -158700 103500 165600 110400 met3 -158700 6900 165600 110400 met4 +158700 124200 165600 151800 met2 +158700 124200 165600 131100 met2 +158700 124200 165600 131100 met3 +158700 6900 165600 131100 met4 158700 6900 165600 13800 met3 158700 6900 165600 13800 met2 158700 6900 165600 13800 met1 @@ -57617,16 +57704,12 @@ net83 144900 62100 151800 69000 met1 144900 62100 151800 75900 met2 144900 69000 151800 75900 met1 -158700 62100 165600 69000 met1 -158700 55200 165600 69000 met2 -158700 55200 165600 62100 met1 -158700 55200 165600 62100 li1 138000 69000 151800 75900 met1 -158700 82800 165600 89700 li1 -158700 82800 165600 89700 met1 -158700 82800 165600 96600 met2 -158700 89700 165600 96600 met1 -158700 89700 165600 96600 li1 +144900 89700 151800 96600 met1 +144900 82800 151800 96600 met2 +144900 82800 151800 89700 met1 +158700 55200 165600 62100 li1 +158700 55200 165600 62100 met1 158700 48300 165600 62100 met2 158700 48300 165600 55200 met1 158700 48300 165600 55200 li1 @@ -57735,15 +57818,14 @@ net83 207000 41400 213900 48300 li1 213900 89700 227700 96600 met1 151800 48300 165600 55200 met1 +144900 55200 165600 62100 met1 144900 55200 151800 69000 met2 144900 55200 151800 62100 met1 -158700 69000 165600 75900 met1 -158700 62100 165600 75900 met2 -151800 69000 165600 75900 met1 -151800 69000 158700 75900 li1 -144900 89700 151800 96600 met1 -144900 82800 151800 96600 met2 -144900 82800 151800 89700 met1 +158700 89700 165600 96600 li1 +158700 89700 165600 96600 met1 +158700 82800 165600 96600 met2 +158700 82800 165600 89700 met1 +158700 82800 165600 89700 li1 144900 89700 165600 96600 met1 220800 110400 227700 117300 met1 220800 96600 227700 117300 met2 @@ -57768,10 +57850,13 @@ net83 200100 27600 207000 34500 met1 200100 27600 207000 34500 li1 207000 55200 220800 62100 met1 -158700 69000 165600 89700 met2 +144900 69000 151800 89700 met2 144900 69000 158700 75900 met1 -151800 62100 165600 69000 met1 151800 62100 158700 69000 li1 +151800 62100 158700 69000 met1 +151800 62100 158700 75900 met2 +151800 69000 158700 75900 met1 +151800 69000 158700 75900 li1 227700 34500 234600 48300 met2 227700 34500 234600 41400 met1 213900 255300 227700 262200 met1 @@ -58069,14 +58154,14 @@ net85 324300 310500 331200 317400 li1 324300 317400 338100 324300 met1 331200 317400 338100 324300 li1 -324300 303600 345000 310500 met1 +331200 303600 345000 310500 met1 338100 303600 345000 310500 li1 324300 303600 331200 317400 met2 324300 303600 331200 310500 met1 324300 303600 331200 310500 li1 -324300 289800 331200 310500 met2 -324300 289800 331200 296700 met1 -324300 289800 338100 296700 met1 +331200 303600 338100 310500 met1 +331200 289800 338100 310500 met2 +331200 289800 338100 296700 met1 331200 289800 338100 296700 li1 338100 303600 351900 310500 met1 345000 303600 351900 310500 li1 @@ -58135,6 +58220,7 @@ net85 296700 517500 303600 524400 met1 296700 510600 303600 524400 met2 282900 517500 303600 524400 met1 +324300 303600 338100 310500 met1 303600 455400 310500 462300 li1 303600 455400 310500 462300 met1 303600 441600 310500 462300 met2 @@ -64764,20 +64850,13 @@ u_usb_host.u_core.err_cond_q u_usb_host.u_core.fifo_flush_q ( 338100 400200 345000 407100 met1 -338100 317400 345000 407100 met2 -338100 317400 345000 324300 li1 -338100 317400 345000 324300 met1 -338100 317400 345000 324300 met2 -338100 317400 345000 324300 met3 -338100 234600 345000 324300 met4 -338100 234600 345000 241500 met3 -338100 234600 365700 241500 met3 -358800 234600 365700 241500 met2 -358800 220800 365700 241500 met2 -358800 220800 365700 227700 met2 -358800 220800 365700 227700 met3 -358800 138000 365700 227700 met4 -358800 138000 365700 144900 met3 +338100 324300 345000 407100 met2 +338100 324300 345000 331200 met2 +338100 324300 379500 331200 met3 +372600 324300 379500 331200 met3 +372600 138000 379500 331200 met4 +372600 138000 379500 144900 met3 +358800 138000 379500 144900 met3 358800 138000 365700 144900 met2 358800 138000 365700 144900 met1 358800 138000 365700 144900 li1 @@ -64790,25 +64869,27 @@ u_usb_host.u_core.fifo_flush_q 365700 414000 372600 420900 li1 324300 400200 331200 407100 li1 324300 400200 345000 407100 met1 +338100 317400 345000 331200 met2 +338100 317400 345000 324300 met1 +338100 317400 345000 324300 li1 ) u_usb_host.u_core.fifo_rx_data_w\[0\] ( -262200 255300 296700 262200 met1 +276000 255300 296700 262200 met1 289800 255300 296700 262200 li1 -262200 255300 269100 262200 met1 -262200 255300 269100 324300 met2 -262200 317400 269100 324300 met1 -241500 317400 248400 324300 li1 -241500 317400 269100 324300 met1 +276000 255300 282900 262200 met1 +276000 255300 282900 324300 met2 +276000 317400 282900 324300 met1 269100 317400 276000 324300 li1 -269100 317400 296700 324300 met1 -289800 317400 296700 324300 met1 -289800 317400 296700 331200 met2 -289800 324300 296700 331200 met1 -289800 324300 296700 331200 li1 +269100 317400 282900 324300 met1 +241500 317400 248400 324300 li1 +241500 317400 276000 324300 met1 255300 255300 262200 262200 li1 -255300 255300 269100 262200 met1 -262200 317400 276000 324300 met1 +255300 255300 282900 262200 met1 +276000 317400 282900 331200 met2 +276000 324300 282900 331200 met1 +276000 324300 296700 331200 met1 +289800 324300 296700 331200 li1 ) u_usb_host.u_core.fifo_rx_data_w\[1\] ( @@ -64919,11 +65000,12 @@ u_usb_host.u_core.fifo_rx_data_w\[6\] 241500 310500 248400 317400 met2 241500 310500 248400 317400 met1 241500 310500 248400 317400 li1 -324300 227700 331200 234600 met1 324300 227700 331200 255300 met2 324300 248400 331200 255300 met1 324300 248400 331200 255300 li1 -241500 227700 331200 234600 met1 +241500 227700 331200 234600 met3 +324300 227700 331200 234600 met2 +324300 227700 331200 234600 met1 234600 227700 241500 234600 li1 234600 227700 248400 234600 met1 ) @@ -65947,10 +66029,11 @@ u_usb_host.u_core.u_fifo_rx.ram\[11\]\[1\] u_usb_host.u_core.u_fifo_rx.ram\[11\]\[2\] ( 345000 331200 351900 338100 li1 -345000 331200 365700 338100 met1 -358800 331200 365700 338100 met1 -358800 324300 365700 338100 met2 -358800 324300 365700 331200 met1 +345000 331200 358800 338100 met1 +351900 331200 358800 338100 met1 +351900 324300 358800 338100 met2 +351900 324300 358800 331200 met1 +351900 324300 365700 331200 met1 358800 324300 365700 331200 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[11\]\[3\] @@ -65966,11 +66049,12 @@ u_usb_host.u_core.u_fifo_rx.ram\[11\]\[4\] 358800 234600 365700 241500 met1 358800 234600 365700 241500 li1 338100 179400 345000 186300 li1 -338100 179400 358800 186300 met1 -351900 179400 358800 186300 met1 -351900 179400 358800 241500 met2 -351900 234600 358800 241500 met1 -351900 234600 365700 241500 met1 +338100 179400 345000 186300 met1 +338100 179400 345000 193200 met2 +338100 186300 345000 193200 met1 +338100 186300 365700 193200 met1 +358800 186300 365700 193200 met1 +358800 186300 365700 241500 met2 ) u_usb_host.u_core.u_fifo_rx.ram\[11\]\[5\] ( @@ -66478,21 +66562,18 @@ u_usb_host.u_core.u_fifo_rx.ram\[18\]\[3\] ) u_usb_host.u_core.u_fifo_rx.ram\[18\]\[4\] ( -365700 262200 372600 269100 li1 365700 262200 379500 269100 met1 372600 262200 379500 269100 li1 338100 131100 345000 138000 li1 -338100 131100 345000 138000 met1 -338100 131100 345000 138000 met2 -338100 131100 351900 138000 met3 -345000 131100 351900 138000 met3 -345000 131100 351900 193200 met4 -345000 186300 351900 193200 met3 -345000 186300 365700 193200 met3 -358800 186300 365700 193200 met2 -358800 186300 365700 269100 met2 -358800 262200 365700 269100 met1 -358800 262200 372600 269100 met1 +338100 131100 365700 138000 met1 +358800 131100 365700 138000 met1 +358800 131100 365700 227700 met2 +358800 220800 365700 227700 met1 +358800 220800 372600 227700 met1 +365700 220800 372600 227700 met1 +365700 220800 372600 269100 met2 +365700 262200 372600 269100 met1 +365700 262200 372600 269100 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[18\]\[5\] ( @@ -66944,9 +67025,12 @@ u_usb_host.u_core.u_fifo_rx.ram\[23\]\[4\] 310500 234600 317400 241500 li1 310500 234600 338100 241500 met1 331200 234600 338100 241500 met1 -331200 172500 338100 241500 met2 -331200 172500 338100 179400 met1 -331200 172500 351900 179400 met1 +331200 186300 338100 241500 met2 +331200 186300 338100 193200 met1 +331200 186300 351900 193200 met1 +345000 186300 351900 193200 met1 +345000 172500 351900 193200 met2 +345000 172500 351900 179400 met1 345000 172500 351900 179400 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[23\]\[5\] @@ -67489,10 +67573,14 @@ u_usb_host.u_core.u_fifo_rx.ram\[2\]\[4\] 345000 117300 351900 124200 met2 345000 117300 358800 124200 met3 351900 117300 358800 124200 met3 -351900 117300 358800 255300 met4 -351900 248400 358800 255300 met3 -351900 248400 400000 255300 met3 -386400 248400 400000 255300 met2 +351900 117300 358800 220800 met4 +351900 213900 358800 220800 met3 +351900 213900 358800 220800 met2 +351900 213900 358800 241500 met2 +351900 234600 358800 241500 met1 +351900 234600 400000 241500 met1 +386400 234600 400000 241500 met1 +386400 234600 400000 255300 met2 386400 248400 400000 255300 met1 386400 248400 400000 255300 li1 ) @@ -67553,11 +67641,10 @@ u_usb_host.u_core.u_fifo_rx.ram\[30\]\[3\] u_usb_host.u_core.u_fifo_rx.ram\[30\]\[4\] ( 310500 124200 317400 131100 li1 -310500 124200 351900 131100 met1 -345000 124200 351900 131100 met1 -345000 124200 351900 138000 met2 -345000 131100 351900 138000 met1 -345000 131100 358800 138000 met1 +310500 124200 358800 131100 met1 +351900 124200 358800 131100 met1 +351900 124200 358800 138000 met2 +351900 131100 358800 138000 met1 351900 131100 358800 138000 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[30\]\[5\] @@ -67752,9 +67839,9 @@ u_usb_host.u_core.u_fifo_rx.ram\[33\]\[2\] 324300 234600 338100 241500 met1 331200 234600 338100 241500 met1 331200 220800 338100 241500 met2 -331200 220800 338100 227700 met1 -331200 220800 345000 227700 met1 -338100 220800 345000 227700 met1 +331200 220800 338100 227700 met2 +331200 220800 345000 227700 met3 +338100 220800 345000 227700 met2 338100 213900 345000 227700 met2 338100 213900 345000 220800 met1 338100 213900 345000 220800 li1 @@ -68106,11 +68193,10 @@ u_usb_host.u_core.u_fifo_rx.ram\[37\]\[6\] u_usb_host.u_core.u_fifo_rx.ram\[37\]\[7\] ( 303600 82800 310500 89700 li1 -303600 82800 317400 89700 met1 -310500 82800 317400 89700 met1 -310500 82800 317400 103500 met2 -310500 96600 317400 103500 met1 -310500 96600 324300 103500 met1 +303600 82800 310500 89700 met1 +303600 82800 310500 103500 met2 +303600 96600 310500 103500 met1 +303600 96600 324300 103500 met1 317400 96600 324300 103500 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[38\]\[0\] @@ -68366,11 +68452,11 @@ u_usb_host.u_core.u_fifo_rx.ram\[40\]\[4\] 317400 351900 331200 358800 met1 324300 351900 331200 358800 li1 324300 351900 331200 358800 met1 -324300 269100 331200 358800 met2 -324300 269100 331200 276000 met2 -324300 269100 338100 276000 met3 -331200 269100 338100 276000 met2 -331200 262200 338100 276000 met2 +324300 276000 331200 358800 met2 +324300 276000 331200 282900 met1 +324300 276000 338100 282900 met1 +331200 276000 338100 282900 met1 +331200 262200 338100 282900 met2 331200 262200 338100 269100 met1 331200 262200 338100 269100 li1 ) @@ -68453,11 +68539,11 @@ u_usb_host.u_core.u_fifo_rx.ram\[41\]\[5\] 255300 172500 262200 179400 li1 255300 172500 269100 179400 met1 262200 172500 269100 179400 li1 -262200 172500 317400 179400 met1 -310500 172500 317400 179400 met1 -310500 172500 317400 186300 met2 -310500 179400 317400 186300 met1 -310500 179400 331200 186300 met1 +262200 172500 324300 179400 met1 +317400 172500 324300 179400 met1 +317400 172500 324300 186300 met2 +317400 179400 324300 186300 met1 +317400 179400 331200 186300 met1 324300 179400 331200 186300 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[41\]\[6\] @@ -68867,10 +68953,11 @@ u_usb_host.u_core.u_fifo_rx.ram\[47\]\[0\] 262200 331200 269100 338100 li1 262200 331200 276000 338100 met1 269100 331200 276000 338100 li1 -269100 331200 351900 338100 met1 -345000 331200 351900 338100 met1 -345000 331200 351900 345000 met2 -345000 338100 351900 345000 met1 +269100 331200 338100 338100 met1 +331200 331200 338100 338100 met1 +331200 331200 338100 345000 met2 +331200 338100 338100 345000 met1 +331200 338100 351900 345000 met1 345000 338100 351900 345000 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[47\]\[1\] @@ -68888,14 +68975,11 @@ u_usb_host.u_core.u_fifo_rx.ram\[47\]\[1\] u_usb_host.u_core.u_fifo_rx.ram\[47\]\[2\] ( 269100 324300 276000 331200 li1 -269100 324300 338100 331200 met1 -331200 324300 338100 331200 met1 -331200 324300 338100 338100 met2 -331200 331200 338100 338100 met1 -331200 331200 345000 338100 met1 -338100 331200 345000 338100 met1 -338100 331200 345000 345000 met2 -338100 338100 345000 345000 met1 +269100 324300 303600 331200 met1 +296700 324300 303600 331200 met1 +296700 324300 303600 345000 met2 +296700 338100 303600 345000 met1 +296700 338100 345000 345000 met1 338100 338100 345000 345000 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[47\]\[3\] @@ -69568,10 +69652,10 @@ u_usb_host.u_core.u_fifo_rx.ram\[55\]\[1\] 262200 158700 269100 165600 li1 262200 158700 276000 165600 met1 269100 158700 276000 165600 li1 -269100 158700 296700 165600 met1 -289800 158700 296700 165600 met1 -289800 158700 296700 179400 met2 -289800 172500 296700 179400 met1 +269100 158700 276000 165600 met1 +269100 158700 276000 179400 met2 +269100 172500 276000 179400 met1 +269100 172500 296700 179400 met1 289800 172500 296700 179400 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[55\]\[2\] @@ -69588,11 +69672,10 @@ u_usb_host.u_core.u_fifo_rx.ram\[55\]\[3\] 255300 151800 262200 158700 li1 255300 151800 276000 158700 met1 269100 151800 276000 158700 li1 -269100 151800 303600 158700 met1 -296700 151800 303600 158700 met1 -296700 151800 303600 179400 met2 -296700 172500 303600 179400 met1 -296700 172500 310500 179400 met1 +269100 151800 310500 158700 met1 +303600 151800 310500 158700 met1 +303600 151800 310500 179400 met2 +303600 172500 310500 179400 met1 303600 172500 310500 179400 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[55\]\[4\] @@ -69600,9 +69683,12 @@ u_usb_host.u_core.u_fifo_rx.ram\[55\]\[4\] 303600 131100 310500 138000 li1 303600 131100 338100 138000 met1 331200 131100 338100 138000 met1 -331200 131100 338100 186300 met2 -331200 179400 338100 186300 met1 -331200 179400 345000 186300 met1 +331200 131100 338100 151800 met2 +331200 144900 338100 151800 met1 +331200 144900 345000 151800 met1 +338100 144900 345000 151800 met1 +338100 144900 345000 186300 met2 +338100 179400 345000 186300 met1 338100 179400 345000 186300 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[55\]\[5\] @@ -69640,24 +69726,24 @@ u_usb_host.u_core.u_fifo_rx.ram\[55\]\[7\] u_usb_host.u_core.u_fifo_rx.ram\[56\]\[0\] ( 241500 158700 248400 165600 li1 -241500 158700 255300 165600 met1 -248400 158700 255300 165600 met1 -248400 158700 255300 186300 met2 -248400 179400 255300 186300 met1 +241500 158700 248400 165600 met1 +241500 158700 248400 186300 met2 +241500 179400 248400 186300 met1 +241500 179400 255300 186300 met1 248400 179400 255300 186300 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[56\]\[1\] ( -255300 158700 262200 165600 met1 -255300 151800 262200 165600 met2 -255300 151800 262200 158700 met1 -248400 151800 262200 158700 met1 -248400 151800 255300 158700 li1 -255300 179400 262200 186300 li1 -255300 179400 262200 186300 met1 -255300 158700 262200 186300 met2 248400 158700 255300 165600 li1 +248400 158700 255300 165600 met1 +248400 151800 255300 165600 met2 +248400 151800 255300 158700 met1 +248400 151800 255300 158700 li1 248400 158700 262200 165600 met1 +255300 158700 262200 165600 met1 +255300 158700 262200 186300 met2 +255300 179400 262200 186300 met1 +255300 179400 262200 186300 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[56\]\[2\] ( @@ -69692,10 +69778,10 @@ u_usb_host.u_core.u_fifo_rx.ram\[56\]\[4\] u_usb_host.u_core.u_fifo_rx.ram\[56\]\[5\] ( 227700 144900 234600 151800 li1 -227700 144900 234600 151800 met1 -227700 144900 234600 179400 met2 -227700 172500 234600 179400 met1 -227700 172500 241500 179400 met1 +227700 144900 241500 151800 met1 +234600 144900 241500 151800 met1 +234600 144900 241500 179400 met2 +234600 172500 241500 179400 met1 234600 172500 241500 179400 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[56\]\[6\] @@ -69711,10 +69797,10 @@ u_usb_host.u_core.u_fifo_rx.ram\[56\]\[6\] u_usb_host.u_core.u_fifo_rx.ram\[56\]\[7\] ( 227700 138000 234600 144900 li1 -227700 138000 241500 144900 met1 -234600 138000 241500 144900 met1 -234600 138000 241500 172500 met2 -234600 165600 241500 172500 met1 +227700 138000 234600 144900 met1 +227700 138000 234600 172500 met2 +227700 165600 234600 172500 met1 +227700 165600 241500 172500 met1 234600 165600 241500 172500 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[57\]\[0\] @@ -69839,13 +69925,16 @@ u_usb_host.u_core.u_fifo_rx.ram\[58\]\[4\] 234600 96600 241500 103500 met1 234600 96600 241500 103500 met2 234600 96600 241500 103500 met3 -234600 96600 241500 255300 met4 -234600 248400 241500 255300 met3 -234600 248400 303600 255300 met3 -296700 248400 303600 255300 met2 -296700 248400 303600 262200 met2 -296700 255300 303600 262200 met1 -296700 255300 338100 262200 met1 +234600 96600 241500 193200 met4 +234600 186300 241500 193200 met3 +234600 186300 241500 193200 met2 +234600 186300 241500 234600 met2 +234600 227700 241500 234600 met1 +234600 227700 289800 234600 met1 +282900 227700 289800 234600 met1 +282900 227700 289800 262200 met2 +282900 255300 289800 262200 met1 +282900 255300 338100 262200 met1 331200 255300 338100 262200 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[58\]\[5\] @@ -69993,10 +70082,10 @@ u_usb_host.u_core.u_fifo_rx.ram\[5\]\[3\] u_usb_host.u_core.u_fifo_rx.ram\[5\]\[4\] ( 310500 227700 317400 234600 li1 -310500 227700 317400 234600 met1 -310500 227700 317400 262200 met2 -310500 255300 317400 262200 met1 -310500 255300 324300 262200 met1 +310500 227700 324300 234600 met1 +317400 227700 324300 234600 met1 +317400 227700 324300 262200 met2 +317400 255300 324300 262200 met1 317400 255300 324300 262200 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[5\]\[5\] @@ -70220,10 +70309,10 @@ u_usb_host.u_core.u_fifo_rx.ram\[62\]\[4\] u_usb_host.u_core.u_fifo_rx.ram\[62\]\[5\] ( 289800 234600 296700 241500 li1 -289800 234600 296700 241500 met1 -289800 227700 296700 241500 met2 -289800 227700 296700 234600 met1 -289800 227700 303600 234600 met1 +289800 234600 303600 241500 met1 +296700 234600 303600 241500 met1 +296700 227700 303600 241500 met2 +296700 227700 303600 234600 met1 296700 227700 303600 234600 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[62\]\[6\] @@ -70290,21 +70379,17 @@ u_usb_host.u_core.u_fifo_rx.ram\[63\]\[4\] ( 317400 27600 324300 34500 li1 317400 27600 324300 34500 met1 -317400 27600 324300 48300 met2 -317400 41400 324300 48300 li1 -317400 41400 324300 48300 met1 -317400 41400 324300 82800 met2 -317400 75900 324300 82800 met1 -303600 75900 324300 82800 met1 -303600 75900 310500 82800 met1 -303600 75900 310500 96600 met2 -303600 89700 310500 96600 met2 -303600 89700 317400 96600 met3 -310500 89700 317400 96600 met2 -310500 89700 317400 138000 met2 -310500 131100 317400 138000 met1 -310500 131100 324300 138000 met1 +317400 27600 324300 41400 met2 +317400 34500 324300 41400 met1 +317400 34500 365700 41400 met1 +358800 34500 365700 41400 met1 +358800 34500 365700 138000 met2 +358800 131100 365700 138000 met1 +317400 131100 365700 138000 met1 317400 131100 324300 138000 li1 +317400 34500 324300 48300 met2 +317400 41400 324300 48300 met1 +317400 41400 324300 48300 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[63\]\[5\] ( @@ -70333,10 +70418,10 @@ u_usb_host.u_core.u_fifo_rx.ram\[63\]\[6\] u_usb_host.u_core.u_fifo_rx.ram\[63\]\[7\] ( 317400 34500 324300 41400 li1 -317400 34500 324300 41400 met1 -317400 34500 324300 55200 met2 -317400 48300 324300 55200 met1 -317400 48300 331200 55200 met1 +317400 34500 331200 41400 met1 +324300 34500 331200 41400 met1 +324300 34500 331200 55200 met2 +324300 48300 331200 55200 met1 324300 48300 331200 55200 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[6\]\[0\] @@ -70453,10 +70538,10 @@ u_usb_host.u_core.u_fifo_rx.ram\[7\]\[2\] u_usb_host.u_core.u_fifo_rx.ram\[7\]\[3\] ( 372600 220800 379500 227700 li1 -372600 220800 386400 227700 met1 -379500 220800 386400 227700 met1 -379500 220800 386400 234600 met2 -379500 227700 386400 234600 met1 +372600 220800 379500 227700 met1 +372600 220800 379500 234600 met2 +372600 227700 379500 234600 met1 +372600 227700 386400 234600 met1 379500 227700 386400 234600 li1 365700 220800 372600 227700 li1 365700 220800 379500 227700 met1 @@ -70464,11 +70549,11 @@ u_usb_host.u_core.u_fifo_rx.ram\[7\]\[3\] u_usb_host.u_core.u_fifo_rx.ram\[7\]\[4\] ( 310500 213900 317400 220800 li1 -310500 213900 324300 220800 met1 -317400 213900 324300 220800 met1 -317400 213900 324300 241500 met2 -317400 234600 324300 241500 met1 -317400 234600 365700 241500 met1 +310500 213900 338100 220800 met1 +331200 213900 338100 220800 met1 +331200 213900 338100 241500 met2 +331200 234600 338100 241500 met1 +331200 234600 365700 241500 met1 358800 234600 365700 241500 li1 ) u_usb_host.u_core.u_fifo_rx.ram\[7\]\[5\] @@ -70482,16 +70567,15 @@ u_usb_host.u_core.u_fifo_rx.ram\[7\]\[5\] ) u_usb_host.u_core.u_fifo_rx.ram\[7\]\[6\] ( -372600 220800 379500 227700 met1 -372600 220800 379500 241500 met2 -372600 234600 379500 241500 met1 -365700 234600 379500 241500 met1 +365700 220800 372600 227700 li1 +365700 220800 372600 227700 met1 +365700 220800 372600 241500 met2 +365700 234600 372600 241500 met1 365700 234600 372600 241500 li1 +365700 213900 372600 227700 met2 +365700 213900 372600 220800 met1 +365700 213900 379500 220800 met1 372600 213900 379500 220800 li1 -372600 213900 379500 220800 met1 -372600 213900 379500 227700 met2 -365700 220800 372600 227700 li1 -365700 220800 379500 227700 met1 ) u_usb_host.u_core.u_fifo_rx.ram\[7\]\[7\] ( @@ -70886,7 +70970,9 @@ u_usb_host.u_core.u_fifo_tx.data_i\[2\] 193200 103500 200100 110400 li1 193200 296700 200100 303600 li1 193200 296700 200100 303600 met1 -193200 248400 200100 303600 met2 +193200 296700 200100 303600 met2 +193200 296700 200100 303600 met3 +193200 248400 200100 303600 met4 ) u_usb_host.u_core.u_fifo_tx.data_i\[3\] ( @@ -71040,11 +71126,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[10\]\[0\] 96600 282900 103500 289800 li1 96600 282900 103500 289800 met1 96600 282900 103500 289800 met2 -75900 282900 103500 289800 met3 -75900 282900 82800 289800 met3 -75900 213900 82800 289800 met4 -75900 213900 82800 220800 met3 -75900 213900 110400 220800 met3 +96600 282900 103500 289800 met3 +96600 213900 103500 289800 met4 +96600 213900 103500 220800 met3 +96600 213900 110400 220800 met3 103500 213900 110400 220800 met2 103500 213900 110400 220800 met1 103500 213900 110400 220800 li1 @@ -71060,12 +71145,9 @@ u_usb_host.u_core.u_fifo_tx.ram\[10\]\[1\] u_usb_host.u_core.u_fifo_tx.ram\[10\]\[2\] ( 89700 262200 96600 269100 li1 -89700 262200 96600 269100 met1 -89700 234600 96600 269100 met2 -89700 234600 96600 241500 met1 -89700 234600 103500 241500 met1 -96600 234600 103500 241500 met1 -96600 220800 103500 241500 met2 +89700 262200 103500 269100 met1 +96600 262200 103500 269100 met1 +96600 220800 103500 269100 met2 96600 220800 103500 227700 met1 96600 220800 103500 227700 li1 ) @@ -71102,13 +71184,9 @@ u_usb_host.u_core.u_fifo_tx.ram\[10\]\[6\] ( 62100 276000 69000 282900 li1 62100 276000 69000 282900 met1 -62100 248400 69000 282900 met2 -62100 248400 69000 255300 met2 -62100 248400 89700 255300 met3 -82800 248400 89700 255300 met3 -82800 207000 89700 255300 met4 -82800 207000 89700 213900 met3 -82800 207000 96600 213900 met3 +62100 207000 69000 282900 met2 +62100 207000 69000 213900 met2 +62100 207000 96600 213900 met3 89700 207000 96600 213900 met2 89700 207000 96600 213900 met1 89700 207000 96600 213900 li1 @@ -71126,9 +71204,12 @@ u_usb_host.u_core.u_fifo_tx.ram\[10\]\[7\] u_usb_host.u_core.u_fifo_tx.ram\[11\]\[0\] ( 96600 276000 103500 282900 li1 -96600 276000 117300 282900 met1 -110400 276000 117300 282900 met1 -110400 220800 117300 282900 met2 +96600 276000 103500 282900 met1 +96600 248400 103500 282900 met2 +96600 248400 103500 255300 met1 +96600 248400 117300 255300 met1 +110400 248400 117300 255300 met1 +110400 220800 117300 255300 met2 110400 220800 117300 227700 met1 110400 220800 117300 227700 li1 ) @@ -71159,18 +71240,14 @@ u_usb_host.u_core.u_fifo_tx.ram\[11\]\[2\] u_usb_host.u_core.u_fifo_tx.ram\[11\]\[3\] ( 96600 262200 103500 269100 li1 +69000 262200 103500 269100 met1 +69000 262200 75900 269100 met1 +69000 179400 75900 269100 met2 +69000 179400 75900 186300 met1 +69000 179400 110400 186300 met1 +103500 179400 110400 186300 li1 96600 262200 110400 269100 met1 103500 262200 110400 269100 li1 -103500 262200 110400 269100 met1 -103500 255300 110400 269100 met2 -103500 255300 110400 262200 met2 -103500 255300 110400 262200 met3 -103500 186300 110400 262200 met4 -103500 186300 110400 193200 met3 -103500 186300 110400 193200 met2 -103500 179400 110400 193200 met2 -103500 179400 110400 186300 met1 -103500 179400 110400 186300 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[11\]\[4\] ( @@ -71179,10 +71256,9 @@ u_usb_host.u_core.u_fifo_tx.ram\[11\]\[4\] 103500 248400 110400 262200 met2 103500 255300 110400 262200 met1 103500 255300 110400 262200 li1 -103500 248400 117300 255300 met1 -110400 248400 117300 255300 met1 -110400 213900 117300 255300 met2 -110400 213900 117300 220800 met1 +103500 213900 110400 255300 met2 +103500 213900 110400 220800 met1 +103500 213900 117300 220800 met1 110400 213900 117300 220800 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[11\]\[5\] @@ -71226,9 +71302,12 @@ u_usb_host.u_core.u_fifo_tx.ram\[12\]\[0\] u_usb_host.u_core.u_fifo_tx.ram\[12\]\[1\] ( 103500 227700 110400 234600 li1 -103500 227700 117300 234600 met1 -110400 227700 117300 234600 met1 -110400 227700 117300 289800 met2 +103500 227700 110400 234600 met1 +103500 227700 110400 248400 met2 +103500 241500 110400 248400 met1 +103500 241500 117300 248400 met1 +110400 241500 117300 248400 met1 +110400 241500 117300 289800 met2 110400 282900 117300 289800 met1 110400 282900 117300 289800 li1 ) @@ -71247,13 +71326,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[12\]\[2\] u_usb_host.u_core.u_fifo_tx.ram\[12\]\[3\] ( 110400 269100 117300 276000 li1 -110400 269100 117300 276000 met1 -110400 269100 117300 276000 met2 -48300 269100 117300 276000 met3 -48300 269100 55200 276000 met3 -48300 158700 55200 276000 met4 -48300 158700 55200 165600 met3 -48300 158700 124200 165600 met3 +6900 269100 117300 276000 met1 +6900 269100 13800 276000 met1 +6900 158700 13800 276000 met2 +6900 158700 13800 165600 met2 +6900 158700 124200 165600 met3 117300 158700 124200 165600 met2 117300 158700 124200 165600 met1 117300 158700 124200 165600 li1 @@ -71334,11 +71411,15 @@ u_usb_host.u_core.u_fifo_tx.ram\[13\]\[2\] ) u_usb_host.u_core.u_fifo_tx.ram\[13\]\[3\] ( -48300 276000 124200 282900 met1 -48300 276000 55200 282900 met1 -48300 179400 55200 282900 met2 -48300 179400 55200 186300 met2 -48300 179400 131100 186300 met3 +75900 276000 124200 282900 met1 +75900 276000 82800 282900 met1 +75900 200100 82800 282900 met2 +75900 200100 82800 207000 met1 +75900 200100 96600 207000 met1 +89700 200100 96600 207000 met1 +89700 179400 96600 207000 met2 +89700 179400 96600 186300 met2 +89700 179400 131100 186300 met3 124200 179400 131100 186300 met2 124200 179400 131100 186300 met1 124200 179400 131100 186300 li1 @@ -71430,14 +71511,12 @@ u_usb_host.u_core.u_fifo_tx.ram\[14\]\[3\] 110400 220800 124200 227700 met3 117300 220800 124200 227700 met2 117300 220800 124200 262200 met2 -117300 255300 124200 262200 met2 -110400 255300 124200 262200 met3 -110400 255300 117300 262200 met3 -110400 255300 117300 345000 met4 -110400 338100 117300 345000 met3 -110400 338100 124200 345000 met3 -117300 338100 124200 345000 met2 -117300 338100 124200 345000 met1 +117300 255300 124200 262200 met1 +103500 255300 124200 262200 met1 +103500 255300 110400 262200 met1 +103500 255300 110400 345000 met2 +103500 338100 110400 345000 met1 +103500 338100 124200 345000 met1 117300 338100 124200 345000 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[14\]\[4\] @@ -71464,10 +71543,8 @@ u_usb_host.u_core.u_fifo_tx.ram\[14\]\[5\] 151800 324300 165600 331200 met1 158700 324300 165600 331200 li1 131100 200100 138000 207000 li1 -131100 200100 138000 207000 met1 -131100 200100 138000 207000 met2 -131100 200100 151800 207000 met3 -144900 200100 151800 207000 met2 +131100 200100 151800 207000 met1 +144900 200100 151800 207000 met1 144900 200100 151800 220800 met2 144900 213900 151800 220800 met2 144900 213900 158700 220800 met3 @@ -71511,12 +71588,12 @@ u_usb_host.u_core.u_fifo_tx.ram\[14\]\[7\] u_usb_host.u_core.u_fifo_tx.ram\[15\]\[0\] ( 103500 331200 110400 338100 li1 -82800 331200 110400 338100 met1 -82800 331200 89700 338100 met1 -82800 220800 89700 338100 met2 -82800 220800 89700 227700 met2 -82800 220800 117300 227700 met3 -110400 220800 117300 227700 met2 +103500 331200 110400 338100 met1 +103500 289800 110400 338100 met2 +103500 289800 110400 296700 met1 +103500 289800 117300 296700 met1 +110400 289800 117300 296700 met1 +110400 220800 117300 296700 met2 110400 220800 117300 227700 met1 110400 220800 117300 227700 li1 ) @@ -71621,10 +71698,8 @@ u_usb_host.u_core.u_fifo_tx.ram\[16\]\[1\] 124200 345000 213900 351900 met1 207000 345000 213900 351900 met1 207000 96600 213900 351900 met2 -207000 96600 213900 103500 met2 -131100 96600 213900 103500 met3 -131100 96600 138000 103500 met2 -131100 96600 138000 103500 met1 +207000 96600 213900 103500 met1 +131100 96600 213900 103500 met1 131100 96600 138000 103500 li1 124200 345000 131100 351900 li1 124200 345000 131100 351900 met1 @@ -71648,16 +71723,17 @@ u_usb_host.u_core.u_fifo_tx.ram\[16\]\[2\] ) u_usb_host.u_core.u_fifo_tx.ram\[16\]\[3\] ( -6900 338100 131100 345000 met1 -6900 338100 13800 345000 met1 -6900 124200 13800 345000 met2 -6900 124200 13800 131100 met2 -6900 124200 131100 131100 met3 +124200 338100 131100 345000 li1 +124200 338100 131100 345000 met1 +124200 338100 131100 345000 met2 +124200 338100 186300 345000 met3 +179400 338100 186300 345000 met3 +179400 124200 186300 345000 met4 +179400 124200 186300 131100 met3 +124200 124200 186300 131100 met3 124200 124200 131100 131100 met2 124200 124200 131100 131100 met1 124200 124200 131100 131100 li1 -124200 338100 131100 345000 li1 -124200 338100 131100 345000 met1 124200 331200 131100 345000 met2 124200 331200 131100 338100 met1 124200 331200 131100 338100 li1 @@ -71728,10 +71804,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[17\]\[1\] 158700 20700 172500 27600 met1 165600 20700 172500 27600 li1 138000 82800 144900 89700 li1 -138000 82800 144900 89700 met1 -138000 20700 144900 89700 met2 -138000 20700 144900 27600 met1 -138000 20700 165600 27600 met1 +138000 82800 151800 89700 met1 +144900 82800 151800 89700 met1 +144900 20700 151800 89700 met2 +144900 20700 151800 27600 met1 +144900 20700 165600 27600 met1 158700 20700 165600 27600 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[17\]\[2\] @@ -71752,15 +71829,17 @@ u_usb_host.u_core.u_fifo_tx.ram\[17\]\[2\] ) u_usb_host.u_core.u_fifo_tx.ram\[17\]\[3\] ( -151800 117300 158700 124200 li1 151800 117300 165600 124200 met1 158700 117300 165600 124200 li1 131100 165600 138000 172500 li1 131100 165600 151800 172500 met1 144900 165600 151800 172500 met1 144900 117300 151800 172500 met2 -144900 117300 151800 124200 met1 -144900 117300 158700 124200 met1 +144900 117300 151800 124200 met2 +144900 117300 158700 124200 met3 +151800 117300 158700 124200 met2 +151800 117300 158700 124200 met1 +151800 117300 158700 124200 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[17\]\[4\] ( @@ -71804,11 +71883,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[17\]\[7\] u_usb_host.u_core.u_fifo_tx.ram\[18\]\[0\] ( 131100 75900 138000 82800 li1 -131100 75900 158700 82800 met1 -151800 75900 158700 82800 met1 -151800 41400 158700 82800 met2 -151800 41400 158700 48300 met1 -151800 41400 165600 48300 met1 +131100 75900 165600 82800 met1 +158700 75900 165600 82800 met1 +158700 41400 165600 82800 met2 +158700 41400 165600 48300 met1 158700 41400 165600 48300 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[18\]\[1\] @@ -71825,26 +71903,30 @@ u_usb_host.u_core.u_fifo_tx.ram\[18\]\[1\] u_usb_host.u_core.u_fifo_tx.ram\[18\]\[2\] ( 131100 96600 138000 103500 li1 -131100 96600 158700 103500 met1 -151800 96600 158700 103500 met1 -151800 69000 158700 103500 met2 -151800 69000 158700 75900 met1 -151800 69000 165600 75900 met1 +131100 96600 138000 103500 met1 +131100 89700 138000 103500 met2 +131100 89700 138000 96600 met2 +131100 89700 144900 96600 met3 +138000 89700 144900 96600 met2 +138000 69000 144900 96600 met2 +138000 69000 144900 75900 met1 +138000 69000 165600 75900 met1 158700 69000 165600 75900 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[18\]\[3\] ( -144900 117300 151800 124200 met1 -144900 110400 151800 124200 met2 -144900 110400 151800 117300 met1 -144900 110400 165600 117300 met1 +151800 117300 158700 124200 li1 +151800 117300 158700 124200 met1 +151800 110400 158700 124200 met2 +151800 110400 158700 117300 met1 +151800 110400 165600 117300 met1 158700 110400 165600 117300 li1 124200 158700 131100 165600 li1 124200 158700 151800 165600 met1 144900 158700 151800 165600 met1 144900 117300 151800 165600 met2 +144900 117300 151800 124200 met1 144900 117300 158700 124200 met1 -151800 117300 158700 124200 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[18\]\[4\] ( @@ -71880,10 +71962,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[18\]\[6\] u_usb_host.u_core.u_fifo_tx.ram\[18\]\[7\] ( 158700 158700 165600 165600 li1 -158700 158700 165600 165600 met1 -158700 151800 165600 165600 met2 -158700 151800 165600 158700 met1 -158700 151800 172500 158700 met1 +158700 158700 172500 165600 met1 +165600 158700 172500 165600 met1 +165600 151800 172500 165600 met2 +165600 151800 172500 158700 met1 165600 151800 172500 158700 li1 131100 158700 138000 165600 li1 131100 158700 165600 165600 met1 @@ -71909,12 +71991,14 @@ u_usb_host.u_core.u_fifo_tx.ram\[19\]\[1\] 172500 13800 179400 20700 met1 172500 13800 179400 20700 li1 138000 89700 144900 96600 li1 -138000 89700 151800 96600 met1 -144900 89700 151800 96600 met1 -144900 27600 151800 96600 met2 -144900 27600 151800 34500 met1 -144900 27600 172500 34500 met1 -165600 27600 172500 34500 met1 +138000 89700 144900 96600 met1 +138000 89700 144900 96600 met2 +138000 89700 151800 96600 met3 +144900 89700 151800 96600 met3 +144900 27600 151800 96600 met4 +144900 27600 151800 34500 met3 +144900 27600 172500 34500 met3 +165600 27600 172500 34500 met2 165600 20700 172500 34500 met2 165600 20700 172500 27600 met1 165600 20700 172500 27600 li1 @@ -71949,10 +72033,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[19\]\[4\] u_usb_host.u_core.u_fifo_tx.ram\[19\]\[5\] ( 165600 248400 172500 255300 li1 -165600 248400 186300 255300 met1 -179400 248400 186300 255300 met1 -179400 241500 186300 255300 met2 -179400 241500 186300 248400 met1 +165600 248400 179400 255300 met1 +172500 248400 179400 255300 met1 +172500 241500 179400 255300 met2 +172500 241500 179400 248400 met1 +172500 241500 186300 248400 met1 179400 241500 186300 248400 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[19\]\[6\] @@ -71993,11 +72078,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[1\]\[1\] u_usb_host.u_core.u_fifo_tx.ram\[1\]\[2\] ( 151800 200100 158700 207000 li1 -151800 200100 200100 207000 met1 -193200 200100 200100 207000 met1 -193200 200100 200100 213900 met2 -193200 207000 200100 213900 met1 -193200 207000 207000 213900 met1 +151800 200100 207000 207000 met1 +200100 200100 207000 207000 met1 +200100 200100 207000 213900 met2 +200100 207000 207000 213900 met1 200100 207000 207000 213900 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[1\]\[3\] @@ -72071,10 +72155,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[20\]\[1\] 165600 34500 172500 41400 met1 165600 34500 172500 41400 li1 131100 82800 138000 89700 li1 -131100 82800 138000 89700 met1 -131100 34500 138000 89700 met2 -131100 34500 138000 41400 met1 -131100 34500 172500 41400 met1 +131100 82800 144900 89700 met1 +138000 82800 144900 89700 met1 +138000 34500 144900 89700 met2 +138000 34500 144900 41400 met1 +138000 34500 172500 41400 met1 ) u_usb_host.u_core.u_fifo_tx.ram\[20\]\[2\] ( @@ -72104,10 +72189,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[20\]\[3\] u_usb_host.u_core.u_fifo_tx.ram\[20\]\[4\] ( 158700 124200 165600 131100 li1 -158700 124200 165600 131100 met1 -158700 124200 165600 138000 met2 -158700 131100 165600 138000 met1 -158700 131100 172500 138000 met1 +158700 124200 172500 131100 met1 +165600 124200 172500 131100 met1 +165600 124200 172500 138000 met2 +165600 131100 172500 138000 met1 165600 131100 172500 138000 li1 117300 124200 124200 131100 li1 117300 124200 165600 131100 met1 @@ -72170,16 +72255,18 @@ u_usb_host.u_core.u_fifo_tx.ram\[21\]\[1\] ) u_usb_host.u_core.u_fifo_tx.ram\[21\]\[2\] ( -193200 82800 200100 89700 li1 -193200 82800 200100 89700 met1 -193200 82800 200100 103500 met2 -158700 144900 165600 151800 li1 -158700 144900 200100 151800 met1 -193200 144900 200100 151800 met1 -193200 96600 200100 151800 met2 -193200 96600 200100 103500 met1 186300 96600 193200 103500 li1 186300 96600 200100 103500 met1 +193200 96600 200100 103500 met1 +193200 82800 200100 103500 met2 +193200 82800 200100 89700 met1 +193200 82800 200100 89700 li1 +158700 144900 165600 151800 li1 +158700 144900 172500 151800 met1 +165600 144900 172500 151800 met1 +165600 96600 172500 151800 met2 +165600 96600 172500 103500 met1 +165600 96600 193200 103500 met1 ) u_usb_host.u_core.u_fifo_tx.ram\[21\]\[3\] ( @@ -72215,12 +72302,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[21\]\[5\] 124200 193200 131100 200100 li1 124200 193200 131100 200100 met1 124200 193200 131100 220800 met2 -124200 213900 131100 220800 met2 -124200 213900 179400 220800 met3 -172500 213900 179400 220800 met3 -172500 213900 179400 262200 met4 -172500 255300 179400 262200 met3 -172500 255300 179400 262200 met2 +124200 213900 131100 220800 met1 +124200 213900 179400 220800 met1 +172500 213900 179400 220800 met1 +172500 213900 179400 262200 met2 172500 255300 179400 262200 met1 172500 255300 179400 262200 li1 ) @@ -72237,10 +72322,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[21\]\[6\] u_usb_host.u_core.u_fifo_tx.ram\[21\]\[7\] ( 158700 227700 165600 234600 li1 -158700 227700 186300 234600 met1 -179400 227700 186300 234600 met1 -179400 220800 186300 234600 met2 -179400 220800 186300 227700 met1 +158700 227700 179400 234600 met1 +172500 227700 179400 234600 met1 +172500 220800 179400 234600 met2 +172500 220800 179400 227700 met1 +172500 220800 186300 227700 met1 179400 220800 186300 227700 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[22\]\[0\] @@ -72262,11 +72348,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[22\]\[1\] 186300 69000 193200 75900 met1 186300 69000 193200 75900 li1 131100 89700 138000 96600 li1 -131100 89700 144900 96600 met1 -138000 89700 144900 96600 met1 -138000 69000 144900 96600 met2 -138000 69000 144900 75900 met1 -138000 69000 193200 75900 met1 +131100 89700 172500 96600 met1 +165600 89700 172500 96600 met1 +165600 69000 172500 96600 met2 +165600 69000 172500 75900 met1 +165600 69000 193200 75900 met1 ) u_usb_host.u_core.u_fifo_tx.ram\[22\]\[2\] ( @@ -72283,11 +72369,13 @@ u_usb_host.u_core.u_fifo_tx.ram\[22\]\[2\] u_usb_host.u_core.u_fifo_tx.ram\[22\]\[3\] ( 69000 103500 75900 110400 li1 -69000 103500 110400 110400 met1 -103500 103500 110400 110400 met1 -103500 96600 110400 110400 met2 -103500 96600 110400 103500 met2 -103500 96600 200100 103500 met3 +69000 103500 75900 110400 met1 +69000 103500 75900 110400 met2 +69000 103500 96600 110400 met3 +89700 103500 96600 110400 met3 +89700 96600 96600 110400 met4 +89700 96600 96600 103500 met3 +89700 96600 200100 103500 met3 193200 96600 200100 103500 met2 193200 96600 200100 103500 met1 193200 96600 200100 103500 li1 @@ -72320,9 +72408,9 @@ u_usb_host.u_core.u_fifo_tx.ram\[22\]\[6\] 124200 193200 131100 200100 li1 124200 193200 131100 200100 met1 124200 193200 131100 213900 met2 -124200 207000 131100 213900 met1 -124200 207000 158700 213900 met1 -151800 207000 158700 213900 met1 +124200 207000 131100 213900 met2 +124200 207000 158700 213900 met3 +151800 207000 158700 213900 met2 151800 207000 158700 220800 met2 151800 213900 158700 220800 met1 151800 213900 193200 220800 met1 @@ -72430,8 +72518,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[23\]\[5\] u_usb_host.u_core.u_fifo_tx.ram\[23\]\[6\] ( 138000 200100 144900 207000 li1 -138000 200100 193200 207000 met1 -186300 200100 193200 207000 met1 +138000 200100 158700 207000 met1 +151800 200100 158700 207000 met1 +151800 200100 158700 207000 met2 +151800 200100 193200 207000 met3 +186300 200100 193200 207000 met2 186300 200100 193200 227700 met2 186300 220800 193200 227700 met1 186300 220800 193200 227700 li1 @@ -72449,10 +72540,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[23\]\[7\] u_usb_host.u_core.u_fifo_tx.ram\[24\]\[0\] ( 200100 131100 207000 138000 li1 -200100 131100 207000 138000 met1 -200100 69000 207000 138000 met2 -200100 69000 207000 75900 met1 -200100 69000 213900 75900 met1 +200100 131100 213900 138000 met1 +207000 131100 213900 138000 met1 +207000 69000 213900 138000 met2 +207000 69000 213900 75900 met1 207000 69000 213900 75900 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[24\]\[1\] @@ -72474,9 +72565,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[24\]\[2\] 186300 82800 193200 89700 met1 186300 82800 193200 89700 li1 138000 117300 144900 124200 li1 -138000 117300 193200 124200 met1 -186300 117300 193200 124200 met1 -186300 89700 193200 124200 met2 +138000 117300 179400 124200 met1 +172500 117300 179400 124200 met1 +172500 89700 179400 124200 met2 +172500 89700 179400 96600 met1 +172500 89700 193200 96600 met1 186300 89700 200100 96600 met1 193200 89700 200100 96600 li1 ) @@ -72497,17 +72590,22 @@ u_usb_host.u_core.u_fifo_tx.ram\[24\]\[3\] ) u_usb_host.u_core.u_fifo_tx.ram\[24\]\[4\] ( -179400 255300 186300 262200 li1 179400 255300 193200 262200 met1 186300 255300 193200 262200 li1 103500 179400 110400 186300 li1 103500 179400 110400 186300 met1 103500 179400 110400 186300 met2 -103500 179400 179400 186300 met3 -172500 179400 179400 186300 met2 -172500 179400 179400 262200 met2 -172500 255300 179400 262200 met1 -172500 255300 186300 262200 met1 +103500 179400 110400 186300 met3 +103500 179400 110400 213900 met4 +103500 207000 110400 213900 met3 +103500 207000 117300 213900 met3 +110400 207000 117300 213900 met3 +110400 207000 117300 262200 met4 +110400 255300 117300 262200 met3 +110400 255300 186300 262200 met3 +179400 255300 186300 262200 met2 +179400 255300 186300 262200 met1 +179400 255300 186300 262200 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[24\]\[5\] ( @@ -72673,9 +72771,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[26\]\[4\] 186300 151800 193200 158700 met1 186300 151800 193200 158700 li1 110400 158700 117300 165600 li1 -110400 158700 117300 165600 met1 -110400 158700 117300 165600 met2 -110400 158700 193200 165600 met3 +110400 158700 138000 165600 met1 +131100 158700 138000 165600 met1 +131100 158700 138000 165600 met2 +131100 158700 193200 165600 met3 186300 158700 193200 165600 met2 186300 158700 193200 165600 met1 186300 158700 193200 165600 li1 @@ -72703,14 +72802,15 @@ u_usb_host.u_core.u_fifo_tx.ram\[26\]\[6\] ) u_usb_host.u_core.u_fifo_tx.ram\[26\]\[7\] ( +186300 144900 193200 151800 li1 186300 144900 200100 151800 met1 193200 144900 200100 151800 li1 138000 151800 144900 158700 li1 -138000 151800 193200 158700 met1 -186300 151800 193200 158700 met1 -186300 144900 193200 158700 met2 -186300 144900 193200 151800 met1 -186300 144900 193200 151800 li1 +138000 151800 179400 158700 met1 +172500 151800 179400 158700 met1 +172500 144900 179400 158700 met2 +172500 144900 179400 151800 met1 +172500 144900 193200 151800 met1 ) u_usb_host.u_core.u_fifo_tx.ram\[27\]\[0\] ( @@ -72777,11 +72877,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[27\]\[5\] u_usb_host.u_core.u_fifo_tx.ram\[27\]\[6\] ( 138000 193200 144900 200100 li1 -138000 193200 179400 200100 met1 -172500 193200 179400 200100 met1 -172500 186300 179400 200100 met2 -172500 186300 179400 193200 met1 -172500 186300 193200 193200 met1 +138000 193200 186300 200100 met1 +179400 193200 186300 200100 met1 +179400 186300 186300 200100 met2 +179400 186300 186300 193200 met1 +179400 186300 193200 193200 met1 186300 186300 193200 193200 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[27\]\[7\] @@ -72830,11 +72930,7 @@ u_usb_host.u_core.u_fifo_tx.ram\[28\]\[2\] u_usb_host.u_core.u_fifo_tx.ram\[28\]\[3\] ( 124200 117300 131100 124200 li1 -124200 117300 131100 124200 met1 -124200 117300 131100 124200 met2 -124200 117300 213900 124200 met3 -207000 117300 213900 124200 met2 -207000 117300 213900 124200 met1 +124200 117300 213900 124200 met1 207000 117300 213900 124200 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[28\]\[4\] @@ -72978,18 +73074,16 @@ u_usb_host.u_core.u_fifo_tx.ram\[2\]\[3\] ( 124200 269100 131100 276000 li1 124200 269100 131100 276000 met1 -124200 269100 131100 276000 met2 -13800 269100 131100 276000 met3 -13800 269100 20700 276000 met3 -13800 151800 20700 276000 met4 -13800 151800 20700 158700 met3 -13800 151800 131100 158700 met3 +124200 262200 131100 276000 met2 +124200 262200 131100 269100 li1 +124200 262200 131100 269100 met1 +124200 262200 131100 269100 met2 +124200 262200 131100 269100 met3 +124200 151800 131100 269100 met4 +124200 151800 131100 158700 met3 124200 151800 131100 158700 met2 124200 151800 131100 158700 met1 124200 151800 131100 158700 li1 -124200 262200 131100 276000 met2 -124200 262200 131100 269100 met1 -124200 262200 131100 269100 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[2\]\[4\] ( @@ -73049,23 +73143,25 @@ u_usb_host.u_core.u_fifo_tx.ram\[30\]\[1\] u_usb_host.u_core.u_fifo_tx.ram\[30\]\[2\] ( 138000 172500 144900 179400 li1 -138000 172500 172500 179400 met1 -165600 172500 172500 179400 met1 -165600 144900 172500 179400 met2 +138000 172500 144900 179400 met1 +138000 165600 144900 179400 met2 +138000 165600 144900 172500 met2 +138000 165600 172500 172500 met3 +165600 165600 172500 172500 met2 +165600 144900 172500 172500 met2 165600 144900 172500 151800 met1 165600 144900 172500 151800 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[30\]\[3\] ( 124200 179400 131100 186300 li1 -124200 179400 165600 186300 met1 -158700 179400 165600 186300 met1 -158700 165600 165600 186300 met2 -158700 165600 165600 172500 met1 -158700 165600 179400 172500 met1 -172500 165600 179400 172500 met1 -172500 144900 179400 172500 met2 -172500 144900 179400 151800 met1 +124200 179400 131100 186300 met1 +124200 179400 131100 186300 met2 +124200 179400 186300 186300 met3 +179400 179400 186300 186300 met2 +179400 144900 186300 186300 met2 +179400 144900 186300 151800 met1 +172500 144900 186300 151800 met1 172500 144900 179400 151800 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[30\]\[4\] @@ -73125,34 +73221,30 @@ u_usb_host.u_core.u_fifo_tx.ram\[31\]\[1\] ) u_usb_host.u_core.u_fifo_tx.ram\[31\]\[2\] ( +165600 324300 172500 331200 li1 +165600 324300 172500 331200 met1 165600 324300 172500 338100 met2 165600 331200 172500 338100 met1 165600 331200 172500 338100 li1 158700 151800 165600 158700 li1 -158700 151800 172500 158700 met1 -165600 151800 172500 158700 met1 -165600 151800 172500 165600 met2 -165600 158700 172500 165600 met2 -165600 158700 172500 165600 met3 -165600 158700 172500 331200 met4 -165600 324300 172500 331200 met3 -165600 324300 172500 331200 met2 -165600 324300 172500 331200 met1 -165600 324300 172500 331200 li1 +158700 151800 200100 158700 met1 +193200 151800 200100 158700 met1 +193200 151800 200100 331200 met2 +193200 324300 200100 331200 met1 +165600 324300 200100 331200 met1 ) u_usb_host.u_core.u_fifo_tx.ram\[31\]\[3\] ( -172500 317400 179400 324300 li1 -172500 317400 179400 324300 met1 172500 317400 179400 331200 met2 172500 324300 179400 331200 met1 172500 324300 186300 331200 met1 179400 324300 186300 331200 li1 151800 248400 158700 255300 li1 -151800 248400 158700 255300 met1 -151800 248400 158700 324300 met2 -151800 317400 158700 324300 met1 -151800 317400 179400 324300 met1 +151800 248400 179400 255300 met1 +172500 248400 179400 255300 met1 +172500 248400 179400 324300 met2 +172500 317400 179400 324300 met1 +172500 317400 179400 324300 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[31\]\[4\] ( @@ -73178,10 +73270,9 @@ u_usb_host.u_core.u_fifo_tx.ram\[31\]\[5\] ( 110400 179400 117300 186300 li1 110400 179400 117300 186300 met1 -110400 179400 117300 193200 met2 -110400 186300 117300 193200 met2 -110400 186300 117300 193200 met3 -110400 186300 117300 303600 met4 +110400 179400 117300 186300 met2 +110400 179400 117300 186300 met3 +110400 179400 117300 303600 met4 110400 296700 117300 303600 met3 110400 296700 186300 303600 met3 179400 296700 186300 303600 met2 @@ -73234,11 +73325,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[32\]\[1\] 110400 96600 117300 103500 li1 110400 96600 117300 103500 met1 110400 96600 117300 103500 met2 -110400 96600 172500 103500 met3 -165600 96600 172500 103500 met2 -165600 62100 172500 103500 met2 -165600 62100 172500 69000 met1 -165600 62100 179400 69000 met1 +110400 96600 179400 103500 met3 +172500 96600 179400 103500 met2 +172500 62100 179400 103500 met2 +172500 62100 179400 69000 met1 172500 62100 179400 69000 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[32\]\[2\] @@ -73335,27 +73425,26 @@ u_usb_host.u_core.u_fifo_tx.ram\[33\]\[2\] 165600 69000 179400 75900 met1 172500 69000 179400 75900 li1 138000 96600 144900 103500 li1 -138000 96600 158700 103500 met1 -151800 96600 158700 103500 met1 -151800 75900 158700 103500 met2 -151800 75900 158700 82800 met1 -151800 75900 172500 82800 met1 +138000 96600 172500 103500 met1 +165600 96600 172500 103500 met1 +165600 75900 172500 103500 met2 ) u_usb_host.u_core.u_fifo_tx.ram\[33\]\[3\] ( +165600 96600 172500 103500 li1 +165600 96600 172500 103500 met1 165600 89700 172500 103500 met2 165600 89700 172500 96600 met1 165600 89700 172500 96600 li1 117300 158700 124200 165600 li1 117300 158700 124200 165600 met1 117300 158700 124200 165600 met2 -117300 158700 172500 165600 met3 -165600 158700 172500 165600 met3 -165600 96600 172500 165600 met4 -165600 96600 172500 103500 met3 -165600 96600 172500 103500 met2 -165600 96600 172500 103500 met1 -165600 96600 172500 103500 li1 +117300 158700 151800 165600 met3 +144900 158700 151800 165600 met2 +144900 158700 151800 165600 met1 +144900 158700 172500 165600 met1 +165600 158700 172500 165600 met1 +165600 96600 172500 165600 met2 ) u_usb_host.u_core.u_fifo_tx.ram\[33\]\[4\] ( @@ -73379,11 +73468,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[33\]\[5\] u_usb_host.u_core.u_fifo_tx.ram\[33\]\[6\] ( 124200 186300 131100 193200 li1 -124200 186300 144900 193200 met1 -138000 186300 144900 193200 met1 -138000 179400 144900 193200 met2 -138000 179400 144900 186300 met1 -138000 179400 158700 186300 met1 +124200 186300 158700 193200 met1 +151800 186300 158700 193200 met1 +151800 179400 158700 193200 met2 +151800 179400 158700 186300 met1 151800 179400 158700 186300 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[33\]\[7\] @@ -73443,12 +73531,13 @@ u_usb_host.u_core.u_fifo_tx.ram\[34\]\[3\] 27600 55200 34500 62100 li1 27600 55200 41400 62100 met1 34500 55200 41400 62100 li1 -34500 55200 41400 62100 met1 -34500 55200 41400 75900 met2 -34500 69000 41400 75900 met2 -34500 69000 117300 75900 met3 -110400 69000 117300 75900 met3 -110400 69000 117300 138000 met4 +34500 55200 69000 62100 met1 +62100 55200 69000 62100 met1 +62100 55200 69000 69000 met2 +62100 62100 69000 69000 met2 +62100 62100 117300 69000 met3 +110400 62100 117300 69000 met3 +110400 62100 117300 138000 met4 110400 131100 117300 138000 met3 110400 131100 117300 138000 met2 110400 131100 117300 138000 met1 @@ -73486,10 +73575,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[34\]\[6\] u_usb_host.u_core.u_fifo_tx.ram\[34\]\[7\] ( 82800 158700 89700 165600 li1 -82800 158700 117300 165600 met1 -110400 158700 117300 165600 met1 -110400 158700 117300 165600 met2 -110400 158700 151800 165600 met3 +82800 158700 103500 165600 met1 +96600 158700 103500 165600 met1 +96600 158700 103500 165600 met2 +96600 158700 151800 165600 met3 144900 158700 151800 165600 met2 144900 158700 151800 165600 met1 144900 158700 151800 165600 li1 @@ -73503,11 +73592,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[35\]\[0\] u_usb_host.u_core.u_fifo_tx.ram\[35\]\[1\] ( 27600 75900 34500 82800 li1 -27600 75900 82800 82800 met1 -75900 75900 82800 82800 met1 -75900 75900 82800 89700 met2 -75900 82800 82800 89700 met1 -75900 82800 96600 89700 met1 +27600 75900 69000 82800 met1 +62100 75900 69000 82800 met1 +62100 75900 69000 89700 met2 +62100 82800 69000 89700 met1 +62100 82800 96600 89700 met1 89700 82800 96600 89700 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[35\]\[2\] @@ -73519,9 +73608,9 @@ u_usb_host.u_core.u_fifo_tx.ram\[35\]\[2\] 41400 69000 48300 213900 met4 41400 207000 48300 213900 met3 41400 207000 69000 213900 met3 -62100 207000 69000 213900 met2 -62100 207000 69000 227700 met2 -62100 220800 69000 227700 met2 +62100 207000 69000 213900 met3 +62100 207000 69000 227700 met4 +62100 220800 69000 227700 met3 62100 220800 103500 227700 met3 96600 220800 103500 227700 met2 96600 220800 103500 227700 met1 @@ -73530,15 +73619,15 @@ u_usb_host.u_core.u_fifo_tx.ram\[35\]\[2\] u_usb_host.u_core.u_fifo_tx.ram\[35\]\[3\] ( 27600 103500 34500 110400 li1 -13800 103500 34500 110400 met1 -13800 103500 20700 110400 met1 -13800 103500 20700 193200 met2 -13800 186300 20700 193200 met2 -13800 186300 151800 193200 met3 -144900 186300 151800 193200 met2 -144900 186300 151800 200100 met2 -144900 193200 151800 200100 met1 -138000 193200 151800 200100 met1 +27600 103500 34500 110400 met1 +27600 103500 34500 110400 met2 +27600 103500 41400 110400 met3 +34500 103500 41400 110400 met3 +34500 103500 41400 200100 met4 +34500 193200 41400 200100 met3 +34500 193200 144900 200100 met3 +138000 193200 144900 200100 met2 +138000 193200 144900 200100 met1 138000 193200 144900 200100 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[35\]\[4\] @@ -73568,11 +73657,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[35\]\[7\] 103500 193200 110400 200100 met1 103500 193200 110400 213900 met2 103500 207000 110400 213900 met2 -103500 207000 124200 213900 met3 -117300 207000 124200 213900 met2 -117300 207000 124200 227700 met2 -117300 220800 124200 227700 met1 -117300 220800 138000 227700 met1 +103500 207000 131100 213900 met3 +124200 207000 131100 213900 met2 +124200 207000 131100 227700 met2 +124200 220800 131100 227700 met1 +124200 220800 138000 227700 met1 131100 220800 138000 227700 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[36\]\[0\] @@ -73596,10 +73685,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[36\]\[1\] u_usb_host.u_core.u_fifo_tx.ram\[36\]\[2\] ( 41400 69000 48300 75900 li1 -41400 69000 48300 75900 met1 -41400 69000 48300 124200 met2 -41400 117300 48300 124200 met2 -41400 117300 89700 124200 met3 +41400 69000 55200 75900 met1 +48300 69000 55200 75900 met1 +48300 69000 55200 124200 met2 +48300 117300 55200 124200 met2 +48300 117300 89700 124200 met3 82800 117300 89700 124200 met2 82800 117300 89700 138000 met2 82800 131100 89700 138000 met1 @@ -73658,11 +73748,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[37\]\[0\] 34500 89700 41400 96600 li1 34500 89700 48300 96600 met1 41400 89700 48300 96600 li1 -41400 89700 89700 96600 met1 -82800 89700 89700 96600 met1 -82800 89700 89700 103500 met2 -82800 96600 89700 103500 met1 -82800 96600 103500 103500 met1 +41400 89700 69000 96600 met1 +62100 89700 69000 96600 met1 +62100 89700 69000 103500 met2 +62100 96600 69000 103500 met1 +62100 96600 103500 103500 met1 96600 96600 103500 103500 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[37\]\[1\] @@ -73694,16 +73784,16 @@ u_usb_host.u_core.u_fifo_tx.ram\[37\]\[3\] 27600 55200 34500 62100 li1 27600 55200 34500 62100 met1 27600 55200 34500 69000 met2 -27600 62100 34500 69000 li1 27600 62100 34500 69000 met1 -27600 62100 34500 69000 met2 -27600 62100 110400 69000 met3 -103500 62100 110400 69000 met3 -103500 62100 110400 124200 met4 -103500 117300 110400 124200 met3 -103500 117300 117300 124200 met3 -110400 117300 117300 124200 met2 -110400 117300 117300 144900 met2 +27600 62100 34500 69000 li1 +27600 62100 34500 75900 met2 +27600 69000 34500 75900 met2 +27600 69000 117300 75900 met3 +110400 69000 117300 75900 met3 +110400 69000 117300 117300 met4 +110400 110400 117300 117300 met3 +110400 110400 117300 117300 met2 +110400 110400 117300 144900 met2 110400 138000 117300 144900 met1 110400 138000 117300 144900 li1 ) @@ -73780,7 +73870,13 @@ u_usb_host.u_core.u_fifo_tx.ram\[38\]\[3\] 13800 151800 20700 158700 li1 13800 151800 27600 158700 met1 20700 151800 27600 158700 li1 -20700 151800 124200 158700 met1 +20700 151800 69000 158700 met1 +62100 151800 69000 158700 met1 +62100 151800 69000 158700 met2 +62100 151800 117300 158700 met3 +110400 151800 117300 158700 met2 +110400 151800 117300 158700 met1 +110400 151800 124200 158700 met1 117300 151800 124200 158700 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[38\]\[4\] @@ -73816,16 +73912,14 @@ u_usb_host.u_core.u_fifo_tx.ram\[38\]\[7\] ( 34500 234600 41400 241500 li1 34500 234600 48300 241500 met1 -41400 234600 124200 241500 met1 -117300 234600 124200 241500 met1 -117300 227700 124200 241500 met2 -117300 227700 124200 234600 met1 -117300 227700 131100 234600 met1 +41400 234600 48300 241500 met1 +41400 227700 48300 241500 met2 +41400 227700 48300 234600 met1 +41400 227700 131100 234600 met1 124200 227700 131100 234600 li1 41400 241500 48300 248400 li1 41400 241500 48300 248400 met1 41400 234600 48300 248400 met2 -41400 234600 48300 241500 met1 ) u_usb_host.u_core.u_fifo_tx.ram\[39\]\[0\] ( @@ -73870,18 +73964,19 @@ u_usb_host.u_core.u_fifo_tx.ram\[39\]\[3\] 13800 144900 41400 151800 met1 34500 144900 41400 151800 met1 34500 110400 41400 151800 met2 -34500 110400 41400 117300 met1 -34500 110400 75900 117300 met1 +34500 110400 41400 117300 met2 +34500 110400 75900 117300 met3 +69000 110400 75900 117300 met2 +69000 110400 75900 117300 met1 69000 110400 75900 117300 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[39\]\[4\] ( 27600 207000 34500 213900 li1 -27600 207000 41400 213900 met1 -34500 207000 41400 213900 met1 -34500 186300 41400 213900 met2 -34500 186300 41400 193200 met1 -34500 186300 82800 193200 met1 +27600 207000 34500 213900 met1 +27600 186300 34500 213900 met2 +27600 186300 34500 193200 met1 +27600 186300 82800 193200 met1 75900 186300 82800 193200 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[39\]\[5\] @@ -73889,11 +73984,12 @@ u_usb_host.u_core.u_fifo_tx.ram\[39\]\[5\] 20700 200100 27600 207000 li1 20700 200100 34500 207000 met1 27600 200100 34500 207000 met1 -27600 200100 34500 207000 met2 -27600 200100 89700 207000 met3 -82800 200100 89700 207000 met2 -82800 193200 89700 207000 met2 -82800 193200 89700 200100 met1 +27600 193200 34500 207000 met2 +27600 193200 34500 200100 met2 +27600 193200 75900 200100 met3 +69000 193200 75900 200100 met2 +69000 193200 75900 200100 met1 +69000 193200 89700 200100 met1 82800 193200 89700 200100 li1 27600 200100 34500 213900 met2 27600 207000 34500 213900 met1 @@ -73946,12 +74042,9 @@ u_usb_host.u_core.u_fifo_tx.ram\[3\]\[2\] 131100 289800 138000 296700 met1 131100 282900 138000 296700 met2 124200 200100 131100 207000 li1 -124200 200100 131100 207000 met1 -124200 200100 131100 227700 met2 -124200 220800 131100 227700 met2 -124200 220800 138000 227700 met3 -131100 220800 138000 227700 met2 -131100 220800 138000 289800 met2 +124200 200100 138000 207000 met1 +131100 200100 138000 207000 met1 +131100 200100 138000 289800 met2 131100 282900 138000 289800 met1 131100 282900 138000 289800 li1 ) @@ -74043,13 +74136,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[40\]\[3\] 13800 172500 20700 179400 met1 13800 158700 20700 179400 met2 13800 158700 20700 165600 met1 -13800 158700 69000 165600 met1 -62100 158700 69000 165600 met1 -62100 151800 69000 165600 met2 -62100 151800 69000 158700 met2 -62100 151800 96600 158700 met3 -89700 151800 96600 158700 met2 -89700 151800 96600 158700 met1 +13800 158700 82800 165600 met1 +75900 158700 82800 165600 met1 +75900 151800 82800 165600 met2 +75900 151800 82800 158700 met1 +75900 151800 96600 158700 met1 89700 151800 96600 158700 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[40\]\[4\] @@ -74071,10 +74162,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[40\]\[5\] 20700 193200 34500 200100 met1 27600 193200 34500 200100 li1 27600 193200 34500 200100 met1 -27600 172500 34500 200100 met2 -27600 172500 34500 179400 met2 -27600 172500 117300 179400 met3 -110400 172500 117300 179400 met2 +27600 179400 34500 200100 met2 +27600 179400 34500 186300 met2 +27600 179400 117300 186300 met3 +110400 179400 117300 186300 met2 +110400 172500 117300 186300 met2 110400 172500 117300 179400 met1 110400 172500 117300 179400 li1 ) @@ -74093,11 +74185,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[40\]\[6\] u_usb_host.u_core.u_fifo_tx.ram\[40\]\[7\] ( 27600 227700 34500 234600 li1 -27600 227700 69000 234600 met1 -62100 227700 69000 234600 met1 -62100 220800 69000 234600 met2 -62100 220800 69000 227700 met1 -62100 220800 82800 227700 met1 +27600 227700 82800 234600 met1 +75900 227700 82800 234600 met1 +75900 220800 82800 234600 met2 +75900 220800 82800 227700 met1 75900 220800 82800 227700 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[41\]\[0\] @@ -74209,19 +74300,21 @@ u_usb_host.u_core.u_fifo_tx.ram\[42\]\[1\] 20700 117300 27600 131100 met2 20700 124200 27600 131100 met1 20700 124200 27600 131100 li1 -20700 124200 27600 138000 met2 -20700 131100 27600 138000 met1 -20700 131100 75900 138000 met1 +20700 124200 55200 131100 met1 +48300 124200 55200 131100 met1 +48300 124200 55200 138000 met2 +48300 131100 55200 138000 met1 +48300 131100 75900 138000 met1 69000 131100 75900 138000 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[42\]\[2\] ( 13800 124200 20700 131100 li1 -13800 124200 82800 131100 met1 -75900 124200 82800 131100 met1 -75900 124200 82800 138000 met2 -75900 131100 82800 138000 met2 -75900 131100 103500 138000 met3 +13800 124200 89700 131100 met1 +82800 124200 89700 131100 met1 +82800 124200 89700 138000 met2 +82800 131100 89700 138000 met2 +82800 131100 103500 138000 met3 96600 131100 103500 138000 met2 96600 131100 103500 138000 met1 96600 131100 103500 138000 li1 @@ -74231,10 +74324,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[42\]\[3\] 13800 117300 20700 124200 li1 13800 117300 27600 124200 met1 20700 117300 27600 124200 li1 -20700 117300 82800 124200 met1 -75900 117300 82800 124200 met1 -75900 117300 82800 138000 met2 -75900 131100 82800 138000 met1 +20700 117300 48300 124200 met1 +41400 117300 48300 124200 met1 +41400 117300 48300 138000 met2 +41400 131100 48300 138000 met1 +41400 131100 82800 138000 met1 75900 131100 82800 138000 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[42\]\[4\] @@ -74292,11 +74386,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[43\]\[0\] u_usb_host.u_core.u_fifo_tx.ram\[43\]\[1\] ( 20700 131100 27600 138000 li1 -20700 131100 48300 138000 met1 -41400 131100 48300 138000 met1 -41400 131100 48300 144900 met2 -41400 138000 48300 144900 met1 -41400 138000 75900 144900 met1 +20700 131100 34500 138000 met1 +27600 131100 34500 138000 met1 +27600 131100 34500 144900 met2 +27600 138000 34500 144900 met1 +27600 138000 75900 144900 met1 69000 138000 75900 144900 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[43\]\[2\] @@ -74332,10 +74426,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[43\]\[4\] u_usb_host.u_core.u_fifo_tx.ram\[43\]\[5\] ( 34500 110400 41400 117300 li1 -34500 110400 89700 117300 met1 -82800 110400 89700 117300 met1 -82800 103500 89700 117300 met2 -82800 103500 89700 110400 met1 +34500 110400 75900 117300 met1 +69000 110400 75900 117300 met1 +69000 103500 75900 117300 met2 +69000 103500 75900 110400 met1 +69000 103500 89700 110400 met1 82800 103500 89700 110400 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[43\]\[6\] @@ -74411,10 +74506,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[44\]\[4\] u_usb_host.u_core.u_fifo_tx.ram\[44\]\[5\] ( 41400 193200 48300 200100 li1 -41400 193200 48300 200100 met1 -41400 193200 48300 213900 met2 -41400 207000 48300 213900 met1 -41400 207000 82800 213900 met1 +41400 193200 75900 200100 met1 +69000 193200 75900 200100 met1 +69000 193200 75900 213900 met2 +69000 207000 75900 213900 met1 +69000 207000 82800 213900 met1 75900 207000 82800 213900 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[44\]\[6\] @@ -74591,13 +74687,14 @@ u_usb_host.u_core.u_fifo_tx.ram\[46\]\[6\] ) u_usb_host.u_core.u_fifo_tx.ram\[46\]\[7\] ( -48300 172500 55200 179400 li1 -48300 172500 55200 179400 met1 48300 172500 55200 186300 met2 48300 179400 55200 186300 met1 48300 179400 55200 186300 li1 -48300 172500 96600 179400 met1 -89700 172500 96600 179400 met1 +48300 172500 55200 179400 li1 +48300 172500 55200 179400 met1 +48300 172500 55200 179400 met2 +48300 172500 96600 179400 met3 +89700 172500 96600 179400 met2 89700 165600 96600 179400 met2 89700 165600 96600 172500 met2 89700 165600 151800 172500 met3 @@ -74788,10 +74885,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[49\]\[3\] 48300 144900 55200 151800 li1 48300 144900 62100 151800 met1 55200 144900 62100 151800 li1 -55200 144900 117300 151800 met1 -110400 144900 117300 151800 met1 -110400 144900 117300 158700 met2 -110400 151800 117300 158700 met1 +55200 144900 103500 151800 met1 +96600 144900 103500 151800 met1 +96600 144900 103500 158700 met2 +96600 151800 103500 158700 met1 +96600 151800 117300 158700 met1 110400 151800 117300 158700 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[49\]\[4\] @@ -74839,11 +74937,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[49\]\[7\] 131100 158700 138000 165600 met1 131100 158700 138000 165600 li1 55200 172500 62100 179400 li1 -55200 172500 96600 179400 met1 -89700 172500 96600 179400 met1 -89700 165600 96600 179400 met2 -89700 165600 96600 172500 met1 -89700 165600 138000 172500 met1 +55200 172500 69000 179400 met1 +62100 172500 69000 179400 met1 +62100 165600 69000 179400 met2 +62100 165600 69000 172500 met1 +62100 165600 138000 172500 met1 ) u_usb_host.u_core.u_fifo_tx.ram\[4\]\[0\] ( @@ -74872,14 +74970,13 @@ u_usb_host.u_core.u_fifo_tx.ram\[4\]\[2\] 131100 282900 138000 289800 li1 131100 282900 138000 289800 met1 131100 276000 138000 289800 met2 -89700 234600 96600 241500 li1 -89700 234600 96600 241500 met1 -89700 234600 96600 241500 met2 -89700 234600 138000 241500 met3 -131100 234600 138000 241500 met2 -131100 234600 138000 282900 met2 131100 276000 138000 282900 met1 131100 276000 138000 282900 li1 +89700 234600 96600 241500 li1 +89700 234600 96600 241500 met1 +89700 234600 96600 282900 met2 +89700 276000 96600 282900 met1 +89700 276000 138000 282900 met1 ) u_usb_host.u_core.u_fifo_tx.ram\[4\]\[3\] ( @@ -74944,14 +75041,14 @@ u_usb_host.u_core.u_fifo_tx.ram\[50\]\[0\] ) u_usb_host.u_core.u_fifo_tx.ram\[50\]\[1\] ( -103500 20700 110400 27600 li1 103500 20700 117300 27600 met1 110400 20700 117300 27600 li1 96600 75900 103500 82800 li1 -96600 75900 103500 82800 met1 -96600 20700 103500 82800 met2 -96600 20700 103500 27600 met1 -96600 20700 110400 27600 met1 +96600 75900 110400 82800 met1 +103500 75900 110400 82800 met1 +103500 20700 110400 82800 met2 +103500 20700 110400 27600 met1 +103500 20700 110400 27600 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[50\]\[2\] ( @@ -74974,35 +75071,36 @@ u_usb_host.u_core.u_fifo_tx.ram\[50\]\[3\] 89700 144900 96600 151800 li1 89700 144900 96600 151800 met1 89700 144900 96600 151800 met2 -41400 144900 96600 151800 met3 -41400 144900 48300 151800 met2 -41400 27600 48300 151800 met2 -41400 27600 48300 34500 met1 -41400 27600 124200 34500 met1 +48300 144900 96600 151800 met3 +48300 144900 55200 151800 met3 +48300 27600 55200 151800 met4 +48300 27600 55200 34500 met3 +48300 27600 124200 34500 met3 +117300 27600 124200 34500 met2 +117300 27600 124200 34500 met1 +117300 27600 124200 34500 li1 117300 13800 124200 20700 li1 117300 13800 124200 20700 met1 117300 13800 124200 34500 met2 -117300 27600 124200 34500 met1 -117300 27600 124200 34500 li1 89700 144900 103500 151800 met1 96600 144900 103500 151800 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[50\]\[4\] ( -82800 55200 89700 62100 li1 -82800 55200 89700 62100 met1 -82800 55200 89700 75900 met2 -82800 69000 89700 75900 met2 -82800 69000 89700 75900 met3 -82800 69000 89700 151800 met4 -82800 144900 89700 151800 met3 -82800 144900 89700 151800 met2 -82800 144900 89700 151800 met1 +75900 144900 89700 151800 met1 82800 144900 89700 151800 li1 -75900 55200 82800 62100 li1 75900 55200 89700 62100 met1 +82800 55200 89700 62100 li1 +75900 55200 82800 62100 li1 +75900 55200 82800 62100 met1 +75900 55200 82800 110400 met2 +75900 103500 82800 110400 met2 +75900 103500 82800 110400 met3 +75900 103500 82800 151800 met4 +75900 144900 82800 151800 met3 +75900 144900 82800 151800 met2 +75900 144900 82800 151800 met1 75900 144900 82800 151800 li1 -75900 144900 89700 151800 met1 ) u_usb_host.u_core.u_fifo_tx.ram\[50\]\[5\] ( @@ -75021,16 +75119,15 @@ u_usb_host.u_core.u_fifo_tx.ram\[50\]\[6\] 110400 55200 117300 62100 li1 110400 55200 124200 62100 met1 117300 55200 124200 62100 li1 -117300 55200 131100 62100 met1 -124200 55200 131100 62100 met1 -124200 55200 131100 75900 met2 -124200 69000 131100 75900 met2 -124200 69000 131100 75900 met3 -124200 69000 131100 144900 met4 -124200 138000 131100 144900 met3 -117300 138000 131100 144900 met3 -117300 138000 124200 144900 met2 -117300 138000 124200 144900 met1 +117300 55200 144900 62100 met1 +138000 55200 144900 62100 met1 +138000 55200 144900 131100 met2 +138000 124200 144900 131100 met2 +124200 124200 144900 131100 met3 +124200 124200 131100 131100 met2 +124200 124200 131100 144900 met2 +124200 138000 131100 144900 met1 +117300 138000 131100 144900 met1 117300 138000 124200 144900 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[50\]\[7\] @@ -75068,28 +75165,27 @@ u_usb_host.u_core.u_fifo_tx.ram\[51\]\[1\] ) u_usb_host.u_core.u_fifo_tx.ram\[51\]\[2\] ( -151800 200100 165600 207000 met3 -158700 200100 165600 207000 met2 -158700 200100 165600 207000 met1 +151800 200100 165600 207000 met1 158700 200100 165600 207000 li1 +144900 20700 158700 27600 met1 144900 20700 151800 27600 li1 144900 20700 151800 27600 met1 144900 20700 151800 34500 met2 -144900 20700 158700 27600 met1 +144900 27600 151800 34500 met1 +144900 27600 151800 34500 li1 +151800 20700 241500 27600 met1 +234600 20700 241500 27600 met1 +234600 20700 241500 186300 met2 +234600 179400 241500 186300 met2 +151800 179400 241500 186300 met3 +151800 179400 158700 186300 met2 +151800 179400 158700 207000 met2 +151800 200100 158700 207000 met1 +151800 200100 158700 207000 li1 151800 20700 158700 27600 met1 151800 13800 158700 27600 met2 151800 13800 158700 20700 met1 151800 13800 158700 20700 li1 -144900 27600 151800 34500 li1 -144900 27600 151800 34500 met1 -144900 27600 151800 34500 met2 -144900 27600 158700 34500 met3 -151800 27600 158700 34500 met3 -151800 27600 158700 207000 met4 -151800 200100 158700 207000 met3 -151800 200100 158700 207000 met2 -151800 200100 158700 207000 met1 -151800 200100 158700 207000 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[51\]\[3\] ( @@ -75098,9 +75194,12 @@ u_usb_host.u_core.u_fifo_tx.ram\[51\]\[3\] 117300 151800 124200 158700 met2 117300 151800 151800 158700 met3 144900 151800 151800 158700 met3 -144900 20700 151800 158700 met4 -144900 20700 151800 27600 met3 -124200 20700 151800 27600 met3 +144900 89700 151800 158700 met4 +144900 89700 151800 96600 met3 +124200 89700 151800 96600 met3 +124200 89700 131100 96600 met3 +124200 20700 131100 96600 met4 +124200 20700 131100 27600 met3 124200 20700 131100 27600 met2 124200 20700 131100 27600 met1 124200 20700 131100 27600 li1 @@ -75133,21 +75232,23 @@ u_usb_host.u_core.u_fifo_tx.ram\[51\]\[5\] ) u_usb_host.u_core.u_fifo_tx.ram\[51\]\[6\] ( -103500 55200 124200 62100 met1 -103500 55200 110400 62100 met1 -103500 55200 110400 82800 met2 -103500 75900 110400 82800 met2 -103500 75900 110400 82800 met3 -103500 75900 110400 158700 met4 -103500 151800 110400 158700 met3 -89700 151800 110400 158700 met3 -89700 151800 96600 158700 met2 -89700 151800 96600 172500 met2 -89700 165600 96600 172500 met1 -89700 165600 124200 172500 met1 -117300 165600 124200 172500 li1 117300 55200 124200 62100 li1 117300 55200 124200 62100 met1 +117300 55200 124200 75900 met2 +117300 69000 124200 75900 met2 +117300 69000 151800 75900 met3 +144900 69000 151800 75900 met3 +144900 69000 151800 151800 met4 +144900 144900 151800 151800 met3 +144900 144900 158700 151800 met3 +151800 144900 158700 151800 met3 +151800 144900 158700 165600 met4 +151800 158700 158700 165600 met3 +117300 158700 158700 165600 met3 +117300 158700 124200 165600 met2 +117300 158700 124200 172500 met2 +117300 165600 124200 172500 met1 +117300 165600 124200 172500 li1 117300 48300 124200 62100 met2 117300 48300 124200 55200 met1 117300 48300 124200 55200 li1 @@ -75206,22 +75307,17 @@ u_usb_host.u_core.u_fifo_tx.ram\[52\]\[2\] ) u_usb_host.u_core.u_fifo_tx.ram\[52\]\[3\] ( -103500 124200 110400 131100 li1 -103500 124200 117300 131100 met1 117300 20700 124200 27600 li1 117300 20700 124200 27600 met1 117300 20700 124200 34500 met2 -117300 27600 124200 34500 li1 117300 27600 124200 34500 met1 -117300 27600 124200 89700 met2 -117300 82800 124200 89700 met2 -110400 82800 124200 89700 met3 -110400 82800 117300 89700 met3 -110400 82800 117300 131100 met4 -110400 124200 117300 131100 met3 -110400 124200 117300 131100 met2 -110400 124200 117300 131100 met1 -110400 124200 124200 131100 met1 +117300 27600 124200 34500 li1 +103500 27600 124200 34500 met1 +103500 27600 110400 34500 met1 +103500 27600 110400 131100 met2 +103500 124200 110400 131100 met1 +103500 124200 110400 131100 li1 +103500 124200 124200 131100 met1 117300 124200 124200 131100 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[52\]\[4\] @@ -75241,10 +75337,12 @@ u_usb_host.u_core.u_fifo_tx.ram\[52\]\[5\] 96600 41400 103500 48300 li1 96600 41400 103500 48300 met1 96600 41400 103500 55200 met2 -96600 48300 103500 55200 met1 -96600 48300 117300 55200 met1 -110400 48300 117300 55200 met1 -110400 48300 117300 103500 met2 +96600 48300 103500 55200 met2 +96600 48300 117300 55200 met3 +110400 48300 117300 55200 met3 +110400 48300 117300 103500 met4 +110400 96600 117300 103500 met3 +110400 96600 117300 103500 met2 110400 96600 117300 103500 met1 110400 96600 117300 103500 li1 ) @@ -75264,30 +75362,27 @@ u_usb_host.u_core.u_fifo_tx.ram\[52\]\[6\] ) u_usb_host.u_core.u_fifo_tx.ram\[52\]\[7\] ( -124200 41400 131100 48300 li1 -124200 41400 131100 48300 met1 -124200 41400 131100 89700 met2 -124200 82800 131100 89700 met2 -124200 82800 151800 89700 met3 -144900 82800 151800 89700 met3 -144900 82800 151800 151800 met4 -144900 144900 151800 151800 met3 -131100 144900 151800 151800 met3 -124200 158700 131100 165600 li1 -124200 158700 131100 165600 met1 -124200 158700 131100 165600 met2 -124200 158700 131100 165600 met3 -124200 151800 131100 165600 met4 -124200 151800 131100 158700 met3 -124200 151800 138000 158700 met3 -131100 151800 138000 158700 met3 -131100 144900 138000 158700 met4 +131100 41400 138000 48300 li1 +131100 41400 158700 48300 met1 +151800 41400 158700 48300 met1 +151800 41400 158700 138000 met2 +151800 131100 158700 138000 met2 +131100 131100 158700 138000 met3 +131100 131100 138000 138000 met3 +131100 131100 138000 151800 met4 131100 144900 138000 151800 met3 131100 144900 138000 151800 met2 131100 144900 138000 151800 met1 131100 144900 138000 151800 li1 +124200 41400 131100 48300 li1 124200 41400 138000 48300 met1 -131100 41400 138000 48300 li1 +124200 158700 131100 165600 li1 +124200 158700 131100 165600 met1 +124200 158700 131100 165600 met2 +124200 158700 131100 165600 met3 +124200 144900 131100 165600 met4 +124200 144900 131100 151800 met3 +124200 144900 138000 151800 met3 ) u_usb_host.u_core.u_fifo_tx.ram\[53\]\[0\] ( @@ -75358,11 +75453,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[53\]\[4\] ( 96600 62100 103500 69000 li1 96600 62100 103500 69000 met1 -96600 62100 103500 103500 met2 -96600 96600 103500 103500 met2 -96600 96600 110400 103500 met3 -103500 96600 110400 103500 met2 -103500 96600 110400 138000 met2 +96600 62100 103500 89700 met2 +96600 82800 103500 89700 met1 +96600 82800 110400 89700 met1 +103500 82800 110400 89700 met1 +103500 82800 110400 138000 met2 103500 131100 110400 138000 met1 103500 131100 110400 138000 li1 96600 55200 103500 69000 met2 @@ -75477,11 +75572,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[54\]\[5\] 69000 41400 75900 55200 met2 69000 48300 75900 55200 met1 69000 48300 75900 55200 li1 -69000 48300 82800 55200 met1 -75900 48300 82800 55200 met1 -75900 48300 82800 110400 met2 -75900 103500 82800 110400 met1 -75900 103500 89700 110400 met1 +69000 48300 89700 55200 met1 +82800 48300 89700 55200 met1 +82800 48300 89700 110400 met2 +82800 103500 89700 110400 met1 82800 103500 89700 110400 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[54\]\[6\] @@ -75536,10 +75630,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[55\]\[2\] 138000 131100 144900 138000 met1 138000 131100 144900 138000 met2 138000 131100 144900 138000 met3 -138000 27600 144900 138000 met4 -138000 27600 144900 34500 met3 -138000 27600 144900 34500 met2 -138000 20700 144900 34500 met2 +138000 41400 144900 138000 met4 +138000 41400 144900 48300 met3 +138000 41400 144900 48300 met2 +138000 20700 144900 48300 met2 138000 20700 144900 27600 met1 138000 20700 144900 27600 li1 138000 131100 144900 144900 met2 @@ -75555,9 +75649,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[55\]\[3\] 124200 138000 131100 151800 met2 124200 138000 131100 144900 met2 124200 138000 131100 144900 met3 -124200 34500 131100 144900 met4 -124200 34500 131100 41400 met3 -124200 34500 131100 41400 met2 +124200 55200 131100 144900 met4 +124200 55200 131100 62100 met3 +124200 55200 131100 62100 met2 +124200 34500 131100 62100 met2 124200 34500 131100 41400 met1 124200 34500 131100 41400 li1 124200 144900 138000 151800 met1 @@ -75624,16 +75719,18 @@ u_usb_host.u_core.u_fifo_tx.ram\[56\]\[1\] 75900 13800 82800 20700 li1 75900 20700 82800 27600 li1 75900 20700 82800 27600 met1 -75900 20700 82800 96600 met2 -75900 89700 82800 96600 met2 -75900 89700 82800 96600 met3 -75900 89700 82800 131100 met4 -75900 124200 82800 131100 met3 -75900 124200 89700 131100 met3 +75900 20700 82800 103500 met2 +75900 96600 82800 103500 met2 +75900 96600 89700 103500 met3 +82800 96600 89700 103500 met3 +82800 96600 89700 131100 met4 +82800 124200 89700 131100 met3 82800 124200 89700 131100 met2 82800 124200 89700 131100 met1 82800 124200 89700 131100 li1 -82800 124200 89700 144900 met2 +82800 124200 89700 144900 met4 +82800 138000 89700 144900 met3 +82800 138000 89700 144900 met2 82800 138000 89700 144900 met1 82800 138000 89700 144900 li1 ) @@ -75683,17 +75780,17 @@ u_usb_host.u_core.u_fifo_tx.ram\[56\]\[4\] ) u_usb_host.u_core.u_fifo_tx.ram\[56\]\[5\] ( -75900 62100 82800 69000 met1 -75900 55200 82800 69000 met2 -75900 55200 82800 62100 met1 -69000 55200 82800 62100 met1 +69000 62100 75900 69000 li1 +69000 62100 75900 69000 met1 +69000 55200 75900 69000 met2 +69000 55200 75900 62100 met1 69000 55200 75900 62100 li1 +69000 62100 82800 69000 met1 +75900 62100 82800 69000 met1 75900 62100 82800 138000 met2 75900 131100 82800 138000 met1 75900 131100 89700 138000 met1 82800 131100 89700 138000 li1 -69000 62100 75900 69000 li1 -69000 62100 82800 69000 met1 ) u_usb_host.u_core.u_fifo_tx.ram\[56\]\[6\] ( @@ -75735,22 +75832,24 @@ u_usb_host.u_core.u_fifo_tx.ram\[57\]\[1\] ) u_usb_host.u_core.u_fifo_tx.ram\[57\]\[2\] ( -158700 138000 165600 144900 li1 -158700 138000 165600 144900 met1 -158700 138000 165600 151800 met2 -158700 144900 165600 151800 met1 -151800 144900 165600 151800 met1 +151800 138000 158700 144900 met1 +151800 138000 158700 144900 met2 +151800 138000 158700 144900 met3 +151800 138000 158700 151800 met4 +151800 144900 158700 151800 met3 +151800 144900 158700 151800 met2 +151800 144900 158700 151800 met1 151800 144900 158700 151800 li1 144900 27600 151800 34500 li1 144900 27600 158700 34500 met1 151800 13800 158700 20700 li1 151800 13800 158700 20700 met1 151800 13800 158700 34500 met2 +151800 138000 165600 144900 met1 +158700 138000 165600 144900 li1 151800 27600 158700 34500 li1 151800 27600 158700 34500 met1 151800 27600 158700 144900 met2 -151800 138000 158700 144900 met1 -151800 138000 165600 144900 met1 ) u_usb_host.u_core.u_fifo_tx.ram\[57\]\[3\] ( @@ -75805,11 +75904,7 @@ u_usb_host.u_core.u_fifo_tx.ram\[57\]\[6\] u_usb_host.u_core.u_fifo_tx.ram\[57\]\[7\] ( 69000 207000 75900 213900 li1 -69000 207000 75900 213900 met1 -69000 207000 75900 213900 met2 -69000 207000 151800 213900 met3 -144900 207000 151800 213900 met2 -144900 207000 151800 213900 met1 +69000 207000 151800 213900 met1 144900 207000 151800 213900 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[58\]\[0\] @@ -75841,10 +75936,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[58\]\[1\] 62100 34500 69000 41400 met3 62100 34500 69000 138000 met4 62100 131100 69000 138000 met3 -62100 131100 89700 138000 met3 -82800 131100 89700 138000 met3 -82800 131100 89700 144900 met4 -82800 138000 89700 144900 met3 +62100 131100 82800 138000 met3 +75900 131100 82800 138000 met2 +75900 131100 82800 144900 met2 +75900 138000 82800 144900 met2 +75900 138000 89700 144900 met3 82800 138000 96600 144900 met3 89700 138000 96600 144900 met2 89700 138000 96600 144900 met1 @@ -75854,25 +75950,28 @@ u_usb_host.u_core.u_fifo_tx.ram\[58\]\[1\] 82800 144900 89700 151800 met2 82800 144900 89700 151800 met3 82800 138000 89700 151800 met4 +82800 138000 89700 144900 met3 ) u_usb_host.u_core.u_fifo_tx.ram\[58\]\[2\] ( -48300 62100 55200 69000 li1 -48300 62100 55200 69000 met1 -48300 62100 55200 165600 met2 -48300 158700 55200 165600 met2 -48300 158700 124200 165600 met3 +55200 62100 62100 69000 li1 +55200 62100 62100 69000 met1 +55200 62100 62100 69000 met2 +55200 62100 117300 69000 met3 +110400 62100 117300 69000 met3 +110400 62100 117300 165600 met4 +110400 158700 117300 165600 met3 +110400 158700 124200 165600 met3 117300 158700 124200 165600 met2 117300 158700 124200 165600 met1 117300 158700 124200 165600 li1 55200 55200 62100 62100 li1 55200 55200 62100 62100 met1 55200 55200 62100 69000 met2 -55200 62100 62100 69000 met1 -55200 62100 62100 69000 li1 +48300 62100 55200 69000 li1 +48300 62100 62100 69000 met1 117300 158700 131100 165600 met1 124200 158700 131100 165600 li1 -48300 62100 62100 69000 met1 ) u_usb_host.u_core.u_fifo_tx.ram\[58\]\[3\] ( @@ -75922,9 +76021,12 @@ u_usb_host.u_core.u_fifo_tx.ram\[58\]\[7\] 48300 158700 55200 165600 li1 48300 158700 55200 165600 met1 48300 151800 55200 165600 met2 -48300 151800 55200 158700 met1 48300 151800 55200 158700 li1 -48300 151800 131100 158700 met1 +48300 151800 55200 158700 met1 +48300 151800 55200 158700 met2 +48300 151800 131100 158700 met3 +124200 151800 131100 158700 met2 +124200 151800 131100 158700 met1 124200 151800 131100 158700 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[59\]\[0\] @@ -75992,12 +76094,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[59\]\[4\] ( 55200 124200 62100 131100 li1 55200 124200 62100 131100 met1 -55200 124200 62100 138000 met2 -55200 131100 62100 138000 met1 -55200 131100 69000 138000 met1 -62100 131100 69000 138000 met1 -62100 131100 69000 165600 met2 -62100 158700 69000 165600 met2 +55200 124200 62100 131100 met2 +55200 124200 69000 131100 met3 +62100 124200 69000 131100 met3 +62100 124200 69000 165600 met4 +62100 158700 69000 165600 met3 62100 158700 110400 165600 met3 103500 158700 110400 165600 met2 103500 158700 110400 165600 met1 @@ -76050,27 +76151,38 @@ u_usb_host.u_core.u_fifo_tx.ram\[5\]\[1\] ) u_usb_host.u_core.u_fifo_tx.ram\[5\]\[2\] ( -131100 282900 144900 289800 met1 -138000 282900 144900 289800 li1 131100 158700 138000 165600 li1 131100 158700 138000 165600 met1 -131100 158700 138000 289800 met2 -131100 282900 138000 289800 met1 +131100 158700 138000 165600 met2 +131100 158700 138000 165600 met3 +131100 158700 138000 165600 met4 +131100 158700 207000 165600 met5 +200100 158700 207000 165600 met4 +200100 158700 207000 289800 met4 +200100 282900 207000 289800 met3 +138000 282900 207000 289800 met3 +138000 282900 144900 289800 met2 +138000 282900 144900 289800 met1 +138000 282900 144900 289800 li1 131100 282900 138000 289800 li1 +131100 282900 144900 289800 met1 ) u_usb_host.u_core.u_fifo_tx.ram\[5\]\[3\] ( -138000 276000 186300 282900 met1 -179400 276000 186300 282900 met1 -179400 179400 186300 282900 met2 -179400 179400 186300 186300 met1 -138000 179400 186300 186300 met1 +138000 269100 144900 276000 li1 +138000 269100 144900 276000 met1 +138000 234600 144900 276000 met2 +138000 234600 144900 241500 met2 +138000 234600 144900 241500 met3 +138000 186300 144900 241500 met4 +138000 186300 144900 193200 met3 +138000 186300 144900 193200 met2 +138000 179400 144900 193200 met2 +138000 179400 144900 186300 met1 138000 179400 144900 186300 li1 138000 276000 144900 282900 li1 138000 276000 144900 282900 met1 138000 269100 144900 282900 met2 -138000 269100 144900 276000 met1 -138000 269100 144900 276000 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[5\]\[4\] ( @@ -76085,10 +76197,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[5\]\[5\] 151800 241500 158700 248400 li1 151800 241500 165600 248400 met1 158700 241500 165600 248400 li1 -158700 241500 165600 248400 met1 -158700 241500 165600 255300 met2 -158700 248400 165600 255300 met1 -158700 248400 172500 255300 met1 +158700 241500 172500 248400 met1 +165600 241500 172500 248400 met1 +165600 241500 172500 255300 met2 +165600 248400 172500 255300 met1 165600 248400 172500 255300 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[5\]\[6\] @@ -76150,13 +76262,13 @@ u_usb_host.u_core.u_fifo_tx.ram\[60\]\[1\] u_usb_host.u_core.u_fifo_tx.ram\[60\]\[2\] ( 55200 55200 62100 62100 met1 -55200 55200 62100 69000 met2 -55200 62100 62100 69000 met2 -55200 62100 117300 69000 met3 -110400 62100 117300 69000 met3 -110400 62100 117300 124200 met4 -110400 117300 117300 124200 met3 -110400 117300 138000 124200 met3 +55200 55200 62100 89700 met2 +55200 82800 62100 89700 met2 +55200 82800 110400 89700 met3 +103500 82800 110400 89700 met3 +103500 82800 110400 124200 met4 +103500 117300 110400 124200 met3 +103500 117300 138000 124200 met3 131100 117300 138000 124200 met2 131100 117300 138000 124200 met1 131100 117300 138000 124200 li1 @@ -76225,24 +76337,27 @@ u_usb_host.u_core.u_fifo_tx.ram\[60\]\[7\] ) u_usb_host.u_core.u_fifo_tx.ram\[61\]\[0\] ( -62100 20700 69000 27600 li1 -62100 20700 69000 27600 met1 -62100 20700 69000 110400 met2 -62100 103500 69000 110400 met1 -62100 103500 75900 110400 met1 -69000 103500 75900 110400 met1 +69000 20700 75900 27600 li1 +69000 20700 75900 27600 met1 +69000 20700 75900 96600 met2 +69000 89700 75900 96600 met2 +69000 89700 82800 96600 met3 +75900 89700 82800 96600 met3 +75900 89700 82800 110400 met4 +75900 103500 82800 110400 met3 +69000 103500 82800 110400 met3 +69000 103500 75900 110400 met2 69000 103500 75900 131100 met2 69000 124200 75900 131100 met1 69000 124200 75900 131100 li1 -69000 13800 75900 20700 li1 -69000 13800 75900 20700 met1 69000 13800 75900 27600 met2 -69000 20700 75900 27600 met1 -69000 20700 75900 27600 li1 +69000 13800 75900 20700 met1 +69000 13800 75900 20700 li1 +62100 20700 69000 27600 li1 +62100 20700 75900 27600 met1 69000 124200 75900 138000 met2 69000 131100 75900 138000 met1 69000 131100 75900 138000 li1 -62100 20700 75900 27600 met1 ) u_usb_host.u_core.u_fifo_tx.ram\[61\]\[1\] ( @@ -76263,10 +76378,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[61\]\[1\] u_usb_host.u_core.u_fifo_tx.ram\[61\]\[2\] ( 55200 48300 62100 55200 li1 -55200 48300 62100 55200 met1 -55200 48300 62100 165600 met2 -55200 158700 62100 165600 met1 -55200 158700 69000 165600 met1 +55200 48300 69000 55200 met1 +62100 48300 69000 55200 met1 +62100 48300 69000 165600 met2 +62100 158700 69000 165600 met1 62100 158700 69000 165600 li1 48300 48300 62100 55200 met1 48300 41400 55200 48300 li1 @@ -76279,21 +76394,18 @@ u_usb_host.u_core.u_fifo_tx.ram\[61\]\[2\] ) u_usb_host.u_core.u_fifo_tx.ram\[61\]\[3\] ( -110400 158700 117300 172500 met2 +48300 13800 55200 20700 li1 +34500 13800 55200 20700 met1 +34500 13800 41400 20700 met1 +34500 13800 41400 172500 met2 +34500 165600 41400 172500 met2 +34500 165600 117300 172500 met3 +110400 165600 117300 172500 met2 110400 165600 117300 172500 met1 110400 165600 117300 172500 li1 -48300 13800 55200 20700 li1 48300 13800 62100 20700 met1 55200 13800 62100 20700 li1 -55200 13800 62100 20700 met1 -55200 13800 62100 131100 met2 -55200 124200 62100 131100 met2 -55200 124200 69000 131100 met3 -62100 124200 69000 131100 met3 -62100 124200 69000 165600 met4 -62100 158700 69000 165600 met3 -62100 158700 117300 165600 met3 -110400 158700 117300 165600 met2 +110400 158700 117300 172500 met2 110400 158700 117300 165600 met1 110400 158700 117300 165600 li1 ) @@ -76452,11 +76564,8 @@ u_usb_host.u_core.u_fifo_tx.ram\[62\]\[7\] ) u_usb_host.u_core.u_fifo_tx.ram\[63\]\[0\] ( -117300 144900 124200 151800 li1 -117300 144900 124200 151800 met1 -117300 144900 124200 151800 met2 -117300 144900 172500 151800 met3 -165600 144900 172500 151800 met2 +117300 144900 172500 151800 met1 +165600 144900 172500 151800 met1 165600 144900 172500 165600 met2 165600 158700 172500 165600 met1 165600 158700 207000 165600 met1 @@ -76473,6 +76582,9 @@ u_usb_host.u_core.u_fifo_tx.ram\[63\]\[0\] 110400 131100 117300 151800 met4 110400 144900 117300 151800 met3 110400 144900 124200 151800 met3 +117300 144900 124200 151800 met2 +117300 144900 124200 151800 met1 +117300 144900 124200 151800 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[63\]\[1\] ( @@ -76509,11 +76621,10 @@ u_usb_host.u_core.u_fifo_tx.ram\[63\]\[3\] 200100 186300 207000 193200 li1 117300 158700 124200 165600 li1 117300 158700 124200 165600 met1 -117300 158700 124200 172500 met2 -117300 165600 124200 172500 met2 -117300 165600 207000 172500 met3 -200100 165600 207000 172500 met2 -200100 165600 207000 186300 met2 +117300 158700 124200 186300 met2 +117300 179400 124200 186300 met2 +117300 179400 207000 186300 met3 +200100 179400 207000 186300 met2 200100 179400 207000 186300 met1 200100 179400 207000 186300 li1 ) @@ -76654,11 +76765,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[6\]\[6\] 110400 200100 124200 207000 met1 110400 289800 117300 296700 li1 110400 289800 117300 296700 met1 -110400 262200 117300 296700 met2 -110400 262200 117300 269100 met1 -110400 262200 124200 269100 met1 -117300 262200 124200 269100 met1 -117300 200100 124200 269100 met2 +110400 241500 117300 296700 met2 +110400 241500 117300 248400 met2 +110400 241500 124200 248400 met3 +117300 241500 124200 248400 met2 +117300 200100 124200 248400 met2 117300 200100 124200 207000 met1 117300 200100 124200 207000 li1 110400 289800 124200 296700 met1 @@ -76706,11 +76817,15 @@ u_usb_host.u_core.u_fifo_tx.ram\[7\]\[2\] 131100 324300 144900 331200 met1 138000 317400 144900 324300 li1 138000 317400 144900 324300 met1 -138000 227700 144900 324300 met2 -138000 227700 144900 234600 met1 -138000 227700 151800 234600 met1 -144900 227700 151800 234600 met1 -144900 172500 151800 234600 met2 +138000 234600 144900 324300 met2 +138000 234600 144900 241500 met1 +138000 234600 172500 241500 met1 +165600 234600 172500 241500 met1 +165600 186300 172500 241500 met2 +165600 186300 172500 193200 met1 +144900 186300 172500 193200 met1 +144900 186300 151800 193200 met1 +144900 172500 151800 193200 met2 138000 317400 144900 331200 met2 138000 172500 144900 179400 li1 138000 172500 144900 179400 met1 @@ -76720,36 +76835,32 @@ u_usb_host.u_core.u_fifo_tx.ram\[7\]\[2\] ) u_usb_host.u_core.u_fifo_tx.ram\[7\]\[3\] ( -124200 124200 131100 151800 met2 -124200 144900 131100 151800 met2 -124200 144900 131100 151800 met3 -124200 144900 131100 186300 met4 -124200 179400 131100 186300 met3 -124200 179400 138000 186300 met3 -131100 179400 138000 186300 met3 -131100 179400 138000 310500 met4 -131100 303600 138000 310500 met3 -131100 303600 138000 310500 met2 -131100 303600 138000 310500 met1 -131100 303600 138000 310500 li1 117300 124200 124200 131100 li1 117300 124200 124200 131100 met1 117300 124200 124200 131100 met2 +0 124200 124200 131100 met3 +0 124200 6900 131100 met2 +0 124200 6900 310500 met2 +0 303600 6900 310500 met1 +0 303600 138000 310500 met1 +131100 303600 138000 310500 li1 117300 124200 131100 131100 met3 124200 124200 131100 131100 met2 -124200 117300 131100 124200 li1 -124200 117300 131100 124200 met1 124200 117300 131100 131100 met2 +124200 117300 131100 124200 met1 +124200 117300 131100 124200 li1 ) u_usb_host.u_core.u_fifo_tx.ram\[7\]\[4\] ( 82800 296700 89700 303600 li1 82800 296700 89700 303600 met1 82800 248400 89700 303600 met2 -82800 248400 89700 255300 met1 -82800 248400 96600 255300 met1 -89700 248400 96600 255300 met1 -89700 220800 96600 255300 met2 +82800 248400 89700 255300 met2 +82800 248400 96600 255300 met3 +89700 248400 96600 255300 met3 +89700 220800 96600 255300 met4 +89700 220800 96600 227700 met3 +89700 220800 96600 227700 met2 89700 220800 96600 227700 met1 89700 220800 96600 227700 li1 ) @@ -76797,11 +76908,11 @@ u_usb_host.u_core.u_fifo_tx.ram\[7\]\[7\] ) u_usb_host.u_core.u_fifo_tx.ram\[8\]\[0\] ( -96600 220800 110400 227700 met1 -96600 220800 103500 227700 met1 -96600 207000 103500 227700 met2 -96600 207000 103500 213900 met1 -96600 207000 110400 213900 met1 +103500 220800 117300 227700 met1 +110400 220800 117300 227700 met1 +110400 207000 117300 227700 met2 +110400 207000 117300 213900 met1 +103500 207000 117300 213900 met1 103500 207000 110400 213900 li1 103500 324300 117300 331200 met1 110400 324300 117300 331200 li1 @@ -76855,13 +76966,14 @@ u_usb_host.u_core.u_fifo_tx.ram\[8\]\[4\] ( 89700 296700 96600 303600 li1 89700 296700 96600 303600 met1 -89700 262200 96600 303600 met2 -89700 262200 96600 269100 met2 -89700 262200 96600 269100 met3 -89700 186300 96600 269100 met4 -89700 186300 96600 193200 met3 -89700 186300 103500 193200 met3 -96600 186300 103500 193200 met2 +89700 241500 96600 303600 met2 +89700 241500 96600 248400 met2 +89700 241500 96600 248400 met3 +89700 200100 96600 248400 met4 +89700 200100 96600 207000 met3 +89700 200100 103500 207000 met3 +96600 200100 103500 207000 met2 +96600 186300 103500 207000 met2 96600 186300 103500 193200 met1 96600 186300 103500 193200 li1 89700 303600 96600 310500 li1 @@ -77021,10 +77133,12 @@ u_usb_host.u_core.u_fifo_tx.ram\[9\]\[7\] 117300 296700 131100 303600 met1 124200 296700 131100 303600 met1 124200 289800 131100 303600 met2 -124200 289800 131100 296700 met1 -124200 289800 138000 296700 met1 -131100 289800 138000 296700 met1 -131100 227700 138000 296700 met2 +124200 289800 131100 296700 met2 +124200 289800 138000 296700 met3 +131100 289800 138000 296700 met3 +131100 227700 138000 296700 met4 +131100 227700 138000 234600 met3 +131100 227700 138000 234600 met2 131100 227700 138000 234600 met1 131100 227700 138000 234600 li1 ) @@ -77225,15 +77339,12 @@ u_usb_host.u_core.u_sie.crc_out_w\[3\] ) u_usb_host.u_core.u_sie.crc_out_w\[4\] ( -227700 365700 234600 372600 li1 -227700 365700 255300 372600 met1 -248400 365700 255300 372600 met1 -248400 365700 255300 420900 met2 -248400 414000 255300 420900 met1 -248400 414000 255300 420900 li1 -220800 365700 234600 372600 met1 220800 365700 227700 372600 li1 220800 365700 227700 372600 met1 +220800 365700 227700 420900 met2 +220800 414000 227700 420900 met1 +220800 414000 255300 420900 met1 +248400 414000 255300 420900 li1 220800 303600 227700 372600 met2 220800 303600 227700 310500 met1 220800 303600 227700 310500 li1 @@ -77241,6 +77352,8 @@ u_usb_host.u_core.u_sie.crc_out_w\[4\] 213900 303600 227700 310500 met1 213900 365700 220800 372600 li1 213900 365700 227700 372600 met1 +220800 365700 234600 372600 met1 +227700 365700 234600 372600 li1 ) u_usb_host.u_core.u_sie.crc_out_w\[5\] ( @@ -78539,22 +78652,23 @@ u_usb_host.u_core.u_sie.utmi_data_i\[0\] ) u_usb_host.u_core.u_sie.utmi_data_i\[1\] ( -220800 386400 234600 393300 met1 +227700 393300 234600 400200 met1 +227700 386400 234600 400200 met2 +227700 386400 234600 393300 met1 227700 386400 234600 393300 li1 +234600 386400 241500 393300 li1 +234600 386400 248400 393300 met1 +241500 386400 248400 393300 met1 +241500 282900 248400 393300 met2 +241500 282900 248400 289800 met1 +227700 282900 248400 289800 met1 +227700 282900 234600 289800 li1 220800 393300 227700 400200 li1 -220800 393300 227700 400200 met1 -220800 393300 227700 407100 met2 -220800 400200 227700 407100 met1 -220800 400200 234600 407100 met1 +220800 393300 234600 400200 met1 227700 400200 234600 407100 li1 -234600 386400 241500 393300 li1 +227700 400200 234600 407100 met1 +227700 393300 234600 407100 met2 227700 386400 241500 393300 met1 -220800 386400 227700 393300 met1 -220800 282900 227700 393300 met2 -220800 282900 227700 289800 met1 -220800 282900 234600 289800 met1 -227700 282900 234600 289800 li1 -220800 386400 227700 400200 met2 ) u_usb_host.u_core.u_sie.utmi_data_i\[2\] ( diff --git a/src/grt/test/overlapping_edges.ok b/src/grt/test/overlapping_edges.ok index 67d509b9075..edcc09e56c2 100644 --- a/src/grt/test/overlapping_edges.ok +++ b/src/grt/test/overlapping_edges.ok @@ -134,24 +134,24 @@ met5 Horizontal 11426 5656 50.50% --------------------------------------------------------------- [INFO GRT-0101] Running extra iterations to remove overflow. -[INFO GRT-0197] Via related to pin nodes: 42718 -[INFO GRT-0198] Via related Steiner nodes: 1037 +[INFO GRT-0197] Via related to pin nodes: 42748 +[INFO GRT-0198] Via related Steiner nodes: 1067 [INFO GRT-0199] Via filling finished. -[INFO GRT-0111] Final number of vias: 55255 -[INFO GRT-0112] Final usage 3D: 213664 +[INFO GRT-0111] Final number of vias: 55361 +[INFO GRT-0112] Final usage 3D: 213985 [INFO GRT-0096] Final congestion report: Layer Resource Demand Usage (%) Max H / Max V / Total Overflow --------------------------------------------------------------------------------------- li1 0 0 0.00% 0 / 0 / 0 -met1 54628 16145 29.55% 0 / 0 / 0 -met2 57545 23907 41.54% 0 / 0 / 0 -met3 39049 2972 7.61% 0 / 0 / 0 -met4 19576 4823 24.64% 0 / 0 / 0 -met5 5656 52 0.92% 0 / 0 / 0 +met1 54628 16071 29.42% 0 / 0 / 0 +met2 57545 23820 41.39% 0 / 0 / 0 +met3 39049 3009 7.71% 0 / 0 / 0 +met4 19576 4939 25.23% 0 / 0 / 0 +met5 5656 63 1.11% 0 / 0 / 0 --------------------------------------------------------------------------------------- -Total 176454 47899 27.15% 0 / 0 / 0 +Total 176454 47902 27.15% 0 / 0 / 0 -[INFO GRT-0018] Total wirelength: 463003 um +[INFO GRT-0018] Total wirelength: 463355 um [INFO GRT-0014] Routed nets: 7064 No differences found. diff --git a/src/grt/test/pin_access2.guideok b/src/grt/test/pin_access2.guideok index d2a357296f4..643a5652451 100644 --- a/src/grt/test/pin_access2.guideok +++ b/src/grt/test/pin_access2.guideok @@ -2003,10 +2003,9 @@ _196_ 108000 57600 115200 64800 met1 108000 57600 115200 64800 li1 144000 151200 151200 158400 met2 -144000 151200 165600 158400 met3 -158400 151200 165600 158400 met2 -158400 151200 165600 158400 met1 -158400 151200 172800 158400 met1 +144000 151200 172800 158400 met3 +165600 151200 172800 158400 met2 +165600 151200 172800 158400 met1 165600 151200 172800 158400 li1 115200 230400 122400 237600 li1 115200 230400 144000 237600 met1 @@ -2025,9 +2024,11 @@ _197_ 100800 64800 108000 72000 met2 100800 64800 136800 72000 met3 129600 64800 136800 72000 met2 -122400 165600 129600 172800 met2 -122400 165600 172800 172800 met3 -165600 165600 172800 172800 met2 +122400 172800 129600 180000 met2 +122400 172800 172800 180000 met3 +165600 172800 172800 180000 met2 +165600 172800 172800 180000 met1 +165600 172800 172800 180000 li1 129600 64800 172800 72000 met3 165600 64800 172800 72000 met2 165600 64800 172800 72000 met1 @@ -2045,21 +2046,21 @@ _197_ 64800 187200 72000 194400 li1 64800 187200 79200 194400 met1 72000 187200 79200 194400 met1 -72000 151200 79200 194400 met2 -72000 151200 79200 158400 met2 -72000 151200 93600 158400 met3 -86400 151200 93600 158400 met2 -144000 223200 151200 230400 li1 -144000 223200 151200 230400 met1 -144000 223200 151200 230400 met2 -122400 223200 151200 230400 met3 -122400 223200 129600 230400 met2 -122400 223200 129600 230400 met1 +72000 187200 79200 194400 met2 +72000 187200 115200 194400 met3 +108000 187200 115200 194400 met2 +108000 216000 115200 223200 met1 +108000 187200 115200 223200 met2 +108000 216000 115200 230400 met2 122400 223200 129600 230400 li1 -122400 216000 129600 230400 met2 -122400 216000 129600 223200 met1 -93600 216000 100800 223200 li1 -93600 216000 129600 223200 met1 +122400 223200 129600 230400 met1 +122400 223200 129600 230400 met2 +122400 223200 151200 230400 met3 +144000 223200 151200 230400 met2 +144000 223200 151200 230400 met1 +144000 223200 151200 230400 li1 +108000 223200 115200 230400 met2 +108000 223200 129600 230400 met3 79200 64800 86400 72000 li1 79200 64800 86400 72000 met1 79200 64800 86400 72000 met2 @@ -2068,15 +2069,14 @@ _197_ 144000 230400 165600 237600 met1 144000 230400 151200 237600 met1 144000 223200 151200 237600 met2 -165600 158400 172800 172800 met2 +165600 158400 172800 180000 met2 165600 158400 172800 165600 met1 165600 158400 180000 165600 met1 172800 158400 180000 165600 li1 -122400 151200 129600 172800 met2 -122400 223200 129600 237600 met2 -122400 230400 129600 237600 met1 -108000 230400 129600 237600 met1 +122400 151200 129600 180000 met2 108000 230400 115200 237600 li1 +108000 230400 115200 237600 met1 +108000 223200 115200 237600 met2 64800 93600 72000 115200 met2 64800 108000 72000 115200 met1 64800 108000 72000 115200 li1 @@ -2084,17 +2084,19 @@ _197_ 165600 79200 172800 86400 met1 165600 79200 172800 86400 li1 129600 64800 136800 108000 met2 -122400 165600 129600 223200 met2 +86400 144000 93600 151200 li1 +86400 144000 93600 151200 met1 +86400 144000 93600 158400 met2 +86400 151200 93600 158400 met2 86400 151200 129600 158400 met3 122400 151200 129600 158400 met2 122400 151200 129600 158400 met1 122400 151200 129600 158400 li1 -86400 144000 93600 151200 li1 -86400 144000 93600 151200 met1 -86400 144000 93600 158400 met2 -165600 165600 172800 180000 met2 -165600 172800 172800 180000 met1 -165600 172800 172800 180000 li1 +108000 172800 115200 194400 met2 +108000 172800 115200 180000 met2 +108000 172800 129600 180000 met3 +93600 216000 115200 223200 met1 +93600 216000 100800 223200 li1 ) _199_ ( @@ -2138,8 +2140,8 @@ _200_ 93600 223200 100800 230400 met1 93600 223200 100800 230400 li1 115200 158400 122400 223200 met2 -115200 158400 122400 165600 met2 -115200 158400 129600 165600 met3 +115200 158400 122400 165600 met1 +115200 158400 129600 165600 met1 165600 64800 172800 93600 met2 165600 64800 172800 72000 met1 165600 64800 172800 72000 li1 @@ -2679,12 +2681,8 @@ _268_ 64800 201600 93600 208800 met3 64800 151200 72000 158400 li1 64800 151200 115200 158400 met1 -115200 194400 122400 208800 met2 -115200 194400 122400 201600 met2 -115200 194400 158400 201600 met3 -151200 194400 158400 201600 met2 -151200 194400 158400 201600 met1 -151200 194400 158400 201600 li1 +115200 201600 158400 208800 met3 +151200 201600 158400 208800 met2 180000 151200 187200 158400 met2 136800 151200 187200 158400 met3 136800 151200 144000 158400 met2 @@ -2692,8 +2690,9 @@ _268_ 136800 151200 144000 158400 li1 187200 194400 194400 201600 li1 187200 194400 194400 201600 met1 -187200 194400 194400 201600 met2 -151200 194400 194400 201600 met3 +187200 194400 194400 208800 met2 +187200 201600 194400 208800 met2 +151200 201600 194400 208800 met3 136800 79200 144000 86400 met1 136800 64800 144000 86400 met2 136800 64800 144000 72000 met1 @@ -2718,6 +2717,9 @@ _268_ 136800 79200 144000 93600 met2 136800 86400 144000 93600 met2 136800 86400 158400 93600 met3 +151200 194400 158400 208800 met2 +151200 194400 158400 201600 met1 +151200 194400 158400 201600 li1 ) _270_ ( @@ -3990,7 +3992,9 @@ net3 165600 259200 172800 266400 met1 151200 280800 158400 288000 li1 151200 280800 165600 288000 met1 -151200 223200 172800 230400 met1 +165600 244800 172800 252000 met1 +165600 223200 172800 252000 met2 +165600 223200 172800 230400 met1 165600 223200 172800 230400 li1 93600 280800 100800 288000 li1 93600 280800 158400 288000 met1 @@ -4026,13 +4030,10 @@ net3 151200 201600 158400 216000 met2 151200 208800 158400 216000 met1 151200 208800 158400 216000 li1 -151200 244800 172800 252000 met1 -165600 244800 172800 252000 met1 -165600 244800 172800 266400 met2 151200 230400 158400 237600 li1 151200 230400 158400 237600 met1 -151200 223200 158400 237600 met2 -151200 223200 158400 230400 met1 +151200 208800 158400 237600 met2 +151200 244800 172800 252000 met1 172800 259200 180000 266400 li1 172800 259200 208800 266400 met1 201600 180000 208800 187200 met1 @@ -4047,7 +4048,7 @@ net3 201600 158400 208800 165600 li1 201600 158400 208800 165600 met1 201600 158400 208800 187200 met2 -151200 208800 158400 230400 met2 +165600 244800 172800 266400 met2 165600 259200 180000 266400 met1 108000 216000 115200 230400 met2 151200 244800 158400 252000 met1 @@ -4146,9 +4147,13 @@ req_msg[11] ( 108000 50400 115200 57600 li1 108000 50400 115200 57600 met1 -108000 14400 115200 57600 met2 -108000 14400 115200 21600 met2 -108000 14400 299960 21600 met3 +108000 43200 115200 57600 met2 +108000 43200 115200 50400 met1 +108000 43200 144000 50400 met1 +136800 43200 144000 50400 met1 +136800 14400 144000 50400 met2 +136800 14400 144000 21600 met2 +136800 14400 299960 21600 met3 ) req_msg[12] ( @@ -4242,13 +4247,9 @@ req_msg[22] ( 0 0 7200 7200 met1 0 0 7200 7200 met2 -0 0 21600 7200 met1 -14400 0 21600 7200 met1 -14400 0 21600 14400 met2 -14400 7200 21600 14400 met1 -14400 7200 64800 14400 met1 -57600 7200 64800 14400 met1 -57600 7200 64800 79200 met2 +0 0 64800 7200 met1 +57600 0 64800 7200 met1 +57600 0 64800 79200 met2 57600 72000 64800 79200 met1 57600 72000 64800 79200 li1 ) @@ -4256,23 +4257,19 @@ req_msg[23] ( 136800 57600 144000 64800 li1 136800 57600 144000 64800 met1 -136800 50400 144000 64800 met2 -136800 50400 144000 57600 met1 -136800 50400 165600 57600 met1 -158400 50400 165600 57600 met1 -158400 43200 165600 57600 met2 -158400 43200 165600 50400 met2 -158400 43200 299960 50400 met3 +136800 43200 144000 64800 met2 +136800 43200 144000 50400 met2 +136800 43200 299960 50400 met3 ) req_msg[24] ( 122400 129600 129600 136800 li1 122400 129600 129600 136800 met1 -122400 21600 129600 136800 met2 -122400 21600 129600 28800 met1 -122400 21600 273600 28800 met1 -266400 21600 273600 28800 met1 -266400 0 273600 28800 met2 +122400 28800 129600 136800 met2 +122400 28800 129600 36000 met1 +122400 28800 273600 36000 met1 +266400 28800 273600 36000 met1 +266400 0 273600 36000 met2 ) req_msg[25] ( @@ -4320,11 +4317,11 @@ req_msg[29] ( 151200 57600 158400 64800 li1 151200 57600 158400 64800 met1 -151200 7200 158400 64800 met2 -151200 7200 158400 14400 met1 -151200 7200 259200 14400 met1 -252000 7200 259200 14400 met1 -252000 0 259200 14400 met2 +151200 50400 158400 64800 met2 +151200 50400 158400 57600 met1 +151200 50400 259200 57600 met1 +252000 50400 259200 57600 met1 +252000 0 259200 57600 met2 ) req_msg[2] ( @@ -4339,13 +4336,13 @@ req_msg[2] ) req_msg[30] ( -0 273600 144000 280800 met3 -136800 273600 144000 280800 met2 -136800 216000 144000 280800 met2 -136800 216000 144000 223200 met1 -136800 216000 158400 223200 met1 -151200 216000 158400 223200 met1 -151200 208800 158400 223200 met2 +0 273600 7200 280800 met2 +0 273600 7200 280800 met3 +0 237600 7200 280800 met2 +0 237600 7200 244800 met1 +0 237600 158400 244800 met1 +151200 237600 158400 244800 met1 +151200 208800 158400 244800 met2 151200 208800 158400 216000 met1 151200 208800 158400 216000 li1 ) @@ -4366,24 +4363,24 @@ req_msg[3] ) req_msg[4] ( -14400 0 21600 7200 met1 -14400 0 21600 7200 met2 -14400 0 50400 7200 met1 -43200 0 50400 7200 met1 -43200 0 50400 115200 met2 -43200 108000 50400 115200 met1 -43200 108000 57600 115200 met1 +14400 0 21600 115200 met2 +14400 108000 21600 115200 met1 +14400 108000 57600 115200 met1 50400 108000 57600 115200 li1 ) req_msg[5] ( 100800 50400 108000 57600 li1 100800 50400 108000 57600 met1 -100800 28800 108000 57600 met2 -100800 28800 108000 36000 met1 -100800 28800 187200 36000 met1 -180000 28800 187200 36000 met1 -180000 0 187200 36000 met2 +100800 7200 108000 57600 met2 +100800 7200 108000 14400 met1 +100800 7200 172800 14400 met1 +165600 7200 172800 14400 met1 +165600 0 172800 14400 met2 +165600 0 172800 7200 met1 +165600 0 187200 7200 met1 +180000 0 187200 7200 met1 +180000 0 187200 7200 met2 ) req_msg[6] ( @@ -4544,11 +4541,11 @@ resp_msg[11] 72000 151200 79200 158400 met1 72000 151200 79200 158400 met2 72000 151200 79200 158400 met3 -72000 43200 79200 158400 met4 -72000 43200 79200 50400 met3 -72000 43200 165600 50400 met3 -158400 43200 165600 50400 met2 -158400 0 165600 50400 met2 +72000 21600 79200 158400 met4 +72000 21600 79200 28800 met3 +72000 21600 165600 28800 met3 +158400 21600 165600 28800 met2 +158400 0 165600 28800 met2 158400 0 165600 7200 met1 158400 0 299960 7200 met1 288000 0 299960 7200 met1 @@ -4564,11 +4561,11 @@ resp_msg[12] 115200 187200 122400 208800 met2 115200 201600 122400 208800 met1 115200 201600 122400 208800 li1 -43200 237600 50400 300130 met2 -43200 237600 50400 244800 met1 -43200 237600 122400 244800 met1 -115200 237600 122400 244800 met1 -115200 201600 122400 244800 met2 +43200 252000 50400 300130 met2 +43200 252000 50400 259200 met1 +43200 252000 122400 259200 met1 +115200 252000 122400 259200 met1 +115200 201600 122400 259200 met2 ) resp_msg[13] ( @@ -4578,11 +4575,11 @@ resp_msg[13] 36000 0 43200 7200 met2 36000 0 122400 7200 met1 115200 0 122400 7200 met1 -115200 0 122400 43200 met2 -115200 36000 122400 43200 met1 -115200 36000 129600 43200 met1 -122400 36000 129600 43200 met1 -122400 36000 129600 72000 met2 +115200 0 122400 36000 met2 +115200 28800 122400 36000 met1 +115200 28800 129600 36000 met1 +122400 28800 129600 36000 met1 +122400 28800 129600 72000 met2 122400 64800 129600 72000 met2 122400 64800 136800 72000 met3 122400 172800 129600 180000 li1 @@ -4736,11 +4733,11 @@ resp_msg[9] 86400 187200 93600 208800 met2 86400 187200 93600 194400 met1 86400 187200 93600 194400 li1 -7200 266400 14400 300130 met2 -7200 266400 14400 273600 met2 -7200 266400 86400 273600 met3 -79200 266400 86400 273600 met3 -79200 201600 86400 273600 met4 +7200 273600 14400 300130 met2 +7200 273600 14400 280800 met2 +7200 273600 86400 280800 met3 +79200 273600 86400 280800 met3 +79200 201600 86400 280800 met4 79200 201600 86400 208800 met3 79200 201600 86400 208800 met2 79200 201600 86400 208800 met1 diff --git a/src/grt/test/pin_access2.ok b/src/grt/test/pin_access2.ok index 84f8f16802f..6ca1944ccea 100644 --- a/src/grt/test/pin_access2.ok +++ b/src/grt/test/pin_access2.ok @@ -69,24 +69,24 @@ met5 Horizontal 3403 1640 51.81% --------------------------------------------------------------- [INFO GRT-0101] Running extra iterations to remove overflow. -[INFO GRT-0197] Via related to pin nodes: 2448 -[INFO GRT-0198] Via related Steiner nodes: 70 +[INFO GRT-0197] Via related to pin nodes: 2452 +[INFO GRT-0198] Via related Steiner nodes: 72 [INFO GRT-0199] Via filling finished. -[INFO GRT-0111] Final number of vias: 3272 -[INFO GRT-0112] Final usage 3D: 12872 +[INFO GRT-0111] Final number of vias: 3275 +[INFO GRT-0112] Final usage 3D: 12881 [INFO GRT-0096] Final congestion report: Layer Resource Demand Usage (%) Max H / Max V / Total Overflow --------------------------------------------------------------------------------------- li1 0 0 0.00% 0 / 0 / 0 -met1 3480 848 24.37% 0 / 0 / 0 -met2 6655 1327 19.94% 0 / 0 / 0 -met3 6710 670 9.99% 0 / 0 / 0 -met4 4572 211 4.62% 0 / 0 / 0 +met1 3480 862 24.77% 0 / 0 / 0 +met2 6655 1322 19.86% 0 / 0 / 0 +met3 6710 657 9.79% 0 / 0 / 0 +met4 4572 215 4.70% 0 / 0 / 0 met5 1640 0 0.00% 0 / 0 / 0 --------------------------------------------------------------------------------------- Total 23057 3056 13.25% 0 / 0 / 0 -[INFO GRT-0018] Total wirelength: 30340 um +[INFO GRT-0018] Total wirelength: 30312 um [INFO GRT-0014] Routed nets: 411 No differences found. diff --git a/test/aes_sky130hd.metrics b/test/aes_sky130hd.metrics index c1f74dd44a5..67fe52e01f5 100644 --- a/test/aes_sky130hd.metrics +++ b/test/aes_sky130hd.metrics @@ -29,45 +29,43 @@ "DPL::design_area": "245599", "route__net": 18331, "route__net__special": 2, - "antenna__violating__nets": 1, - "antenna__violating__pins": 1, - "GRT::ANT::errors": "1", + "antenna__violating__nets": 0, + "antenna__violating__pins": 0, + "GRT::ANT::errors": "0", "design__violations": 0, "route__net": 18331, "route__net__special": 2, - "route__drc_errors__iter:1": 7988, - "route__wirelength__iter:1": 1760118, - "route__drc_errors__iter:2": 2513, - "route__wirelength__iter:2": 1755070, - "route__drc_errors__iter:3": 2269, - "route__wirelength__iter:3": 1753908, - "route__drc_errors__iter:4": 154, - "route__wirelength__iter:4": 1754107, - "route__drc_errors__iter:5": 18, - "route__wirelength__iter:5": 1754118, - "route__drc_errors__iter:6": 3, - "route__wirelength__iter:6": 1754106, - "route__drc_errors__iter:7": 0, - "route__wirelength__iter:7": 1754103, + "route__drc_errors__iter:1": 7944, + "route__wirelength__iter:1": 1764447, + "route__drc_errors__iter:2": 2705, + "route__wirelength__iter:2": 1759923, + "route__drc_errors__iter:3": 2111, + "route__wirelength__iter:3": 1758425, + "route__drc_errors__iter:4": 98, + "route__wirelength__iter:4": 1758709, + "route__drc_errors__iter:5": 16, + "route__wirelength__iter:5": 1758704, + "route__drc_errors__iter:6": 0, + "route__wirelength__iter:6": 1758705, "route__drc_errors": 0, - "route__wirelength": 1754103, - "route__vias": 171771, - "route__vias__singlecut": 171771, + "route__wirelength": 1758705, + "route__vias": 171871, + "route__vias__singlecut": 171871, "route__vias__multicut": 0, "DRT::drv": "0", - "antenna__violating__nets": 42, - "antenna__violating__pins": 44, - "DRT::ANT::errors": "42", + "antenna__violating__nets": 37, + "antenna__violating__pins": 37, + "DRT::ANT::errors": "37", "timing__drv__floating__nets": 0, "timing__drv__floating__pins": 0, - "DRT::worst_slack_min": "-0.2593286769838215", - "DRT::worst_slack_max": "-1.0915166857088425", - "DRT::tns_max": "-92.2485083320575", - "DRT::clock_skew": "0.657467099372402", - "DRT::max_slew_slack": "-2.0756804694732027", + "DRT::worst_slack_min": "-0.2351228167602381", + "DRT::worst_slack_max": "-0.9266321305879885", + "DRT::tns_max": "-91.15226875746833", + "DRT::clock_skew": "0.6394226440428373", + "DRT::max_slew_slack": "-10.8922282854716", "DRT::max_fanout_slack": "100.0", - "DRT::max_capacitance_slack": "-4.963512156385083", + "DRT::max_capacitance_slack": "-14.099340055884024", "DRT::clock_period": "3.740000", - "flow__warnings__count": 83, + "flow__warnings__count": 32, "flow__errors__count": 0 } \ No newline at end of file diff --git a/test/aes_sky130hd.metrics_limits b/test/aes_sky130hd.metrics_limits index 578f2108f1c..3cfedbbaf9c 100644 --- a/test/aes_sky130hd.metrics_limits +++ b/test/aes_sky130hd.metrics_limits @@ -10,14 +10,14 @@ ,"RSZ::worst_slack_max" : "-0.9286754323957982" ,"RSZ::tns_max" : "-668.3923702747104" ,"RSZ::hold_buffer_count" : "440" - ,"GRT::ANT::errors" : "1" + ,"GRT::ANT::errors" : "0" ,"DRT::drv" : "0" - ,"DRT::worst_slack_min" : "-0.6333286769838216" - ,"DRT::worst_slack_max" : "-1.4655166857088426" - ,"DRT::tns_max" : "-735.9025083320576" - ,"DRT::clock_skew" : "0.7889605192468824" - ,"DRT::max_slew_slack" : "-2.490816563367843" - ,"DRT::max_capacitance_slack" : "-5.9562145876620995" + ,"DRT::worst_slack_min" : "-0.6091228167602382" + ,"DRT::worst_slack_max" : "-1.3006321305879887" + ,"DRT::tns_max" : "-734.8062687574684" + ,"DRT::clock_skew" : "0.7673071728514048" + ,"DRT::max_slew_slack" : "-13.07067394256592" + ,"DRT::max_capacitance_slack" : "-16.91920806706083" ,"DRT::max_fanout_slack" : "0" ,"DRT::clock_period" : "3.74" } diff --git a/test/aes_sky130hs.metrics b/test/aes_sky130hs.metrics index 960bd11325b..bc2653fe74b 100644 --- a/test/aes_sky130hs.metrics +++ b/test/aes_sky130hs.metrics @@ -35,35 +35,35 @@ "design__violations": 0, "route__net": 18547, "route__net__special": 2, - "route__drc_errors__iter:1": 6110, - "route__wirelength__iter:1": 1819908, - "route__drc_errors__iter:2": 1538, - "route__wirelength__iter:2": 1814950, - "route__drc_errors__iter:3": 1133, - "route__wirelength__iter:3": 1813715, - "route__drc_errors__iter:4": 45, - "route__wirelength__iter:4": 1813790, + "route__drc_errors__iter:1": 6157, + "route__wirelength__iter:1": 1818960, + "route__drc_errors__iter:2": 1528, + "route__wirelength__iter:2": 1813966, + "route__drc_errors__iter:3": 1139, + "route__wirelength__iter:3": 1812562, + "route__drc_errors__iter:4": 16, + "route__wirelength__iter:4": 1812542, "route__drc_errors__iter:5": 0, - "route__wirelength__iter:5": 1813807, + "route__wirelength__iter:5": 1812527, "route__drc_errors": 0, - "route__wirelength": 1813807, - "route__vias": 159885, - "route__vias__singlecut": 159885, + "route__wirelength": 1812527, + "route__vias": 159693, + "route__vias__singlecut": 159693, "route__vias__multicut": 0, "DRT::drv": "0", - "antenna__violating__nets": 24, - "antenna__violating__pins": 26, - "DRT::ANT::errors": "24", + "antenna__violating__nets": 26, + "antenna__violating__pins": 27, + "DRT::ANT::errors": "26", "timing__drv__floating__nets": 0, "timing__drv__floating__pins": 0, - "DRT::worst_slack_min": "-0.07948752991912358", - "DRT::worst_slack_max": "-0.9521801394639998", - "DRT::tns_max": "-75.09734913151136", - "DRT::clock_skew": "0.4466139806614687", - "DRT::max_slew_slack": "-21.637603640556335", + "DRT::worst_slack_min": "-0.3217100010780266", + "DRT::worst_slack_max": "-0.9358287742948723", + "DRT::tns_max": "-96.31079495412503", + "DRT::clock_skew": "0.7064597995447863", + "DRT::max_slew_slack": "-8.9091956615448", "DRT::max_fanout_slack": "100.0", - "DRT::max_capacitance_slack": "-23.639147480554186", + "DRT::max_capacitance_slack": "-10.394081427153072", "DRT::clock_period": "2.811000", - "flow__warnings__count": 45, + "flow__warnings__count": 32, "flow__errors__count": 0 } \ No newline at end of file diff --git a/test/aes_sky130hs.metrics_limits b/test/aes_sky130hs.metrics_limits index fceaef9ff00..8be1df35259 100644 --- a/test/aes_sky130hs.metrics_limits +++ b/test/aes_sky130hs.metrics_limits @@ -12,12 +12,12 @@ ,"RSZ::hold_buffer_count" : "766" ,"GRT::ANT::errors" : "0" ,"DRT::drv" : "0" - ,"DRT::worst_slack_min" : "-0.3605875299191236" - ,"DRT::worst_slack_max" : "-1.2332801394639998" - ,"DRT::tns_max" : "-533.9649891315114" - ,"DRT::clock_skew" : "0.5359367767937624" - ,"DRT::max_slew_slack" : "-25.965124368667603" - ,"DRT::max_capacitance_slack" : "-28.366976976665022" + ,"DRT::worst_slack_min" : "-0.6028100010780266" + ,"DRT::worst_slack_max" : "-1.2169287742948725" + ,"DRT::tns_max" : "-555.1784349541251" + ,"DRT::clock_skew" : "0.8477517594537436" + ,"DRT::max_slew_slack" : "-10.69103479385376" + ,"DRT::max_capacitance_slack" : "-12.472897712583686" ,"DRT::max_fanout_slack" : "0" ,"DRT::clock_period" : "2.811" }