An automated courier distribution hub sorts outgoing packages by weight to assign them to the correct delivery fleet. The system weighs each package. After 800 packages have been processed, the system triggers a dispatch log update and stops.
| Package Weight (w w\,w in kg) | Delivery Fleet |
|---|---|
| w≤1.5w \le 1.5w≤1.5 | Micro-Drone |
| 1.5<w≤5.01.5 < w \le 5.01.5<w≤5.0 | Quadcopter |
| w>5.0w > 5.0w>5.0 | Cargo Van |
Complete the flowchart to implement this sorting algorithm using the provided blocks. Use each block exactly once. Ensure all decision outputs are labeled with "Yes" or "No" as appropriate.
