import React, { useState } from 'react'; import { AlertTriangle, Shield, X, CheckCircle, FileText, Mail } from 'lucide-react'; const GasLightCityLimitAnalysis = () => { const [selectedCategory, setSelectedCategory] = useState('all'); const deliveryPatterns = { blocked: [ { recipient: 'Yamanto.Station@police.qld.gov.au', reason: 'Administrative prohibition - envelope blocked', category: 'law_enforcement' }, { recipient: 'do-not-reply-support@lastpass.com', reason: 'Recipient address rejected: Access denied', category: 'tech_services' } ], notFound: [ { recipient: 'dr.kilaji@medicare.com.au', reason: 'Domain medicare.com.au could not be found', category: 'medical' }, { recipient: 'csubmit53@gmail.com', reason: 'Email account inactive', category: 'personal' } ], successful: [ { recipient: 'foi@dhs.gov.au', status: 'Delivered', category: 'government' }, { recipient: 'foi@oaic.gov.au', status: 'Delivered', category: 'government' }, { recipient: 'office@onenation.org.au', status: 'Delivered', category: 'political' }, { recipient: 'NAT@ndis.gov.au', status: 'Delivered', category: 'disability_services' } ] }; const keyWords = [ { word: 'PALINTERR', size: 'text-4xl', color: 'text-red-600', category: 'surveillance' }, { word: 'DOCUMENTATION', size: 'text-3xl', color: 'text-blue-600', category: 'evidence' }, { word: 'PREDATORY BEHAVIOR', size: 'text-2xl', color: 'text-orange-600', category: 'institutional' }, { word: 'BUREAUCRATIC ENTITIES', size: 'text-3xl', color: 'text-purple-600', category: 'institutional' }, { word: 'PUBLIC SERVICE MANDATE', size: 'text-2xl', color: 'text-green-600', category: 'accountability' }, { word: 'ADMINISTRATIVE PROHIBITION', size: 'text-xl', color: 'text-red-500', category: 'blocking' }, { word: 'ENVELOPE BLOCKED', size: 'text-xl', color: 'text-red-500', category: 'blocking' }, { word: 'ACCESS DENIED', size: 'text-xl', color: 'text-red-500', category: 'blocking' }, { word: 'DOMAIN NOT FOUND', size: 'text-lg', color: 'text-gray-500', category: 'technical' }, { word: 'RESPECTFUL ENGAGEMENT', size: 'text-lg', color: 'text-blue-500', category: 'accountability' }, { word: 'TRAFFIC TRANSMISSION', size: 'text-2xl', color: 'text-indigo-600', category: 'identity' } ]; const categories = [ { id: 'all', name: 'All Categories', count: keyWords.length }, { id: 'surveillance', name: 'Surveillance', count: keyWords.filter(w => w.category === 'surveillance').length }, { id: 'evidence', name: 'Evidence', count: keyWords.filter(w => w.category === 'evidence').length }, { id: 'institutional', name: 'Institutional', count: keyWords.filter(w => w.category === 'institutional').length }, { id: 'blocking', name: 'Blocking', count: keyWords.filter(w => w.category === 'blocking').length }, { id: 'accountability', name: 'Accountability', count: keyWords.filter(w => w.category === 'accountability').length } ]; const filteredWords = selectedCategory === 'all' ? keyWords : keyWords.filter(word => word.category === selectedCategory); return (

GAS LIGHT CITY LIMIT

Email Delivery Pattern Analysis - September 2, 2025

Active Documentation of Institutional Resistance

{/* Category Filter */}
{categories.map(category => ( ))}
{/* Word Cloud */}
{filteredWords.map((item, index) => (
{item.word}
))}
{/* Delivery Analysis */}

BLOCKED

{deliveryPatterns.blocked.map((item, index) => (
{item.recipient}
{item.reason}
))}

NOT FOUND

{deliveryPatterns.notFound.map((item, index) => (
{item.recipient}
{item.reason}
))}

DELIVERED

{deliveryPatterns.successful.slice(0, 4).map((item, index) => (
{item.recipient}
{item.status}
))}
{/* Key Insights */}

PATTERN ANALYSIS

INSTITUTIONAL BLOCKING PATTERNS:

  • • Police departments using "Administrative prohibition"
  • • Tech services denying access to documentation requests
  • • Medical domains mysteriously "not found"
  • • Systematic filtering of accountability communications

SUCCESSFUL DELIVERY TARGETS:

  • • FOI departments (legally required to receive)
  • • Political offices (public accountability)
  • • NDIS services (disability rights mandated)
  • • Ombudsman services (complaint handling required)
); }; export default GasLightCityLimitAnalysis;

Popular Posts