Steel Block Weight Calculator & Guide – Calculate Steel Weight Accurately
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f8f9fa;
margin: 0;
padding: 0;
}
.container {
max-width: 1000px;
margin: 20px auto;
padding: 25px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
header {
background-color: #004a99;
color: #fff;
padding: 20px 0;
text-align: center;
border-radius: 8px 8px 0 0;
margin-bottom: 20px;
}
header h1 {
margin: 0;
font-size: 2.2em;
}
h2, h3 {
color: #004a99;
margin-top: 30px;
margin-bottom: 15px;
border-bottom: 2px solid #e0e0e0;
padding-bottom: 5px;
}
h2 {
font-size: 1.8em;
}
h3 {
font-size: 1.4em;
}
.calc-section {
margin-bottom: 30px;
padding: 25px;
border: 1px solid #ddd;
border-radius: 8px;
background-color: #fdfdfd;
}
.calc-section h2 {
margin-top: 0;
border-bottom: none;
}
.input-group {
margin-bottom: 20px;
width: 100%;
}
.input-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
color: #555;
}
.input-group input[type="number"],
.input-group select {
width: calc(100% – 22px); /* Account for padding and border */
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1em;
box-sizing: border-box;
}
.input-group .helper-text {
font-size: 0.85em;
color: #6c757d;
margin-top: 5px;
display: block;
}
.input-group .error-message {
color: #dc3545;
font-size: 0.8em;
margin-top: 5px;
display: none; /* Hidden by default */
min-height: 1.2em; /* Prevent layout shifts */
}
.btn-group {
margin-top: 25px;
display: flex;
gap: 15px;
flex-wrap: wrap; /* Allow wrapping on small screens */
}
button {
padding: 12px 25px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1em;
font-weight: 500;
transition: background-color 0.3s ease, transform 0.2s ease;
}
button.primary {
background-color: #004a99;
color: #fff;
}
button.primary:hover {
background-color: #003366;
transform: translateY(-1px);
}
button.secondary {
background-color: #6c757d;
color: #fff;
}
button.secondary:hover {
background-color: #5a6268;
transform: translateY(-1px);
}
button.reset {
background-color: #ffc107;
color: #212529;
}
button.reset:hover {
background-color: #e0a800;
transform: translateY(-1px);
}
#results-container {
margin-top: 30px;
padding: 20px;
border: 1px solid #28a745;
background-color: #e9f7ec;
border-radius: 8px;
text-align: center;
}
#results-container h3 {
margin-top: 0;
color: #28a745;
border-bottom: none;
}
#results-container #primary-result {
font-size: 2em;
font-weight: bold;
color: #28a745;
margin: 10px 0;
}
#results-container .intermediate-results span {
display: inline-block;
margin: 5px 10px;
font-size: 1.1em;
color: #004a99;
}
#results-container .intermediate-results span strong {
color: #333;
}
#results-container .formula-explanation {
font-size: 0.9em;
color: #555;
margin-top: 15px;
padding-top: 10px;
border-top: 1px dashed #ccc;
}
#results-container .key-assumptions {
font-size: 0.85em;
color: #6c757d;
margin-top: 15px;
font-style: italic;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}
th, td {
padding: 12px 15px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #004a99;
color: #fff;
font-weight: 500;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
tr:hover {
background-color: #e9ecef;
}
caption {
caption-side: top;
font-size: 1.1em;
font-weight: bold;
color: #004a99;
margin-bottom: 10px;
text-align: left;
}
.chart-container {
margin-top: 30px;
padding: 20px;
border: 1px solid #ccc;
border-radius: 8px;
background-color: #fdfdfd;
text-align: center;
}
.chart-container canvas {
max-width: 100%;
height: auto;
}
.chart-container figcaption {
font-size: 0.9em;
color: #6c757d;
margin-top: 10px;
}
.article-section {
margin-top: 40px;
background-color: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.article-section p {
margin-bottom: 15px;
}
.article-section ul, .article-section ol {
margin-left: 20px;
margin-bottom: 15px;
}
.article-section li {
margin-bottom: 8px;
}
.article-section strong {
color: #004a99;
}
.internal-link-section ul {
list-style: none;
padding: 0;
}
.internal-link-section li {
margin-bottom: 15px;
border-bottom: 1px dashed #eee;
padding-bottom: 10px;
}
.internal-link-section li:last-child {
border-bottom: none;
}
.internal-link-section a {
color: #004a99;
text-decoration: none;
font-weight: 500;
}
.internal-link-section a:hover {
text-decoration: underline;
}
.internal-link-section span {
font-size: 0.9em;
color: #6c757d;
display: block;
margin-top: 5px;
}
.copy-button {
background-color: #17a2b8;
color: #fff;
margin-left: 10px;
}
.copy-button:hover {
background-color: #117a8b;
transform: translateY(-1px);
}
.tooltip {
position: relative;
display: inline-block;
cursor: help;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 220px;
background-color: #333;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 8px;
position: absolute;
z-index: 1;
bottom: 125%; /* Position above */
left: 50%;
margin-left: -110px;
opacity: 0;
transition: opacity 0.3s, visibility 0.3s;
font-size: 0.8em;
white-space: normal;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #333 transparent transparent transparent;
}
Steel Block Weight Calculator
Steel Block Weight Calculation
Calculation Results
Volume: cm³ |
Density: g/cm³ |
Weight: kg
Formula: Weight = Volume × Density. Volume is calculated as Length × Width × Height.
Assumptions: Uses an average density for the selected steel type. Material uniformity is assumed.
Steel Block Weight Data
Comparison of Steel Block Weight based on Dimensions
Steel Block Weight Details
| Parameter |
Value |
Unit |
| Length |
N/A |
cm |
| Width |
N/A |
cm |
| Height |
N/A |
cm |
| Volume |
N/A |
cm³ |
| Steel Density |
N/A |
g/cm³ |
| Calculated Weight |
N/A |
kg |
What is Steel Block Weight Calculation?
The steel block weight calculation is a fundamental process used to determine the mass of a solid piece of steel shaped like a rectangular prism (a block). This calculation is crucial in various industries, including manufacturing, construction, engineering, and logistics, where precise material quantities are essential for cost estimation, structural integrity, transportation planning, and inventory management. It's a straightforward application of basic physics principles, combining geometric volume with material density.
Who should use it:
- Engineers designing structures or components
- Procurement managers ordering steel materials
- Fabricators and manufacturers
- Logistics professionals planning shipments
- Students learning about material science and physics
- DIY enthusiasts working with steel projects
Common misconceptions:
- Density is constant: Steel density can vary slightly based on its alloy composition (e.g., stainless steel vs. carbon steel). Our calculator uses typical average values for common types.
- Weight is the same as mass: While often used interchangeably in everyday language, mass is the amount of matter, and weight is the force of gravity on that mass. This calculator determines mass, often referred to as "weight" in practical applications.
- Shape doesn't matter: The calculation is specific to rectangular blocks. For irregular shapes, more complex volume calculations or different methods are required.
Steel Block Weight Formula and Mathematical Explanation
The steel block weight calculation relies on a core principle in physics: Weight (or more accurately, Mass) equals Volume multiplied by Density.
The Formula:
Mass = Volume × Density
To apply this formula to a steel block, we first need to calculate its volume. For a rectangular block, the volume is simply the product of its three dimensions: length, width, and height.
Step 1: Calculate Volume
Volume = Length × Width × Height
Step 2: Calculate Weight (Mass)
Once the volume is known, multiply it by the density of the specific type of steel being used.
Weight (kg) = Volume (cm³) × Density (g/cm³) / 1000
We divide by 1000 to convert the result from grams to kilograms, which is the more common unit for measuring the weight of steel blocks.
Variable Explanations
Here's a breakdown of the variables involved in the steel block weight calculation:
Variables in Steel Block Weight Calculation
| Variable |
Meaning |
Unit |
Typical Range/Values |
| Length (L) |
The longest dimension of the rectangular steel block. |
cm (centimeters) |
≥ 0.1 cm |
| Width (W) |
The dimension perpendicular to the length and height. |
cm (centimeters) |
≥ 0.1 cm |
| Height (H) |
The thickness or vertical dimension of the block. |
cm (centimeters) |
≥ 0.1 cm |
| Volume (V) |
The amount of three-dimensional space the block occupies. |
cm³ (cubic centimeters) |
V = L × W × H |
| Density (ρ) |
Mass per unit volume of the steel. Varies by alloy. |
g/cm³ (grams per cubic centimeter) |
7.75 – 8.05 g/cm³ (e.g., 7.85 for standard steel, 7.90 for stainless steel) |
| Weight (M) |
The mass of the steel block. |
kg (kilograms) |
M = V × ρ / 1000 |
Practical Examples (Real-World Use Cases)
Understanding the steel block weight calculation is best done through practical examples:
Example 1: Calculating the weight of a standard steel block for fabrication
A metal fabrication workshop needs to order a specific block of mild steel for a structural component. They require a block with the following dimensions:
- Length: 150 cm
- Width: 75 cm
- Height: 30 cm
- Steel Type: Standard Steel (Density ≈ 7.85 g/cm³)
Calculation:
- Volume: 150 cm × 75 cm × 30 cm = 337,500 cm³
- Weight: 337,500 cm³ × 7.85 g/cm³ = 2,651,250 g
- Convert to kg: 2,651,250 g / 1000 = 2,651.25 kg
Result Interpretation: The fabrication workshop needs approximately 2,651.25 kilograms of mild steel. This weight is critical for transport planning, crane capacity considerations, and cost estimation for the project. This ensures they order the correct amount of material, preventing delays and waste.
Example 2: Estimating the weight of a stainless steel plate for a specialized application
A company manufacturing high-end kitchen equipment needs a block of stainless steel with dimensions:
- Length: 60 cm
- Width: 40 cm
- Height: 10 cm
- Steel Type: Stainless Steel (Density ≈ 7.90 g/cm³)
Calculation:
- Volume: 60 cm × 40 cm × 10 cm = 24,000 cm³
- Weight: 24,000 cm³ × 7.90 g/cm³ = 189,600 g
- Convert to kg: 189,600 g / 1000 = 189.60 kg
Result Interpretation: The required block of stainless steel weighs 189.60 kg. This information is vital for sourcing the material, calculating shipping costs, and ensuring the final product's weight remains within design specifications. Accurate steel block weight calculation helps maintain product quality and cost control.
How to Use This Steel Block Weight Calculator
Our steel block weight calculator is designed for simplicity and accuracy. Follow these steps to get your results quickly:
-
Enter Dimensions: In the input fields, carefully enter the Length, Width, and Height of your steel block in centimeters (cm). Ensure you are using consistent units. Use the helper text for guidance.
-
Select Steel Type: Choose the appropriate type of steel from the dropdown menu. The calculator will automatically use a standard density value for that type (e.g., Carbon Steel, Stainless Steel). If you know the precise density, you might need a more specialized tool, but our selections cover most common uses.
-
Calculate Weight: Click the "Calculate Weight" button. The calculator will process your inputs.
How to Read Results:
-
Primary Result (Highlighted): This shows the final calculated weight of the steel block in kilograms (kg). It's the most prominent number for immediate use.
-
Intermediate Values: You'll see the calculated Volume (in cm³) and the Density (in g/cm³) used for the selected steel type. These provide context for the final weight.
-
Table Data: The table below summarizes all input parameters and calculated results for easy review and verification.
-
Chart: The dynamic chart visually represents the weight based on the dimensions you entered, offering a quick comparison.
Decision-Making Guidance:
The calculated weight is essential for:
- Procurement: Ensure you order the correct quantity of steel.
- Logistics: Plan for transportation, lifting equipment, and shipping costs.
- Engineering: Verify structural load capacities and material usage in designs.
- Costing: Accurately estimate material costs for projects.
Use the "Copy Results" button to easily transfer the data to spreadsheets or documents. The "Reset" button allows you to quickly start over with new calculations. Remember that minor variations in density can occur, so consider a small buffer for critical applications.
Key Factors That Affect Steel Block Weight Results
While the core steel block weight calculation is straightforward, several factors can influence the actual weight or the accuracy of the calculation:
-
Steel Alloy Composition: The primary factor influencing density is the specific alloy of steel. Different elements (carbon, chromium, nickel, etc.) added to iron change its density. For instance, stainless steel is slightly denser than common carbon steel. Always try to use the density specific to your steel grade.
-
Manufacturing Tolerances: Steel is produced within specific dimensional tolerances. The actual dimensions of a steel block might vary slightly from the nominal values. These small variations can accumulate, especially for large blocks, leading to slight differences in weight.
-
Temperature Effects: Materials expand when heated and contract when cooled. While generally a minor effect at ambient temperatures, significant temperature fluctuations can alter the volume, and thus the calculated weight, of a steel block.
-
Impurities and Microstructure: The presence of non-metallic inclusions or variations in the steel's microstructure can slightly affect its density. However, for most standard steel block weight calculation purposes, these effects are negligible.
-
Surface Finish and Coatings: Surface treatments like plating, galvanization, or thick paint layers add mass. If these coatings are significant, their weight should be considered separately or added to the calculated steel weight for a total component weight.
-
Moisture Content: While steel itself doesn't absorb significant moisture, surface moisture or rust can add a small, often negligible, amount of weight. Ensure the block is dry for accurate measurements. For precise calculations, especially in scientific contexts, controlling these variables is important.
Frequently Asked Questions (FAQ)
Q1: What is the density of standard steel?
A: The density of standard carbon steel is approximately 7.85 grams per cubic centimeter (g/cm³). This is the value used in our calculator for "Standard Steel".
Q2: How does stainless steel differ in weight from carbon steel?
A: Stainless steel is generally slightly denser than carbon steel, typically around 7.90 to 8.00 g/cm³. This means a stainless steel block of the same dimensions will weigh slightly more than a carbon steel block.
Q3: Can I calculate the weight of a steel pipe or beam using this calculator?
A: No, this calculator is specifically designed for solid rectangular steel blocks. Pipes and beams have different geometric shapes, requiring different volume calculations. We have other specialized calculators for those shapes.
Q4: What units should I use for the dimensions?
A: Please use centimeters (cm) for length, width, and height. The calculator automatically converts these to calculate volume and then the final weight in kilograms (kg).
Q5: My steel block is slightly off-spec. How accurate is this calculation?
A: This calculator provides a highly accurate theoretical weight based on the dimensions and average density. Real-world weights can vary slightly due to manufacturing tolerances, alloy variations, and surface treatments. For critical applications, always factor in a small margin of error or verify with actual measurements.
Q6: What if I know the exact density of my steel?
A: If you have a precise density value (e.g., from a material datasheet), you can use the "Standard Steel" option and then adjust your understanding of the results slightly, or use a more advanced engineering calculator. For most practical purposes, the provided options are sufficient.
Q7: Does the calculator account for the weight of any coatings?
A: No, this calculator determines the weight of the steel block itself. Coatings like paint, galvanization, or plating will add extra weight that needs to be calculated separately.
Q8: Why is calculating steel block weight important?
A: It's crucial for accurate material costing, efficient logistics and transportation planning, ensuring structural integrity in engineering projects, and maintaining precise inventory control in manufacturing environments.
Related Tools and Internal Resources
-
Steel Beam Weight Calculator
Estimate the weight of common steel beam profiles like I-beams and H-beams based on their section properties. Essential for structural engineering projects.
-
Steel Pipe Weight Calculator
Calculate the weight of steel pipes quickly. Input outer diameter, wall thickness, length, and steel type for accurate results.
-
Material Density Converter
Convert density values between various units (e.g., kg/m³, lb/ft³, g/cm³) for different materials. Useful for cross-referencing data.
-
Metal Fabrication Cost Estimator
Get an estimated cost for metal fabrication services, considering material, labor, and complexity. A key tool for budgeting manufacturing jobs.
-
Structural Load Calculator
Determine the load-bearing capacity of structural elements. Helps ensure safety and compliance in construction.
-
Shipping Cost Calculator
Estimate shipping costs based on weight, dimensions, and destination. Crucial for logistics planning.
var chartInstance = null; // Global variable to hold chart instance
function getElement(id) {
return document.getElementById(id);
}
function validateInput(value, id, errorMessageId, min = 0, max = Infinity) {
var errorElement = getElement(errorMessageId);
if (value === null || value === "") {
errorElement.textContent = "This field is required.";
errorElement.style.display = "block";
return false;
}
var numValue = parseFloat(value);
if (isNaN(numValue)) {
errorElement.textContent = "Please enter a valid number.";
errorElement.style.display = "block";
return false;
}
if (numValue max) {
errorElement.textContent = "Value is too high.";
errorElement.style.display = "block";
return false;
}
errorElement.textContent = "";
errorElement.style.display = "none";
return true;
}
function calculateWeight() {
var lengthInput = getElement("length");
var widthInput = getElement("width");
var heightInput = getElement("height");
var steelTypeSelect = getElement("steelType");
var resultsContainer = getElement("results-container");
var volumeResultElement = getElement("volumeResult");
var densityResultElement = getElement("densityResult");
var weightResultMetricElement = getElement("weightResultMetric");
var dataTableLength = getElement("dataLength");
var dataTableWidth = getElement("dataWidth");
var dataTableHeight = getElement("dataHeight");
var dataTableVolume = getElement("dataVolume");
var dataTableDensity = getElement("dataDensity");
var dataTableWeight = getElement("dataWeight");
var length = parseFloat(lengthInput.value);
var width = parseFloat(widthInput.value);
var height = parseFloat(heightInput.value);
var density = parseFloat(steelTypeSelect.value);
var isValid = true;
isValid = validateInput(lengthInput.value, "length", "lengthError", 0) && isValid;
isValid = validateInput(widthInput.value, "width", "widthError", 0) && isValid;
isValid = validateInput(heightInput.value, "height", "heightError", 0) && isValid;
if (!isValid) {
resultsContainer.style.display = "none";
return;
}
var volume = length * width * height;
var weightGrams = volume * density;
var weightKg = weightGrams / 1000;
volumeResultElement.textContent = volume.toFixed(2);
densityResultElement.textContent = density.toFixed(2);
weightResultMetricElement.textContent = weightKg.toFixed(2);
// Update table
dataTableLength.textContent = length.toFixed(2);
dataTableWidth.textContent = width.toFixed(2);
dataTableHeight.textContent = height.toFixed(2);
dataTableVolume.textContent = volume.toFixed(2);
dataTableDensity.textContent = density.toFixed(2);
dataTableWeight.textContent = weightKg.toFixed(2);
resultsContainer.style.display = "block";
updateChart(length, width, height, weightKg);
}
function resetCalculator() {
getElement("length").value = "100";
getElement("width").value = "50";
getElement("height").value = "25";
getElement("steelType").value = "7.85"; // Default to standard steel
getElement("lengthError").textContent = "";
getElement("lengthError").style.display = "none";
getElement("widthError").textContent = "";
getElement("widthError").style.display = "none";
getElement("heightError").textContent = "";
getElement("heightError").style.display = "none";
getElement("results-container").style.display = "none";
if (chartInstance) {
chartInstance.destroy();
chartInstance = null;
}
getElement("weightChart").getContext('2d').clearRect(0, 0, getElement("weightChart").width, getElement("weightChart").height);
}
function copyResults() {
var primaryResult = getElement("primary-result").innerText;
var volume = getElement("volumeResult").innerText;
var density = getElement("densityResult").innerText;
var weightKg = getElement("weightResultMetric").innerText;
var length = getElement("dataLength").innerText;
var width = getElement("dataWidth").innerText;
var height = getElement("dataHeight").innerText;
var steelType = getElement("steelType").options[getElement("steelType").selectedIndex].text;
var assumptions = "Assumptions: Uses average density for selected steel type. Material uniformity assumed.";
var copyText = "— Steel Block Weight Calculation Results —\n\n";
copyText += "Dimensions:\n";
copyText += " Length: " + length + " cm\n";
copyText += " Width: " + width + " cm\n";
copyText += " Height: " + height + " cm\n";
copyText += "Steel Type: " + steelType + "\n\n";
copyText += "Calculated Values:\n";
copyText += " Volume: " + volume + " cm³\n";
copyText += " Density: " + density + " g/cm³\n";
copyText += " Weight: " + weightKg + " kg\n\n";
copyText += assumptions;
navigator.clipboard.writeText(copyText).then(function() {
alert("Results copied to clipboard!");
}).catch(function(err) {
console.error("Failed to copy results: ", err);
alert("Failed to copy results. Please copy manually.");
});
}
// Charting Logic
function updateChart(l, w, h, currentWeight) {
var ctx = getElement("weightChart").getContext("2d");
// Destroy previous chart instance if it exists
if (chartInstance) {
chartInstance.destroy();
}
// Generate some sample data points for comparison, varying one dimension
var sampleDimensions = [
{ dim: parseFloat(l) * 0.8, weight: (parseFloat(l) * 0.8) * parseFloat(w) * parseFloat(h) * parseFloat(getElement("steelType").value) / 1000 },
{ dim: parseFloat(l) * 0.9, weight: (parseFloat(l) * 0.9) * parseFloat(w) * parseFloat(h) * parseFloat(getElement("steelType").value) / 1000 },
{ dim: parseFloat(l), weight: currentWeight }, // The current calculated weight
{ dim: parseFloat(l) * 1.1, weight: (parseFloat(l) * 1.1) * parseFloat(w) * parseFloat(h) * parseFloat(getElement("steelType").value) / 1000 },
{ dim: parseFloat(l) * 1.2, weight: (parseFloat(l) * 1.2) * parseFloat(w) * parseFloat(h) * parseFloat(getElement("steelType").value) / 1000 }
];
// Ensure weights are not NaN
sampleDimensions = sampleDimensions.map(function(item) {
item.weight = isNaN(item.weight) ? 0 : item.weight;
return item;
});
chartInstance = new Chart(ctx, {
type: 'line',
data: {
labels: sampleDimensions.map(function(item) { return item.dim.toFixed(1) + " cm"; }), // Labeling the varying dimension
datasets: [{
label: 'Steel Block Weight (kg)',
data: sampleDimensions.map(function(item) { return item.weight; }),
borderColor: 'rgb(0, 74, 153)', // Primary color
backgroundColor: 'rgba(0, 74, 153, 0.1)',
fill: true,
tension: 0.1
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
scales: {
y: {
beginAtZero: true,
title: {
display: true,
text: 'Weight (kg)'
}
},
x: {
title: {
display: true,
text: 'Varying Dimension (cm)' // Example label, adjust if needed
}
}
},
plugins: {
title: {
display: true,
text: 'Steel Block Weight vs. Dimension Change'
},
tooltip: {
callbacks: {
label: function(context) {
var label = context.dataset.label || ";
if (label) {
label += ': ';
}
if (context.parsed.y !== null) {
label += context.parsed.y.toFixed(2) + ' kg';
}
return label;
}
}
}
}
}
});
}
// Initial calculation on page load if default values are present
document.addEventListener('DOMContentLoaded', function() {
// Check if default values are set and calculate
if (getElement("length").value && getElement("width").value && getElement("height").value) {
calculateWeight();
}
});
// Add event listeners for real-time updates
var inputs = document.querySelectorAll('#calculator-inputs input, #calculator-inputs select');
inputs.forEach(function(input) {
input.addEventListener('input', function() {
// Clear error messages when user starts typing again
var errorId = this.id + "Error";
var errorElement = getElement(errorId);
if (errorElement) {
errorElement.textContent = "";
errorElement.style.display = "none";
}
// Perform calculation only if all required fields have some value
if (getElement("length").value && getElement("width").value && getElement("height").value) {
calculateWeight();
}
});
});