Imagine you run a large corporate mail server and you want to know which domain prefixes generate the most traffic — .google.com, then .mail.google.com, then specific addresses — drilling down only where the volume is significant. That's hierarchical heavy hitters: you don't just want the top talkers, you want the top talkers at every level of a tree, discounting children that already explain the volume. Now imagine every email is private medical correspondence and you need to release those top-prefix statistics without leaking any individual's data. That's this paper. The committed claim: differentially private release of hierarchical heavy hitters is possible with error guarantees that do NOT blow up with the height of the hierarchy or the number of heavy hitters. In the non-streaming setting, the relative error for any prefix's residual count is independent of tree height h and the number of heavy hitters — a result the authors themselves call 'surprising.' In the streaming setting, where sketch-based approximations introduce high global sensitivity (linear in available space S), they show absolute frequency error is still independent of S. The architecture sits squarely in the differential privacy + streaming sketches family. The heavy hitter hierarchy was introduced by Cormode et al. at VLDB 2003, and the DP machinery draws on standard composition theorems and calibrated noise addition. The core technical tension is that streaming approximation functions have global sensitivity linear in the sketch size — meaning naively, you'd add noise proportional to your memory budget, which defeats the purpose. The paper's main technical contribution is showing you can decouple the privacy noise from the space parameter. This is the updated full version of a PODS 2025 paper. The authors explicitly flag that the conference version contained a bug in the privacy proof for the non-streaming setting, now corrected. That honesty is worth noting — it's rare to see a bug acknowledgment this direct. The validation is mathematical proof, not simulation or experiment. The results are theorems with formal privacy guarantees, not empirical benchmarks. This means the integrity question is about proof correctness, not experimental methodology — and the bug-fix disclosure suggests the proofs have been scrutinized. The field fight here is about whether differential privacy can scale to structured queries without paying a complexity tax proportional to the structure's size. Most DP results for complex queries (histograms, range queries, hierarchical aggregations) have error that grows with the query structure — tree height, number of bins, range size. This paper argues the answer is no for HHH specifically: the structure doesn't cost you. That's the result that matters. The ladder position is unusual because there was no prior work on DP-HHH at all. The paper opens a new problem rather than beating an existing baseline. The predecessors are the original HHH paper (Cormode et al. VLDB 2003) for the problem definition and the DP heavy hitters literature (Bassily-Smith, Bun-Nelson-Stemmer) for the privacy machinery, but nobody had combined them. You can't say 'beats SOTA' when there is no SOTA — but the bounds themselves are strong relative to what you'd expect from naive composition. The obvious successor experiment is empirical evaluation on real or synthetic data streams — actual running code, wall-clock time, observed error distributions at various privacy budgets (epsilon values), hierarchy depths, and stream lengths. The paper is pure theory. My read: this is (c) — saving it for the next paper or a systems collaboration. The theory paper establishes the bounds; the systems paper will show they're practical. Cormode's group has a track record of following theory with implementation.